cbbeb66b5b
* added cargo config file to explicitly specify build target * wip * Config option to disable topology refreshing * extracted common parsing code * helper trait for working on wasm topology * wasm topology parsing * restored (slightly modified) old js-example * wip * Moved message preparation into a trait * wip * long-winded way of sending test packet * standalone NymNodeTester * finishing the test upon receiving all packets even if timeout wasnt reached * initial round of cleanup * sending multiple test packets in normal NymClient * javascript-side cleanup * starting mixnode test on btn click * Improved NymNodeTester constructors * improved error handling and constructors * tester utils error handling * further cleanup + using BTreeMap for NymTopology mixnodes * handling missed errors * splitting up 'test_node' * split up and cleaned up generation of test result * clippy + fixed example * post rebase fixes * another broken test * prevent running multiple parallel tests * cargo fmt * Added nym- prefix to node tester utils
39 lines
985 B
JSON
39 lines
985 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": "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"
|
|
}
|
|
} |