-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 957 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 957 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
{
"name": "@pyhall/cli",
"version": "0.3.0",
"description": "pyhall CLI \u2014 Worker Class Protocol taxonomy browser, search, and worker scaffolder",
"bin": {
"pyhall": "./dist/index.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"test": "jest"
},
"keywords": [
"wcp",
"pyhall",
"worker-class-protocol",
"ai-governance",
"cli"
],
"license": "Apache-2.0",
"homepage": "https://pyhall.dev",
"repository": {
"type": "git",
"url": "https://github.com/pyhall/pyhall-cli.git"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"inquirer": "^9.2.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}