-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 847 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 847 Bytes
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
{
"name": "frontend-growth-blog",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "node scripts/precompute-meta.js && node scripts/parallel-build.js && node docs/.vitepress/merge-builds.js",
"docs:build:main": "BUILD_MODE=main NODE_OPTIONS=--max-old-space-size=8192 vitepress build docs",
"docs:build:zh-variants": "BUILD_MODE=zh-variants NODE_OPTIONS=--max-old-space-size=8192 vitepress build docs",
"docs:preview": "vitepress preview docs",
"precompute": "node scripts/precompute-meta.js"
},
"devDependencies": {
"@types/node": "^25.7.0",
"feed": "^5.2.1",
"vite-plugin-pwa": "^1.3.0",
"vitepress": "^1.6.2",
"vue": "^3.5.34",
"workbox-build": "^7.4.1"
},
"dependencies": {
"highlight.js": "^11.11.1"
}
}