-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 KB
/
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
35
36
37
38
39
40
41
{
"name": "unikey",
"version": "1.1.0",
"description": "Unique key generator library",
"src": "src/lib/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"declarationTypes": "types/index.d.ts",
"repository": "https://github.com/git-marcopitra",
"author": "git-marcopitra <[email protected]>",
"private": false,
"sideEffects": false,
"license": "MIT",
"homepage": "https://github.com/git-marcopitra",
"scripts": {
"test": "jest",
"dev": "tsc -w",
"build": "tsc",
"publish:alpha": "yarn build && npm publish --tag alpha",
"publish:beta": "yarn build && npm publish --tag beta",
"publish:latest": "yarn build && npm publish"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"files": [
"package.json",
"README",
"dist"
]
}