-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.99 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.99 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@sparkleideas/claude-flow-patch",
"version": "3.1.0-alpha.44.patch.11",
"description": "Patch toolkit for @claude-flow/cli init/runtime defects with verify and post-init repair commands",
"scripts": {
"preflight": "node scripts/preflight.mjs",
"preflight:check": "node scripts/preflight.mjs --check",
"prepublishOnly": "npm run preflight && npm test",
"test": "node --test --test-concurrency=1 tests/*.test.mjs",
"package": "bash npm/package.sh",
"package:dry": "bash npm/package.sh --dry-run",
"publish:npm": "bash npm/publish.sh",
"publish:dry": "bash npm/publish.sh --dry-run",
"upstream-log": "node scripts/upstream-log.mjs",
"guidance:analyze": "guidance analyze",
"guidance:optimize": "guidance autopilot --once --apply --source manual",
"guidance:autopilot:once": "guidance autopilot --once --source manual",
"guidance:autopilot:daemon": "guidance autopilot --daemon --apply --source daemon",
"guidance:ab-benchmark": "guidance benchmark",
"guidance:scaffold": "guidance scaffold",
"guidance:all": "guidance run all",
"guidance:status": "guidance run status",
"guidance:hooks": "guidance run hooks",
"guidance:trust": "guidance run trust",
"guidance:adversarial": "guidance run adversarial",
"guidance:proof": "guidance run proof",
"guidance:conformance": "guidance run conformance",
"guidance:evolution": "guidance run evolution",
"guidance:runtime": "guidance runtime demo",
"guidance:codex:status": "guidance codex status",
"guidance:codex:pre-command": "guidance codex pre-command",
"guidance:codex:pre-edit": "guidance codex pre-edit",
"guidance:codex:pre-task": "guidance codex pre-task",
"guidance:codex:post-edit": "guidance codex post-edit",
"guidance:codex:post-task": "guidance codex post-task",
"guidance:codex:session-start": "guidance codex session-start",
"guidance:codex:session-end": "guidance codex session-end"
},
"private": false,
"license": "MIT",
"type": "module",
"author": "Sparkling Ideas <henrik@sparklingideas.co.uk>",
"repository": {
"type": "git",
"url": "git+https://github.com/sparkling/claude-flow-patch.git"
},
"homepage": "https://sparklingideas.co.uk/patch/claude-flow",
"bugs": {
"url": "https://github.com/sparkling/claude-flow-patch/issues"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"bin": {
"claude-flow-patch": "bin/claude-flow-patch.mjs"
},
"files": [
"bin",
"lib",
"patch",
"scripts",
"patch-all.sh",
"check-patches.sh",
"repair-post-init.sh",
"README.md",
"AGENTS.md",
"CLAUDE.md"
],
"keywords": [
"claude-flow",
"@claude-flow/cli",
"patch",
"hotfix",
"init",
"hook-handler",
"npm-cache",
"hooks",
"ruvector",
"ruv-swarm",
"automation"
],
"packageManager": "npm@10",
"dependencies": {
"@sparkleideas/claude-flow-guidance": "file:../../claude-flow-guidance-implementation"
}
}