-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "opencode-docs-site",
"version": "1.0.0",
"description": "OpenCodeDocs Static Site",
"main": "index.js",
"scripts": {
"docs:dev": "vitepress dev docs",
"dev": "vitepress dev docs",
"docs:build": "NODE_OPTIONS='--max-old-space-size=12288' vitepress build docs",
"docs:preview": "vitepress preview docs",
"deploy:prepare": "rm -rf dist-deploy && mkdir -p dist-deploy && cp -r docs/.vitepress/dist/* dist-deploy/",
"deploy": "npm run deploy:prepare && wrangler pages deploy dist-deploy --project-name=opencodedocs"
},
"dependencies": {
"@phosphor-icons/web": "^2.1.2",
"gray-matter": "^4.0.3",
"motion-v": "^1.9.0",
"vitepress": "^1.0.0",
"vue": "^3.4.0"
},
"license": "MIT",
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.0.10",
"autoprefixer": "^10.4.23",
"mermaid": "^11.12.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitepress-plugin-mermaid": "^2.0.17",
"vitepress-sidebar": "^1.33.1"
}
}