-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1 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
{
"name": "baymax-cli",
"version": "1.0.0",
"description": "Scan AI agent permission configs for dangerous always-allow settings",
"license": "MIT",
"type": "module",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"bin": {
"baymax": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@inquirer/prompts": "^8.3.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"js-yaml": "^4.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.0.0",
"simple-icons": "^16.9.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}