-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 773 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 773 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
{
"name": "@systematic-claw/systematic-claw",
"version": "0.1.0",
"description": "Systematic thinking enforcement plugin for OpenClaw — brings Claude Code's structured methodology to any OpenClaw agent",
"type": "module",
"main": "index.ts",
"license": "MIT",
"keywords": [
"openclaw",
"openclaw-plugin",
"systematic",
"task-tracking",
"plan-mode",
"workflow-enforcement"
],
"files": [
"index.ts",
"src/**/*.ts",
"openclaw.plugin.json",
"docs/",
"README.md",
"LICENSE"
],
"dependencies": {
"@sinclair/typebox": "0.34.48"
},
"devDependencies": {
"typescript": "^5.7.0"
},
"peerDependencies": {
"openclaw": "*"
},
"openclaw": {
"extensions": [
"./index.ts"
]
}
}