-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 805 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 805 Bytes
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
{
"name": "wasmbooth",
"version": "1.0.0",
"description": "Wasm video filter booth app written in Rust",
"main": "lib/main.js",
"scripts": {
"test": "cargo test",
"build-wasm": "cargo +nightly build --release --target wasm32-unknown-unknown && mv target/wasm32-unknown-unknown/release/wasmbooth.wasm public",
"build-js": "webpack .",
"build": "npm run build-wasm && npm run build-js",
"build-web": "npm run build && cp -a public/. docs/",
"start": "node server.js"
},
"keywords": [
"wasm",
"webassembly",
"rust",
"video"
],
"author": "Matt Harrison <hi@matt-harrison.com>",
"license": "MIT",
"dependencies": {
"hapi": "^17.3.1",
"inert": "^5.1.0"
},
"devDependencies": {
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
}
}