-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "@openclaw/plugin-actionbox",
"version": "0.1.0",
"description": "OpenClaw plugin that generates LLM-derived behavioral contracts (ACTIONBOX.md) for skills and enforces them at runtime",
"type": "module",
"main": "dist/plugin.js",
"types": "dist/plugin.d.ts",
"exports": {
".": {
"import": "./dist/plugin.js",
"types": "./dist/plugin.d.ts"
}
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"openclaw": {
"extensions": {
"plugin": "dist/plugin.js"
}
},
"keywords": ["openclaw", "plugin", "actionbox", "behavioral-contracts", "llm"],
"license": "Unlicense",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"gray-matter": "^4.0.3",
"minimatch": "^10.0.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}