-
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) · 840 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 840 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": "bdep",
"version": "0.1.1",
"description": "Build workspace dependencies in topological order with parallel execution",
"main": "dist/index.js",
"type": "module",
"files": ["dist", "bin"],
"repository": {
"type": "git",
"url": "https://github.com/sourcewizard-ai/bdep"
},
"homepage": "https://github.com/sourcewizard-ai/bdep#readme",
"bin": {
"bdep": "./bin/bdep"
},
"scripts": {
"build": "tsc",
"prepare": "tsc",
"prepublishOnly": "tsc",
"dev": "bun run index.ts",
"test": "bun test"
},
"keywords": ["monorepo", "workspace", "build", "cli", "dependencies"],
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"commander": "^11.0.0",
"chalk": "^5.0.0",
"glob": "^10.0.0"
}
}