-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.14 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.14 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@helmlabs/docbot",
"version": "0.0.1",
"description": "AI-powered CLI for analyzing, planning, and executing documentation improvements",
"author": "Helm",
"license": "MIT",
"type": "module",
"bin": {
"docbot": "dist/cli.js"
},
"main": "./dist/cli.js",
"exports": {
".": "./dist/cli.js",
"./config": "./src/config/index.ts"
},
"files": [
"dist",
"src/config",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/helmlabs/docbot.git"
},
"homepage": "https://github.com/helmlabs/docbot/tree/main#readme",
"bugs": "https://github.com/helmlabs/docbot/issues",
"keywords": [
"documentation",
"ai",
"cli",
"docs",
"mdx",
"mintlify",
"bun"
],
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"build": "bun build ./src/cli.ts --production --target=bun --format=esm --external react --external ink --outfile=dist/cli.js",
"dev": "bun run src/cli.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build",
"knip": "knip",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --fix"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@types/bun": "latest",
"@types/node": "^25.0.3",
"@types/react": "^19.0.0",
"@types/yargs": "^17.0.33",
"@ai-sdk/provider-utils": "^4.0.2",
"knip": "^5.79.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.2",
"@ai-sdk/cohere": "^3.0.1",
"@ai-sdk/devtools": "^0.0.2",
"@ai-sdk/google": "^3.0.2",
"@ai-sdk/mcp": "1.0.1",
"@ai-sdk/openai": "^3.0.2",
"@ai-sdk/react": "^3.0.3",
"@elysiajs/cors": "^1.0.0",
"@qdrant/qdrant-js": "^1.16.2",
"ai": "^6.0.3",
"elysia": "^1.4.19",
"ink": "^6.6.0",
"ink-scroll-view": "^0.3.3",
"ink-spinner": "^5.0.0",
"mdast": "^3.0.0",
"nanoid": "^5.1.6",
"react": "^19.2.3",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"yaml": "^2.8.2",
"yargs": "^18.0.0",
"zod": "^4.2.1"
}
}