-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.62 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
{
"name": "workspine",
"version": "0.35.0",
"description": "Workspine is a harness for AI coding agents: it runs a spec-driven plan, execute, verify loop and keeps plans, decisions, and proof as files in your repo. Published as workspine.",
"type": "module",
"bin": {
"workspine": "bin/gsdd.mjs",
"gsdd": "bin/gsdd.mjs"
},
"scripts": {
"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 workspine outside the GitHub Actions Release workflow on main.'); process.exit(1)}\""
},
"devDependencies": {
"@semantic-release/exec": "^7.1.0",
"semantic-release": "^25.0.3"
},
"engines": {
"node": ">=22"
},
"files": [
"bin/adapters/",
"bin/lib/",
"bin/gsdd.mjs",
"assets/",
"CHANGELOG.md",
"distilled/DESIGN.md",
"distilled/README.md",
"distilled/SKILL.md",
"distilled/references/",
"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"
}