forked from AlmanacCode/codealmanac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.6 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
66
67
68
{
"name": "codealmanac",
"version": "0.2.25",
"description": "A living wiki for codebases, maintained by AI agents. Documents what the code can't say: decisions, flows, invariants, incidents, gotchas.",
"keywords": [
"wiki",
"documentation",
"ai",
"claude",
"codebase",
"knowledge-base"
],
"license": "Apache-2.0",
"author": "AlmanacCode",
"repository": {
"type": "git",
"url": "git+https://github.com/AlmanacCode/codealmanac.git"
},
"homepage": "https://github.com/AlmanacCode/codealmanac#readme",
"bugs": {
"url": "https://github.com/AlmanacCode/codealmanac/issues"
},
"type": "module",
"bin": {
"codealmanac": "dist/launcher.js",
"almanac": "dist/launcher.js",
"alm": "dist/launcher.js"
},
"files": [
"dist",
"scripts",
"viewer",
"prompts",
"guides",
"README.md",
"LICENSE"
],
"engines": {
"node": "20.x || 22.x || 23.x || 24.x || 25.x"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"postinstall": "node scripts/postinstall.cjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.129",
"better-sqlite3": "^12.9.0",
"commander": "^12.1.0",
"fast-glob": "^3.3.3",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"publishConfig": {
"access": "public"
}
}