-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 KB
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
48
49
50
51
52
{
"name": "project-mate-cli",
"version": "1.0.1",
"description": "A CLI tool for managing projects",
"license": "MIT",
"main": "dist/bin/pm.js",
"bin": {
"pm": "./dist/bin/pm.js"
},
"scripts": {
"build": "tsc && ncc build dist/bin/pm.js -o dist/ncc",
"start": "node dist/bin/pm.js",
"pkg": "pkg .",
"pack:mac": "npm run build && pkg dist/ncc/index.js --targets node18-macos-x64 --output dist/pm-mac --debug && ./scripts/build-pkg.sh"
},
"pkg": {
"scripts": "dist/**/*.js",
"assets": [
"dist/**/*"
],
"targets": [
"node18-macos-x64"
],
"outputPath": "dist"
},
"author": "",
"resolutions": {
"@isaacs/cliui": "7.0.4",
"string-width": "4.2.3",
"strip-ansi": "6.0.1",
"ansi-regex": "5.0.1",
"wrap-ansi": "7.0.0"
},
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"glob": "^10.3.10",
"inquirer": "^8.2.6",
"ora": "^8.2.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.10",
"@types/node": "^20.11.17",
"@vercel/ncc": "^0.38.3",
"electron-builder": "latest",
"pkg": "latest",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}