-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.1 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.1 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
{
"name": "clawspec",
"version": "1.0.21",
"type": "module",
"description": "OpenClaw plugin that orchestrates OpenSpec project workflows with visible main-agent execution.",
"keywords": [
"openclaw",
"openspec",
"plugin",
"project-orchestration",
"agent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bytegh/clawspec.git"
},
"homepage": "https://github.com/bytegh/clawspec#readme",
"bugs": {
"url": "https://github.com/bytegh/clawspec/issues"
},
"license": "MIT",
"files": [
"index.ts",
"src",
"skills",
"README.md",
"README.zh-CN.md",
"openclaw.plugin.json",
"tsconfig.json"
],
"openclaw": {
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": ">=2026.3.24"
}
},
"peerDependencies": {
"openclaw": ">=0.0.0"
},
"devDependencies": {
"openclaw": "2026.3.24"
},
"scripts": {
"check": "node --experimental-strip-types -e \"import('./index.ts')\"",
"test": "node --experimental-strip-types --test --test-reporter spec test/*.test.ts",
"test:fast": "node --experimental-strip-types --test --test-reporter spec test/acp-client.test.ts test/acpx-dependency.test.ts test/assistant-journal.test.ts test/command-surface.test.ts test/config.test.ts test/detach-attach.test.ts test/doctor.test.ts test/file-lock.test.ts test/fs-utils.test.ts test/helpers.test.ts test/keywords.test.ts test/notifier.test.ts test/openspec-dependency.test.ts test/paths-utils.test.ts test/pause-cancel.test.ts test/planning-journal.test.ts test/plugin-registration.test.ts test/project-memory.test.ts test/proposal.test.ts test/queue-planning.test.ts test/queue-work.test.ts test/service-archive.test.ts test/shell-command.test.ts test/state-store.test.ts test/tasks-and-checkpoint.test.ts test/use-project.test.ts test/worker-command.test.ts test/worker-io-helper.test.ts test/worker-skills.test.ts",
"test:slow": "node --experimental-strip-types --test --test-reporter spec test/watcher-planning.test.ts test/watcher-work.test.ts test/recovery.test.ts"
},
"engines": {
"node": ">=24.0.0"
}
}