-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
42
43
44
45
46
47
{
"name": "node-cli",
"version": "0.0.1",
"description": "NodeJs CLI tool boilerplate",
"main": "./bin/index.js",
"bin": {
"node-cli": "./bin/index.js"
},
"scripts": {
"test": "node bin/index.js",
"start": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"deploy": "webpack --mode=production && npm pack"
},
"author": {
"name": "Cytostatic",
"email": "[email protected]",
"url": "https://cytostatic.dev"
},
"files": [
"bin/**/*"
],
"license": "ISC",
"devDependencies": {
"@types/node": "^22.13.4",
"@types/webpack": "^5.28.5",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@types/clear": "^0.1.4",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.17.15",
"chalk": "^5.4.1",
"clear": "^0.1.0",
"commander": "^13.1.0",
"figlet": "^1.8.0",
"fs-extra": "^11.3.0",
"inquirer": "^12.4.2",
"lodash": "^4.17.21",
"slash": "^5.1.0"
}
}