forked from vikejs/vike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.97 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"packageManager": "pnpm@6.21.0",
"scripts": {
"========= Docs": "",
"// Develop website https://vite-plugin-ssr.com": "",
"docs": "cd libframe/docs/ && pnpm run dev",
"// Build https://vite-plugin-ssr.com for production": "",
"docs:build": "cd libframe/docs/ && pnpm run build",
"// Simulate https://vite-plugin-ssr.com for production": "",
"docs:prod": "cd libframe/docs/ && pnpm run prod",
"========= Test": "",
"// Run tests": "",
"test": "cd libframe/test/ && pnpm run test --bail",
"// Run `$ pnpm test:setup` before running `$ pnpm test`": "",
"test:setup": "pnpm run clean && pnpm install && pnpm run build",
"========= Dev": "",
"// Develop vite-plugin-ssr": "",
"dev": "cd vite-plugin-ssr/ && pnpm run dev",
"dev:cjs": "cd vite-plugin-ssr/ && pnpm run dev:cjs",
"dev:esm": "cd vite-plugin-ssr/ && pnpm run dev:esm",
"// Run `$ pnpm dev:setup` before running `$ pnpm dev`": "",
"dev:setup": "pnpm run clean && pnpm install",
"========= Build": "",
"// Build vite-plugin-ssr": "",
"build": "cd vite-plugin-ssr/ && pnpm run build",
"========= Handle ./libframe/ submodule": "",
"setup": "pnpm run libframe:clone",
"pnpm:devPreinstall": "pnpm run libframe:check",
"postinstall": "pnpm run libframe:init",
"libframe:check": "node ./.libframe-submodule/check.js",
"libframe:clone": "node ./.libframe-submodule/clone.js ",
"libframe:init": "pnpm exec submodule-init libframe/",
"========= Upgrade deps": "",
"// Upgrade all dependencies of all `package.json` that have tests": "",
"bump": "cd libframe/scripts/ && pnpm run bump",
"========= Release": "",
"release": "cd libframe/scripts/ && pnpm run release",
"========= Clean": "",
"// Remove all generated files": "",
"clean": "git clean -Xdf",
"========= Only allow pnpm; forbid yarn & npm": "",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@brillout/submodule-init": "0.1.2"
}
}