-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "mugl-rs",
"version": "1.0.0",
"sideEffects": false,
"description": "mugl rust examples",
"repository": {
"type": "git",
"url": "git+https://github.com/andykswong/muge.git"
},
"author": "Andy K.S. Wong <andykswong@outlook.com>",
"license": "MIT",
"private": "true",
"scripts": {
"prebuild": "npm run build:rs -- --release",
"build": "webpack",
"build:rs": "cross-env CARGO_TARGET_DIR=./dist cargo build --target=wasm32-unknown-unknown --example wasm --features backend-webgl",
"prestart": "npm run build:rs",
"start": "cross-env NODE_ENV=development webpack serve",
"test": "cross-env CARGO_TARGET_DIR=./dist cargo test"
},
"devDependencies": {
"copy-webpack-plugin": "^10.2.0",
"copyfiles": "^2.4.0",
"cross-env": "^7.0.0",
"rimraf": "^3.0.0",
"source-map-loader": "^3.0.0",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.7.0"
},
"dependencies": {
"mugl": "^0.1.4"
}
}