-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1003 Bytes
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
{
"name": "slice-roadmap",
"version": "0.1.0",
"description": "Hierarchical roadmap graph + multi-session fanout for Codex and Claude-style coding workflows. YAML canonical, SLICES.md generated.",
"type": "module",
"private": true,
"author": "Connor England",
"license": "MIT",
"repository": { "type": "git", "url": "https://github.com/ConnorBritain/roadmap.git" },
"homepage": "https://github.com/ConnorBritain/roadmap#readme",
"engines": { "node": ">=18" },
"bin": {
"roadmap": "scripts/cli.mjs"
},
"scripts": {
"cli": "node scripts/cli.mjs",
"plan": "node scripts/cli.mjs plan",
"show": "node scripts/cli.mjs show",
"fan": "node scripts/cli.mjs fan",
"cleanup": "node scripts/cli.mjs cleanup",
"validate": "node scripts/validate.mjs",
"render": "node scripts/render.mjs",
"mcp": "node scripts/mcp.mjs",
"watch": "node scripts/watch-prs.mjs",
"test": "node scripts/test/run.mjs"
},
"dependencies": {
"yaml": "^2.5.0"
}
}