630c4922ac
* * Experiment with changing address mapping from canonical -> full URL as string. * Up MaxConns config. * Bump webpack-cli version * Modify internal-dev tester for concurrent testing * Add logging + POST request to internal-dev/ * push lockfiles * Remove RequestURL from RequestOptions struct for interface * Bump versions + update lockfiles
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "create-wasm-app",
|
|
"version": "0.1.0",
|
|
"description": "create an app to fetch data through the mixnet",
|
|
"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": "^11.0.0",
|
|
"hello-wasm-pack": "^0.1.0",
|
|
"webpack": "^5.98.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^5.2.1"
|
|
},
|
|
"dependencies": {
|
|
"@nymproject/mix-fetch-wasm": "file:../pkg",
|
|
"go-mix-conn": "file:../go-mix-conn/build"
|
|
}
|
|
}
|