-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "spec-superflow",
"version": "0.12.1",
"description": "Spec-first workflow: integrates OpenSpec planning engine + Superpowers execution discipline via bridge contract. 9 collaborative skills for multi-agent coding tools.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ssf": "./scripts/spec-superflow.mjs",
"spec-superflow": "./scripts/spec-superflow.mjs"
},
"type": "module",
"scripts": {
"build": "tsc",
"test": "node --test tests/e2e.test.mjs tests/lib/*.test.mjs",
"test:raw-mode": "node --test tests/lib/raw-mode-smoke.test.mjs",
"validate": "node scripts/validate-artifacts",
"version": "node scripts/spec-superflow.mjs version $npm_new_version && node scripts/check-version-consistency.mjs && git add -A",
"check-versions": "node scripts/check-version-consistency.mjs",
"setup-hooks": "node scripts/install-git-hooks.mjs"
},
"keywords": [
"spec-driven-development",
"tdd",
"workflow",
"skills",
"contract-driven",
"claude-code",
"cursor",
"trae",
"codex",
"gemini-cli",
"copilot-cli",
"opencode",
"workbuddy"
],
"author": "MageByte",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MageByte-Zero/spec-superflow"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"typescript": "^6.0.3"
}
}