-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 797 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "qftf-web",
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "cargo build --target=wasm32-unknown-unknown && wasm-bindgen ./target/wasm32-unknown-unknown/debug/qftf_web.wasm --out-dir=public/js --weak-refs --target=web --debug && node esbuild.config.js",
"build:release": "cargo build --target=wasm32-unknown-unknown --release && wasm-bindgen ./target/wasm32-unknown-unknown/release/qftf_web.wasm --out-dir=public/js --weak-refs --target=web && wasm-opt --all-features -Os -o public/js/qftf_web_bg.wasm public/js/qftf_web_bg.wasm && node esbuild.config.js"
},
"author": "Ian Cullinan <cibyr@cibyr.com>",
"license": "WTFPL",
"dependencies": {
"@undecaf/barcode-detector-polyfill": "0.9.22"
},
"devDependencies": {
"esbuild": "^0.25.6"
}
}