-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.17 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.17 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
{
"name": "gsdd-cli",
"version": "0.21.0",
"description": "Workspine — a repo-native delivery spine for long-horizon AI-assisted work, with directly validated support for Claude Code, Codex CLI, and OpenCode, published as gsdd-cli.",
"type": "module",
"bin": {
"gsdd": "bin/gsdd.mjs"
},
"scripts": {
"test": "npm run test:gsdd",
"test:gsdd": "node tests/gsdd.init.test.cjs && node tests/gsdd.models.test.cjs && node tests/gsdd.consumer-ceremony.test.cjs && node tests/gsdd.manifest.test.cjs && node tests/gsdd.plan.adapters.test.cjs && node tests/gsdd.audit-milestone.test.cjs && node tests/gsdd.invariants.test.cjs && node tests/gsdd.guards.test.cjs && node tests/gsdd.health.test.cjs && node tests/gsdd.scenarios.test.cjs && node tests/gsdd.cross-runtime.test.cjs && node tests/phase.test.cjs && node tests/session-fingerprint.test.cjs",
"prepublishOnly": "node -e \"const ok=process.env.GITHUB_ACTIONS==='true'&&process.env.GITHUB_REF_NAME==='main'&&process.env.GITHUB_WORKFLOW==='Release'; if(!ok){console.error('Refusing to publish gsdd-cli outside the GitHub Actions Release workflow on main.'); process.exit(1)}\""
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^25.0.3"
},
"engines": {
"node": ">=20"
},
"files": [
"bin/adapters/",
"bin/lib/",
"bin/gsdd.mjs",
"distilled/DESIGN.md",
"distilled/EVIDENCE-INDEX.md",
"distilled/README.md",
"distilled/SKILL.md",
"distilled/templates/",
"distilled/workflows/",
"docs/",
"agents/*.md",
"agents/README.md"
],
"keywords": [
"workspine",
"gsdd",
"claude-code",
"codex-cli",
"opencode",
"ai",
"coding-agent",
"software-delivery",
"multi-runtime",
"repo-native",
"verification",
"workflow",
"planning"
],
"author": "PatrickSys",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PatrickSys/workspine.git"
},
"bugs": {
"url": "https://github.com/PatrickSys/workspine/issues"
},
"homepage": "https://github.com/PatrickSys/workspine#readme"
}