-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "clawbands",
"version": "1.0.0",
"description": "Security middleware for OpenClaw agents - Runtime interception with human-in-the-loop approval",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"clawbands": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"security",
"middleware",
"ai-agents",
"openclaw",
"human-in-the-loop",
"runtime-interception",
"zero-trust"
],
"author": "Sandro Munda <sandro@munda.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SeyZ/clawbands.git"
},
"dependencies": {
"inquirer": "^9.2.12",
"chalk": "^4.1.2",
"winston": "^3.11.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.5",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"files": [
"dist",
"LICENSE",
"README.md",
"openclaw.plugin.json"
],
"engines": {
"node": ">=18.0.0"
},
"openclaw": {
"extensions": ["dist/plugin/index.js"]
}
}