-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.9 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.9 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
{
"name": "@vowel.to/docs",
"version": "1.0.0",
"description": "Documentation for the vowel platform",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run docs:dev",
"docs:dev": "vitepress dev",
"build": "vitepress build && rm -f .vitepress/dist/_redirects",
"docs:build": "npm run docs:generate-api && npm run build:rag && vitepress build && rm -f .vitepress/dist/_redirects",
"preview": "vitepress preview",
"docs:generate-api": "rm -rf api/reference && typedoc && bun scripts/sanitize-generated-api.mjs",
"build:rag": "cd scripts && uv run python build-rag.py",
"deploy": "bun run docs:build && bunx wrangler deploy",
"deploy:preview": "bun run docs:build && bunx wrangler deploy --env preview"
},
"dependencies": {
"@huggingface/transformers": "^4.0.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-tabs": "^1.1.13",
"@tursodatabase/database-wasm": "^0.5.3",
"@vowel.to/client": "^0.3.3-beta",
"@wllama/wllama": "^2.3.7",
"haven": "file:./vendor/haven",
"js-yaml": "^4.1.1",
"marked": "^17.0.6",
"radix-vue": "^1.9.17",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.6.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.21.1",
"@types/bun": "latest",
"@types/chrome": "^0.1.40",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^5.0.4",
"dotenv": "^16.4.5",
"glob": "^11.0.3",
"mermaid": "^11.14.0",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"vite-css-modules": "^1.15.0",
"vite-plugin-mkcert": "^2.0.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vue": "^3.5.22",
"wrangler": "^3.96.0"
},
"peerDependencies": {
"typescript": "^5"
}
}