0115b02be3
* error handling + edge cases + types * use bonded node id * add UI and move feature to node-settings dir * use error modal * add type for postMessage arg * add timeout for node test * update storybook ci * fix CI for typescript linting * fix print node test results * replace react-to-print lib with vanilla solution * async print * update wallet changelog
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
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",
|
|
"build:wasm": "cd ../ && make wasm-build",
|
|
"start": "webpack-dev-server --port 8001"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rustwasm/create-wasm-app.git"
|
|
},
|
|
"keywords": [
|
|
"webassembly",
|
|
"wasm",
|
|
"rust",
|
|
"webpack"
|
|
],
|
|
"author": "Dave Hrycyszyn <futurechimp@users.noreply.github.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/nymtech/nym/issues"
|
|
},
|
|
"homepage": "https://nymtech.net/docs",
|
|
"devDependencies": {
|
|
"copy-webpack-plugin": "^10.2.4",
|
|
"hello-wasm-pack": "^0.1.0",
|
|
"webpack": "^5.70.0",
|
|
"webpack-cli": "^4.9.2",
|
|
"webpack-dev-server": "^4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"@nymproject/nym-client-wasm": "file:../pkg"
|
|
}
|
|
}
|