-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1000 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1000 Bytes
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
42
43
44
45
46
{
"name": "zeck-cli",
"version": "1.3.6",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "dist/index.js",
"bin": {
"zeck": "bin/zeck-cli.js"
},
"exports": {
".": "./dist/index.js",
"./modifier": "./dist/modifier.js"
},
"scripts": {
"build": "tsc && tsc-alias",
"dev": "tsx watch lib/cli.ts",
"zeck": "node dist/cli.js",
"publisher": "npx pub --bump-package --build --build-zip --clean --push --npm-publish",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^1.13.1",
"chalk": "^5.6.2",
"cli-table": "^0.3.11",
"commander": "^11.1.0",
"figlet": "^1.9.3",
"inquirer": "^12.10.0"
},
"devDependencies": {
"@types/cli-table": "^0.3.4",
"@types/node": "^20.10.0",
"dotenv": "^17.2.3",
"tsc-alias": "^1.8.10",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"bin/**/*"
]
}