js-waku/package.json

147 lines
5.0 KiB
JSON
Raw Normal View History

{
"name": "js-waku",
"version": "0.14.2",
"description": "TypeScript implementation of the Waku v2 protocol",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
2021-10-11 04:03:13 +00:00
"module": "build/esm/index.js",
"repository": "https://github.com/status-im/js-waku",
"license": "MIT OR Apache-2.0",
2021-05-04 05:12:36 +00:00
"keywords": [
"waku",
"decentralised",
2021-08-20 00:34:25 +00:00
"communication",
"web3",
"ethereum",
"dapps"
2021-05-04 05:12:36 +00:00
],
"scripts": {
2021-10-11 04:03:13 +00:00
"build": "run-s build:**",
"build:main": "tsc -p tsconfig.json",
2021-05-11 01:33:20 +00:00
"build:dev": "tsc -p tsconfig.dev.json",
"build:esm": "tsc --module es2015 --target es2015 --outDir build/esm",
2021-10-11 04:03:13 +00:00
"build:umd": "webpack --config webpack.config.js",
"build:umd:min": "webpack --config webpack.config.min.js",
"build:umd:bundle": "webpack --config webpack.config.bundle.js",
"build:umd:min:bundle": "webpack --config webpack.config.min.bundle.js",
"fix": "run-s fix:*",
2021-07-14 01:40:15 +00:00
"fix:prettier": "prettier \"src/**/*.ts\" \"./*.json\" \"*.conf.js\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"pretest": "run-s pretest:*",
"pretest:1-init-git-submodules": "[ -f './nim-waku/build/wakunode2' ] || git submodule update --init --recursive",
"pretest:2-build-nim-waku": "[ -f './nim-waku/build/wakunode2' ] || run-s nim-waku:build",
"examples:pretest": "for d in examples/*; do (cd $d; npm install); done",
"nim-waku:build": "(cd nim-waku; NIMFLAGS=\"-d:chronicles_colors=off -d:chronicles_sinks=textlines -d:chronicles_log_level=TRACE\" make -j$(nproc --all 2>/dev/null || echo 2) wakunode2)",
"nim-waku:force-build": "(cd nim-waku && rm -rf ./build/ ./vendor && make -j$(nproc --all 2>/dev/null || echo 2) update) && run-s nim-waku:build",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
2021-07-14 01:40:15 +00:00
"test:prettier": "prettier \"src/**/*.ts\" \"./*.json\" \"*.conf.js\" --list-different",
2021-08-05 06:21:16 +00:00
"test:spelling": "cspell \"{README.md,.github/*.md,guides/*.md,src/**/*.ts}\"",
2021-05-04 05:07:32 +00:00
"test:unit": "nyc --silent mocha",
2021-07-14 01:40:15 +00:00
"test:karma": "karma start",
"examples:test": "run-s examples:pretest; for d in examples/*; do (cd $d; npm test;); done",
"proto": "run-s proto:*",
"proto:lint": "buf lint",
"proto:build": "buf generate",
"watch:build": "tsc -p tsconfig.json -w",
2021-03-22 05:02:10 +00:00
"watch:test": "nyc --silent mocha --watch",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc --excludeInternal --listInvalidSymbolLinks --exclude **/*.spec.ts --out build/docs src/",
2021-08-20 00:33:44 +00:00
"reset-hard": "git clean -dfx && git reset --hard && npm i && npm run build && for d in examples/*; do (cd $d; npm i); done"
},
"engines": {
"node": ">=14"
},
"dependencies": {
2021-09-03 04:00:56 +00:00
"@chainsafe/libp2p-noise": "^4.1.1",
"axios": "^0.21.1",
"base64url": "^3.0.1",
"bigint-buffer": "^1.1.5",
2021-03-10 05:22:49 +00:00
"debug": "^4.3.1",
"ecies-geth": "^1.5.2",
2021-04-29 01:53:03 +00:00
"it-concat": "^2.0.0",
"it-length-prefixed": "^5.0.2",
"js-sha3": "^0.8.0",
2021-09-03 04:00:56 +00:00
"libp2p": "^0.32.4",
"libp2p-bootstrap": "^0.13.0",
2021-09-03 04:00:56 +00:00
"libp2p-gossipsub": "^0.11.1",
2021-07-22 05:31:34 +00:00
"libp2p-mplex": "^0.10.4",
2021-09-03 04:00:56 +00:00
"libp2p-websockets": "^0.16.1",
"multiaddr": "^10.0.1",
"multihashes": "^4.0.3",
"protobufjs": "^6.8.8",
"rlp": "^2.2.7",
"secp256k1": "^4.0.2",
2021-05-15 09:49:37 +00:00
"uuid": "^8.3.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/app-root-path": "^1.2.4",
2021-03-22 04:05:03 +00:00
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
2021-03-04 22:41:03 +00:00
"@types/node": "^14.14.31",
"@types/secp256k1": "^4.0.2",
"@types/tail": "^2.0.0",
2021-04-07 01:04:30 +00:00
"@types/uuid": "^8.3.0",
"@types/varint": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"app-root-path": "^3.0.0",
2021-10-11 04:03:13 +00:00
"assert": "^2.0.0",
"buffer": "^6.0.3",
2021-03-22 04:05:03 +00:00
"chai": "^4.3.4",
2021-10-11 04:03:13 +00:00
"crypto-browserify": "^3.12.0",
"cspell": "^4.1.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.0.0",
"fast-check": "^2.14.0",
"gh-pages": "^3.1.0",
2021-07-14 01:40:15 +00:00
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.1",
2021-08-20 00:20:46 +00:00
"libp2p-tcp": "^0.17.1",
2021-03-22 04:05:03 +00:00
"mocha": "^8.3.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"p-timeout": "^4.1.0",
"prettier": "^2.1.1",
2021-10-11 04:03:13 +00:00
"process": "^0.11.10",
"puppeteer": "^10.1.0",
2021-10-11 04:03:13 +00:00
"stream-browserify": "^3.0.0",
"tail": "^2.2.0",
2021-10-11 04:03:13 +00:00
"ts-loader": "^9.2.6",
2021-03-22 04:05:03 +00:00
"ts-node": "^9.1.1",
"ts-proto": "^1.82.5",
"typedoc": "^0.22.10",
"typedoc-plugin-no-inherit": "^1.3.1",
2021-10-11 04:03:13 +00:00
"typescript": "^4.0.2",
"varint": "^6.0.0",
2021-10-11 04:03:13 +00:00
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
},
"files": [
"build/main",
2021-10-11 23:25:28 +00:00
"build/esm",
"build/umd",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"prettier": {
"singleQuote": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}