-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.97 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@clawnify/agent-permissions",
"version": "0.4.0",
"description": "OpenClaw plugin — permission and approval engine. Gates built-in tool calls (bash, file edit, etc.) and plugin tools via a three-bucket policy (allow/deny/ask) with wildcard rules, rule sources (session/workspace/user/config), and in-chat approval. No network calls.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./api": {
"import": "./dist/api/resolver.js",
"types": "./dist/api/types.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "node --import tsx --test tests/*.test.ts",
"lint": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"openclaw": {
"extensions": ["./index.ts"],
"compat": {
"pluginApi": ">=2026.5.2",
"minGatewayVersion": ">=2026.5.12"
},
"build": {
"openclawVersion": "2026.5.12"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"dist/**/*.d.ts.map",
"index.ts",
"src/**/*.ts",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"keywords": [
"openclaw",
"openclaw-plugin",
"permissions",
"approvals",
"policy",
"in-chat",
"approval-gate",
"ai-agents"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"peerDependencies": {
"openclaw": "*"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.5.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clawnify/agent-permissions.git"
},
"homepage": "https://github.com/clawnify/agent-permissions#readme",
"bugs": {
"url": "https://github.com/clawnify/agent-permissions/issues"
}
}