-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1006 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
45
46
47
48
49
{
"name": "clawscan",
"version": "0.1.0",
"description": "Security scanner for OpenClaw/ClawHub skills",
"type": "module",
"license": "MIT",
"author": "Nick O'Connor",
"repository": {
"type": "git",
"url": "https://github.com/nickoc/clawscan.git"
},
"homepage": "https://github.com/nickoc/clawscan",
"keywords": [
"openclaw",
"clawhub",
"security",
"scanner",
"static-analysis",
"skills",
"ai-safety"
],
"engines": {
"bun": ">=1.0.0"
},
"files": [
"src/**/*.ts",
"README.md",
"LICENSE"
],
"bin": {
"clawscan": "./src/index.ts"
},
"scripts": {
"start": "bun src/index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"build": "bun build --compile src/index.ts --outfile clawscan"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.7.0"
}
}