2021-03-04 22:34:01 +00:00
|
|
|
{
|
2021-05-13 06:49:29 +00:00
|
|
|
"name": "js-waku",
|
2022-05-27 13:41:15 +00:00
|
|
|
"version": "0.24.0",
|
2021-05-04 01:17:23 +00:00
|
|
|
"description": "TypeScript implementation of the Waku v2 protocol",
|
2022-07-26 05:18:03 +00:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"module": "./dist/index.js",
|
2022-03-18 02:29:03 +00:00
|
|
|
"exports": {
|
2022-06-15 11:39:01 +00:00
|
|
|
".": {
|
2022-07-26 05:18:03 +00:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"import": "./dist/index.js"
|
2022-08-01 12:07:00 +00:00
|
|
|
},
|
|
|
|
"./lib/create_waku": {
|
|
|
|
"types": "./dist/lib/create_waku.d.ts",
|
|
|
|
"import": "./dist/lib/create_waku.js"
|
2022-08-05 14:36:46 +00:00
|
|
|
},
|
|
|
|
"./lib/peer_discovery_dns": {
|
|
|
|
"types": "./dist/lib/peer_discovery_dns/index.d.ts",
|
|
|
|
"import": "./dist/lib/peer_discovery_dns/index.js"
|
2022-05-20 13:40:56 +00:00
|
|
|
}
|
2022-03-18 02:29:03 +00:00
|
|
|
},
|
2022-05-20 13:40:56 +00:00
|
|
|
"type": "module",
|
2021-05-13 06:49:29 +00:00
|
|
|
"repository": "https://github.com/status-im/js-waku",
|
2021-05-04 01:17:23 +00:00
|
|
|
"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
|
|
|
],
|
2021-03-04 22:34:01 +00:00
|
|
|
"scripts": {
|
2022-02-25 01:36:01 +00:00
|
|
|
"prepare": "husky install",
|
2022-07-27 03:20:33 +00:00
|
|
|
"build": "run-s build:**",
|
2022-06-16 04:36:08 +00:00
|
|
|
"build:esm": "tsc && node build-scripts/fix-imports.js",
|
2022-08-05 14:36:46 +00:00
|
|
|
"build:bundle": "rollup --config rollup.config.js",
|
2022-06-16 07:18:41 +00:00
|
|
|
"size": "npm run build && size-limit",
|
2021-03-04 22:34:01 +00:00
|
|
|
"fix": "run-s fix:*",
|
2022-05-20 13:40:56 +00:00
|
|
|
"fix:prettier": "prettier \"src/**/*.ts\" \"./*.json\" \"*.*js\" \".github/**/*.yml\" --write",
|
2022-08-03 06:05:36 +00:00
|
|
|
"fix:lint": "eslint src --ext .ts --ext .cjs --fix",
|
2021-03-15 05:22:26 +00:00
|
|
|
"pretest": "run-s pretest:*",
|
2021-03-15 07:20:30 +00:00
|
|
|
"pretest:1-init-git-submodules": "[ -f './nim-waku/build/wakunode2' ] || git submodule update --init --recursive",
|
2021-04-14 02:06:56 +00:00
|
|
|
"pretest:2-build-nim-waku": "[ -f './nim-waku/build/wakunode2' ] || run-s nim-waku:build",
|
2022-06-17 06:30:03 +00:00
|
|
|
"examples:pretest": "for d in examples/*/; do (cd $d && npm ci); done",
|
2021-04-14 02:06:56 +00:00
|
|
|
"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)",
|
2021-05-15 11:49:45 +00:00
|
|
|
"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",
|
2022-05-19 06:00:57 +00:00
|
|
|
"test": "run-s test:*",
|
2021-03-04 22:34:01 +00:00
|
|
|
"test:lint": "eslint src --ext .ts",
|
2022-05-20 13:40:56 +00:00
|
|
|
"test:prettier": "prettier \"src/**/*.ts\" \"./*.json\" \"*.*js\" \".github/**/*.yml\" --list-different",
|
2021-08-05 06:21:16 +00:00
|
|
|
"test:spelling": "cspell \"{README.md,.github/*.md,guides/*.md,src/**/*.ts}\"",
|
2022-05-19 06:00:57 +00:00
|
|
|
"test:tsc": "tsc -p tsconfig.dev.json",
|
2022-08-05 15:02:15 +00:00
|
|
|
"test:node": "mocha",
|
|
|
|
"test:browser": "karma start karma.conf.cjs",
|
2022-01-13 05:27:35 +00:00
|
|
|
"examples:test": "run-s examples:pretest; for d in examples/*/; do (cd $d && npm test;); done",
|
2022-05-27 06:48:44 +00:00
|
|
|
"proto": "rimraf src/proto/*.ts; protons src/proto/*.proto",
|
2021-03-04 22:34:01 +00:00
|
|
|
"watch:build": "tsc -p tsconfig.json -w",
|
2022-08-03 06:50:04 +00:00
|
|
|
"watch:test": "mocha --watch",
|
2022-01-24 10:53:45 +00:00
|
|
|
"doc": "run-s doc:*",
|
2022-02-11 06:27:15 +00:00
|
|
|
"doc:html": "typedoc",
|
2022-01-24 10:53:45 +00:00
|
|
|
"doc:cname": "echo 'js-waku.wakuconnect.dev' > build/docs/CNAME",
|
2022-02-02 00:35:28 +00:00
|
|
|
"doc:examples": "mkdir -p build/docs/examples",
|
2022-05-27 13:38:12 +00:00
|
|
|
"prepublish": "npm run build",
|
2022-01-24 10:53:45 +00:00
|
|
|
"deploy": "node ci/deploy.js",
|
2022-02-16 01:11:54 +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"
|
2021-03-04 22:34:01 +00:00
|
|
|
},
|
2022-05-09 13:32:43 +00:00
|
|
|
"browser": {
|
|
|
|
"crypto": false
|
|
|
|
},
|
2021-03-04 22:34:01 +00:00
|
|
|
"engines": {
|
2022-01-06 02:31:05 +00:00
|
|
|
"node": ">=16"
|
2021-03-04 22:34:01 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-07-25 01:56:21 +00:00
|
|
|
"@chainsafe/libp2p-gossipsub": "^3.4.0",
|
2022-07-20 02:50:24 +00:00
|
|
|
"@chainsafe/libp2p-noise": "^7.0.1",
|
2022-02-16 03:08:48 +00:00
|
|
|
"@ethersproject/rlp": "^5.5.0",
|
2022-06-23 04:03:52 +00:00
|
|
|
"@libp2p/crypto": "^1.0.0",
|
2022-06-22 05:12:14 +00:00
|
|
|
"@libp2p/interface-peer-discovery": "^1.0.0",
|
2022-06-20 06:48:30 +00:00
|
|
|
"@libp2p/interface-peer-id": "^1.0.2",
|
2022-06-22 05:12:14 +00:00
|
|
|
"@libp2p/interface-peer-info": "^1.0.1",
|
2022-06-20 06:48:30 +00:00
|
|
|
"@libp2p/interface-peer-store": "^1.0.0",
|
|
|
|
"@libp2p/interfaces": "^3.0.2",
|
2022-07-25 03:17:16 +00:00
|
|
|
"@libp2p/mplex": "^4.0.1",
|
2022-06-20 06:48:30 +00:00
|
|
|
"@libp2p/peer-id": "^1.1.10",
|
2022-06-22 05:12:14 +00:00
|
|
|
"@libp2p/websockets": "^3.0.0",
|
2022-06-20 06:48:30 +00:00
|
|
|
"@multiformats/multiaddr": "^10.2.0",
|
2022-05-09 07:02:53 +00:00
|
|
|
"@noble/secp256k1": "^1.3.4",
|
2022-06-21 03:23:42 +00:00
|
|
|
"debug": "^4.3.4",
|
2022-07-25 03:17:47 +00:00
|
|
|
"dns-query": "^0.11.2",
|
2022-01-13 00:33:26 +00:00
|
|
|
"hi-base32": "^0.5.1",
|
2022-06-24 06:02:49 +00:00
|
|
|
"it-all": "^1.0.6",
|
2022-06-23 07:07:38 +00:00
|
|
|
"it-length-prefixed": "^7.0.1",
|
|
|
|
"it-pipe": "^2.0.3",
|
2021-07-05 05:48:57 +00:00
|
|
|
"js-sha3": "^0.8.0",
|
2022-07-22 05:26:43 +00:00
|
|
|
"libp2p": "next",
|
2022-07-25 03:13:47 +00:00
|
|
|
"p-event": "^5.0.1",
|
2022-05-27 06:48:44 +00:00
|
|
|
"protons-runtime": "^1.0.4",
|
2022-05-18 07:50:23 +00:00
|
|
|
"uint8arrays": "^3.0.0",
|
2022-06-23 05:37:30 +00:00
|
|
|
"uuid": "^8.3.2"
|
2021-03-04 22:34:01 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-06-23 04:03:52 +00:00
|
|
|
"@libp2p/peer-id-factory": "^1.0.15",
|
2022-05-27 13:01:52 +00:00
|
|
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
2022-08-03 05:44:23 +00:00
|
|
|
"@size-limit/preset-big-lib": "^8.0.0",
|
2021-03-15 05:22:26 +00:00
|
|
|
"@types/app-root-path": "^1.2.4",
|
2021-03-22 04:05:03 +00:00
|
|
|
"@types/chai": "^4.2.15",
|
2022-06-21 03:23:42 +00:00
|
|
|
"@types/debug": "^4.1.7",
|
2022-02-03 04:57:36 +00:00
|
|
|
"@types/mocha": "^9.1.0",
|
2022-01-03 01:34:22 +00:00
|
|
|
"@types/node": "^17.0.6",
|
2021-03-11 00:11:37 +00:00
|
|
|
"@types/tail": "^2.0.0",
|
2021-04-07 01:04:30 +00:00
|
|
|
"@types/uuid": "^8.3.0",
|
2022-01-02 22:28:05 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
|
|
"@typescript-eslint/parser": "^5.8.1",
|
2021-03-15 05:22:26 +00:00
|
|
|
"app-root-path": "^3.0.0",
|
2021-03-22 04:05:03 +00:00
|
|
|
"chai": "^4.3.4",
|
2022-01-03 23:24:06 +00:00
|
|
|
"cspell": "^5.14.0",
|
2022-01-02 15:18:23 +00:00
|
|
|
"eslint": "^8.6.0",
|
2021-12-20 05:00:50 +00:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-03-04 22:34:01 +00:00
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
2022-01-02 22:28:05 +00:00
|
|
|
"eslint-plugin-functional": "^4.0.2",
|
|
|
|
"eslint-plugin-import": "^2.25.3",
|
2021-12-21 01:07:13 +00:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2021-03-17 04:34:58 +00:00
|
|
|
"fast-check": "^2.14.0",
|
2022-01-24 10:53:45 +00:00
|
|
|
"gh-pages": "^3.2.3",
|
2022-02-25 01:36:01 +00:00
|
|
|
"husky": "^7.0.4",
|
2022-05-20 13:40:56 +00:00
|
|
|
"ignore-loader": "^0.1.2",
|
2022-02-13 22:26:22 +00:00
|
|
|
"isomorphic-fetch": "^3.0.0",
|
2022-02-16 01:11:54 +00:00
|
|
|
"jsdom": "^19.0.0",
|
|
|
|
"jsdom-global": "^3.0.2",
|
2022-01-27 04:25:17 +00:00
|
|
|
"karma": "^6.3.12",
|
2021-07-14 01:40:15 +00:00
|
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
|
|
"karma-mocha": "^2.0.1",
|
2022-05-20 13:40:56 +00:00
|
|
|
"karma-webpack": "^5.0.0",
|
2022-02-25 01:36:01 +00:00
|
|
|
"lint-staged": "^12.3.4",
|
2022-01-02 22:47:14 +00:00
|
|
|
"mocha": "^9.1.3",
|
2021-03-04 22:34:01 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2021-03-11 00:11:37 +00:00
|
|
|
"p-timeout": "^4.1.0",
|
2022-02-01 01:54:54 +00:00
|
|
|
"portfinder": "^1.0.28",
|
2021-03-04 22:34:01 +00:00
|
|
|
"prettier": "^2.1.1",
|
2021-10-11 04:03:13 +00:00
|
|
|
"process": "^0.11.10",
|
2022-05-27 06:48:44 +00:00
|
|
|
"protons": "^3.0.4",
|
2022-01-03 23:20:32 +00:00
|
|
|
"puppeteer": "^13.0.1",
|
2022-05-27 13:01:52 +00:00
|
|
|
"rollup": "^2.75.0",
|
2022-08-03 05:44:23 +00:00
|
|
|
"size-limit": "^8.0.0",
|
2021-03-11 00:11:37 +00:00
|
|
|
"tail": "^2.2.0",
|
2021-10-11 04:03:13 +00:00
|
|
|
"ts-loader": "^9.2.6",
|
2022-01-10 02:43:23 +00:00
|
|
|
"ts-node": "^10.4.0",
|
2021-12-02 11:18:07 +00:00
|
|
|
"typedoc": "^0.22.10",
|
|
|
|
"typedoc-plugin-no-inherit": "^1.3.1",
|
2022-07-27 05:21:24 +00:00
|
|
|
"typescript": "^4.5.5"
|
2021-03-04 22:34:01 +00:00
|
|
|
},
|
|
|
|
"files": [
|
2022-07-26 05:18:03 +00:00
|
|
|
"dist",
|
2022-08-05 14:36:46 +00:00
|
|
|
"bundle",
|
2022-06-16 00:31:02 +00:00
|
|
|
"src/*.ts",
|
2022-05-23 05:12:37 +00:00
|
|
|
"src/lib/**/*.ts",
|
|
|
|
"src/proto/**/*.ts",
|
2021-03-04 22:34:01 +00:00
|
|
|
"!**/*.spec.*",
|
|
|
|
"!**/*.json",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
|
|
|
],
|
2022-02-25 01:36:01 +00:00
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
2022-03-01 06:04:03 +00:00
|
|
|
"eslint --fix"
|
2022-02-25 01:36:01 +00:00
|
|
|
],
|
|
|
|
"*.{ts,json,conf.js}": [
|
|
|
|
"prettier --write"
|
|
|
|
]
|
|
|
|
}
|
2021-03-04 22:34:01 +00:00
|
|
|
}
|