-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1002 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "@its-satyajit/id-generator",
"version": "0.2.1",
"description": "A lightweight TypeScript utility for generating various types of unique identifiers. This library provides three different ID generation methods, each optimized for specific use cases.",
"main": "src/mod.ts",
"repository": {
"type": "git",
"url": "https://github.com/Its-Satyajit/id-generator"
},
"scripts": {
"publish:jsr": "pnpm dlx jsr publish",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-docs": "typedoc"
},
"keywords": [],
"author": "Its-Satyajit <https://github.com/Its-Satyajit>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"jest": "^29.7.0",
"release-please": "^16.15.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.3",
"typescript": "^5.7.2"
},
"dependencies": {
"tsx": "^4.19.2"
}
}