forked from sinhoneyy/issue2dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.67 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
63
64
65
{
"name": "issue2dev",
"version": "0.1.0",
"type": "module",
"description": "Repository-aware implementation planning for GitHub Issues using deterministic Repository Intelligence.",
"license": "Apache-2.0",
"homepage": "https://github.com/sinhoneyy/issue2dev",
"repository": {
"type": "git",
"url": "git+https://github.com/sinhoneyy/issue2dev.git"
},
"bugs": {
"url": "https://github.com/sinhoneyy/issue2dev/issues"
},
"packageManager": "pnpm@10",
"engines": {
"node": ">=20"
},
"bin": {
"issue2dev": "./bin/issue2dev.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"bin/",
"dist/",
"docs/",
"examples/",
"README.md",
"LICENSE",
"SECURITY.md",
"CONTRIBUTING.md"
],
"keywords": [
"github-issues",
"prd",
"repository-intelligence",
"cli"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit",
"phase3:spike": "tsx spikes/phase-3-validation/walking-skeleton.ts --from-file spikes/phase-3-validation/fixtures/issue.example.json",
"phase4:analyze": "tsx scripts/phase4-analyze.ts --from-file examples/from-file/issue-42.json --out .issue2dev/42",
"phase5:generate": "tsx scripts/phase5-generate.ts --from-file examples/from-file/issue-42.json --out .issue2dev/42-generate"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.10.7",
"issue2dev": "link:.",
"tsx": "^4.19.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}