8baa236d81
* Moved `nym-sphinx-wasm` into `wasm` folder and renamed its examples * A proposal for some structural cleanup * desktop client: beginning of a Rust example for chunking. * Simplifying desktop client readme * Tarting up webassembly README * A more visual webassembly client example * clients/webassembly: grouping a few things into named functions for clarity * clients/webassembly: put URLs at top of file, prepping for drop-down action * mixnode + provider run: changed startup error messages a bit * clients/webassembly: scrolling from the bottom in the demo
40 lines
1011 B
JSON
40 lines
1011 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 --port 8001"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rustwasm/create-wasm-app.git"
|
|
},
|
|
"keywords": [
|
|
"webassembly",
|
|
"wasm",
|
|
"rust",
|
|
"webpack"
|
|
],
|
|
"author": "Ashley Williams <ashley666ashley@gmail.com>",
|
|
"license": "(MIT OR Apache-2.0)",
|
|
"bugs": {
|
|
"url": "https://github.com/rustwasm/create-wasm-app/issues"
|
|
},
|
|
"homepage": "https://github.com/rustwasm/create-wasm-app#readme",
|
|
"dependencies": {
|
|
"nym-sphinx-wasm": "file:../pkg"
|
|
},
|
|
"devDependencies": {
|
|
"hello-wasm-pack": "^0.1.0",
|
|
"webpack": "^4.29.3",
|
|
"webpack-cli": "^3.1.0",
|
|
"webpack-dev-server": "^3.1.5",
|
|
"copy-webpack-plugin": "^5.0.0"
|
|
}
|
|
}
|