-
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.59 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.59 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": "botdocs",
"version": "0.3.0",
"description": "CLI tool that converts markdown documentation into a static website with an optional client-side AI chatbot",
"author": "usr-wwelsh <https://wwel.sh>",
"license": "MIT",
"bin": {
"botdocs": "./bin/botdocs.js"
},
"main": "./dist/src/cli/index.js",
"type": "module",
"files": [
"dist/",
"dist-client/",
"bin/",
"src/templates/",
"src/styles/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:client": "vite build",
"dev": "tsc --watch",
"prepublishOnly": "npm run build && npm run build:client"
},
"keywords": [
"documentation",
"markdown",
"static-site",
"ai",
"chatbot",
"rag",
"llm",
"cli"
],
"dependencies": {
"@shikijs/markdown-it": "^1.0.0",
"@xenova/transformers": "^2.17.0",
"commander": "^12.0.0",
"gray-matter": "^4.0.3",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^9.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-github-alerts": "^1.0.1",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc-done-right": "^4.2.0",
"shiki": "^1.0.0"
},
"devDependencies": {
"@types/markdown-it": "^14.0.0",
"@types/node": "^20.11.0",
"terser": "^5.36.0",
"typescript": "^5.3.0",
"vite": "^6.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/usr-wwelsh/botdocs.git"
},
"homepage": "https://wwel.sh"
}