-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.91 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": "rlm-wiki",
"version": "0.1.0",
"description": "Generate interactive repository wikis using agentic code investigation. Point at a GitHub URL, get a multi-page wiki plus chat-with-repo.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AsyncFuncAI/rlm-wiki.git"
},
"bugs": {
"url": "https://github.com/AsyncFuncAI/rlm-wiki/issues"
},
"homepage": "https://github.com/AsyncFuncAI/rlm-wiki#readme",
"bin": {
"rlm-wiki": "./bin/rlm-wiki.ts",
"grok-wiki": "./bin/grok-wiki.ts"
},
"scripts": {
"build": "bun run build:web",
"build:web": "vite build --config vite.web.config.ts",
"start": "bun run ./bin/rlm-wiki.ts",
"server": "bun run ./bin/rlm-wiki.ts serve",
"worker": "bun run ./bin/rlm-wiki.ts worker",
"test": "bun test src",
"typecheck": "bunx tsc --noEmit",
"kb:spike": "bun test src/kb/kb-merge.test.ts",
"kb:storage": "bun test src/kb/kb-store.test.ts",
"kb:distill": "bun test src/kb/kb-distill-pipeline.test.ts",
"kb:publish": "bun test src/kb/kb-publish.test.ts api/public/wiki/_shared.test.js",
"railway:worker-mode": "bash scripts/railway-worker-mode.sh",
"generate": "bun run ./bin/rlm-wiki.ts generate"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.3.0",
"@anthropic-ai/claude-agent-sdk": "^0.2.141",
"@anthropic-ai/sdk": "^0.82.0",
"@aws-sdk/client-s3": "^3.1095.0",
"@composio/core": "^0.8.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@vercel/analytics": "^2.0.1",
"@vercel/og": "^0.11.1",
"cli-highlight": "^2.1.11",
"postgres": "^3.4.9",
"react": "19.2.8",
"rlm-bun": "file:./vendor/rlm-bun",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^25.9.5",
"esbuild": "^0.25.12",
"typescript": "^5.9.3",
"vite": "^7.3.6"
},
"engines": {
"bun": ">=1.3.0"
}
}