-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 872 Bytes
/
package.json
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
{
"name": "my-blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"packageManager": "[email protected]",
"scripts": {
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider vuepress dev src",
"start": "pnpm dev",
"build:dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider vuepress build src --dest dist",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider vuepress build src --dest dist",
"postbuild": "bash -c '[ -z \"$VERCEL\" ] && cp -r ./dist/* /var/www/html/blog/ || true'"
},
"engines": {
"node": ">=18.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"@vercel/analytics": "^1.2.2",
"lodash.debounce": "^4.0.8",
"vuepress-plugin-rocket": "^1.0.1",
"vuepress-theme-meteorlxy": "^1.9.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"vuepress": "^1.1.0"
}
}