-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "predicate-claw",
"version": "0.5.0",
"description": "TypeScript OpenClaw security provider with Predicate Authority pre-execution checks and SecureClaw plugin.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./plugin": {
"import": "./dist/src/openclaw-plugin.js",
"types": "./dist/src/openclaw-plugin.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:demo": "vitest run tests/hack-vs-fix-demo.test.ts",
"test:ci": "npm run typecheck && npm test"
},
"keywords": [
"openclaw",
"security",
"authorization",
"predicate-authority",
"zero-trust"
],
"author": "",
"license": "(MIT OR Apache-2.0)",
"type": "module",
"dependencies": {
"@predicatesystems/authority": "^0.4.1"
},
"peerDependencies": {
"openclaw": ">=2026.2.0"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.3.0",
"openclaw": "^2026.2.19-2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}