-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 744 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 744 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
{
"name": "skill-audit",
"version": "1.0.0",
"description": "Audit agent skill definitions for security, completeness, and compatibility",
"main": "dist/index.js",
"bin": {
"skill-audit": "./dist/cli.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "tsx src/cli.ts"
},
"keywords": [
"ai",
"agent",
"skills",
"audit",
"security",
"codex",
"claude",
"opencode"
],
"author": "dabit3",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"glob": "^10.3.10",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}