learn-wgpu/package.json

27 lines
865 B
JSON
Raw Normal View History

2019-10-16 23:35:58 +00:00
{
"name": "learn-wgpu",
"version": "1.0.0",
"description": "Learning wgpu with Rust",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2023-01-14 22:00:24 +00:00
"dev": "NODE_OPTIONS=--openssl-legacy-provider; ./build-wasm.sh && vuepress dev docs",
"build": "NODE_OPTIONS=--openssl-legacy-provider; ./build-wasm.sh && vuepress build docs",
2021-12-03 21:23:47 +00:00
"deploy": "sh deploy.sh",
2023-01-14 22:00:24 +00:00
"just-build": "NODE_OPTIONS=--openssl-legacy-provider; vuepress build docs",
"just-dev": "NODE_OPTIONS=--openssl-legacy-provider; vuepress dev docs"
2019-10-16 23:35:58 +00:00
},
"author": "",
"license": "ISC",
"devDependencies": {
2022-01-26 02:47:32 +00:00
"@vuepress/plugin-back-to-top": "^1.9.5",
"vuepress": "^1.9.5",
2020-04-18 03:23:19 +00:00
"vuepress-plugin-code-copy": "^1.0.6",
2022-01-26 02:47:32 +00:00
"vuepress-plugin-seo": "^0.1.4",
2019-10-22 00:29:38 +00:00
"vuepress-theme-thindark": "^1.0.1"
2023-01-14 22:00:24 +00:00
}
2019-10-16 23:35:58 +00:00
}