-
Notifications
You must be signed in to change notification settings - Fork 316
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 853 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "learn-wgpu",
"packageManager": "[email protected]",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider; ./build-wasm.sh && vuepress dev docs",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider; ./build-wasm.sh && vuepress build docs",
"deploy": "sh deploy.sh",
"just-build": "cross-env NODE_OPTIONS=--openssl-legacy-provider; vuepress build docs",
"just-dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider; vuepress dev docs"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.4",
"@vuepress/bundler-vite": "^2.0.0-rc.26",
"@vuepress/theme-default": "^2.0.0-rc.123",
"sass-embedded": "^1.97.3",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0",
"vuepress": "^2.0.0-rc.26"
}
}