-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
37 lines (37 loc) · 939 Bytes
/
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
35
36
37
{
"name": "wasm-template-rust",
"version": "0.1.0",
"description": "A template for no npm wasm-rust and github hosting",
"main": "index.js",
"bin": {
"create-wasm-app": ".bin/create-wasm-app.js"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sn99/wasm-template-rust.git"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"webpack",
"template"
],
"author": "sn99 <siddharthn.099@gmail.com>",
"license": "(MIT OR Apache-2.0)",
"homepage": "https://github.com/sn99/wasm-template-rust/blob/master/README.md",
"dependencies": {
"wasm-template-rust": "file:../pkg"
},
"devDependencies": {
"copy-webpack-plugin": "^5.0.0",
"hello-wasm-pack": "^0.1.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.11.2"
}
}