-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 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
{
"name": "@dinogit/adr-gen",
"version": "0.1.2",
"description": "Generate Architecture Decision Records (ADRs) from Claude/Codex sessions and git history",
"type": "module",
"license": "MIT",
"bin": {
"adr-gen": "bin/adr-gen.js"
},
"files": [
"bin",
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "node scripts/lint.mjs",
"clean": "rm -rf dist",
"prepack": "npm run build",
"test": "npm run build && node --test tests/*.test.mjs",
"pack:dry-run": "env NPM_CONFIG_CACHE=${NPM_CONFIG_CACHE:-/tmp/adr-gen-npm-cache} npm pack --dry-run",
"install:smoke": "node scripts/install-smoke.mjs",
"ci:verify": "npm run lint && npm run typecheck && npm test && npm run pack:dry-run && npm run install:smoke",
"release:check": "npm run ci:verify"
},
"engines": {
"node": ">=18.17"
},
"keywords": [
"adr",
"architecture-decision-record",
"cli",
"developer-tools",
"claude",
"codex",
"git"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dinogit/adr-gen.git"
},
"bugs": {
"url": "https://github.com/dinogit/adr-gen/issues"
},
"homepage": "https://github.com/dinogit/adr-gen#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.40.1",
"commander": "^12.1.0",
"openai": "^4.86.2"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.9.2"
}
}