23 lines
564 B
JSON
23 lines
564 B
JSON
{
|
|
"name": "create-wasm-app",
|
|
"version": "0.1.0",
|
|
"description": "create an app to consume rust-generated wasm packages",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"create-wasm-app": ".bin/create-wasm-app.js"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack --config webpack.config.js",
|
|
"start": "webpack-dev-server"
|
|
},
|
|
"dependencies": {
|
|
"rust-wasm": "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.1.5"
|
|
}
|
|
}
|