-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 763 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 763 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
{
"name": "bdev-monorepo",
"version": "1.0.0",
"description": "This is a minimal tool to manage monorepo",
"main": "dist/bin/cli.js",
"bin": {
"bdev": "dist/bin/cli.js"
},
"pkg": {
"scripts": "dist/**/*.js"
},
"scripts": {
"build": "pkg dist/bin/cli.js --output build.exe --targets node18-win-x64",
"pre-build": "tsc",
"clean": "rm dist"
},
"keywords": [],
"author": "USS",
"license": "ISC",
"dependencies": {
"@types/node": "^22.13.1",
"chalk": "4.1.2",
"commander": "^13.1.0",
"inquirer": "^8.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/chalk": "^2.2.4",
"@types/inquirer": "^9.0.7",
"@types/ora": "^3.2.0",
"ora": "^5.4.1"
}
}