-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "@connorbritain/roadmap",
"version": "0.6.0",
"description": "Roadmap + backlog graph with prioritized, deterministic multi-session fanout. YAML canonical, SLICES.md/BACKLOG.md generated.",
"type": "module",
"private": false,
"author": "Connor England",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ConnorBritain/roadmap.git"
},
"homepage": "https://github.com/ConnorBritain/roadmap#readme",
"engines": {
"node": ">=18.15"
},
"bin": {
"roadmap": "scripts/cli.mjs"
},
"files": [
"scripts/",
"schema/",
"README.md",
"docs/DEPLOYMENT.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"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",
"prepack": "npm test",
"watch": "node scripts/watch-prs.mjs",
"test": "node scripts/test/run.mjs"
},
"dependencies": {
"yaml": "^2.5.0"
}
}