-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.32 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
{
"name": "codexclaw",
"version": "0.2.16",
"private": true,
"description": "cli-jaw-style dev discipline + multi-model subagents for the OpenAI Codex runtime.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/lidge-jun/codexclaw.git"
},
"license": "MIT",
"bin": {
"codexclaw": "bin/codexclaw.mjs",
"cxc": "bin/codexclaw.mjs"
},
"workspaces": [
"plugins/codexclaw/components/*",
"plugins/codexclaw/gui",
"cli"
],
"scripts": {
"build": "node plugins/codexclaw/scripts/build.mjs",
"gate": "node plugins/codexclaw/scripts/gate.mjs",
"test": "node --test --test-concurrency=1 \"plugins/codexclaw/components/pabcd-state/test/*.test.ts\" \"plugins/codexclaw/components/config-guard/test/*.test.ts\" \"plugins/codexclaw/components/cxc-ops/test/*.test.ts\" \"plugins/codexclaw/components/recall/test/*.test.ts\" \"plugins/codexclaw/components/provider-bridge/test/*.test.ts\" \"plugins/codexclaw/components/subagent-config/test/*.test.ts\" \"plugins/codexclaw/components/messenger-bridge/test/*.test.ts\" \"plugins/codexclaw/components/skill-search/test/*.test.ts\" \"plugins/codexclaw/gui/test/*.test.ts\" \"plugins/codexclaw/test/*.test.mjs\"",
"smoke": "node plugins/codexclaw/scripts/platform-smoke.mjs"
},
"overrides": {
"postcss": "^8.5.23"
}
}