-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 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
{
"name": "webassembly-rust-learning",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"remove-unused-generated-files": "rm www/wasm/.gitignore & rm www/wasm/package.json & rm www/wasm/README.md",
"compile-rust": "wasm-pack build --target web --out-dir www/wasm --out-name index",
"build-wasm": "yarn compile-rust && yarn remove-unused-generated-files",
"watch-rust": "nodemon --watch lib -e rs --exec yarn build-wasm",
"dev": "vite --host",
"dev:wasm": "yarn watch-rust & yarn dev",
"build": "vite build --emptyOutDir",
"serve": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Timfts/webassembly-rust-learning.git"
},
"author": "Tim Fontes",
"license": "ISC",
"bugs": {
"url": "https://github.com/Timfts/webassembly-rust-learning/issues"
},
"homepage": "https://github.com/Timfts/webassembly-rust-learning#readme",
"devDependencies": {
"nodemon": "^2.0.20",
"vite": "^3.2.2"
},
"dependencies": {
"sass": "^1.57.1"
}
}