2021-03-05 09:34:01 +11:00
|
|
|
{
|
2022-10-31 10:57:26 +11:00
|
|
|
"name": "@waku/core",
|
2022-11-18 13:27:36 +11:00
|
|
|
"version": "0.0.6",
|
2021-05-04 11:17:23 +10:00
|
|
|
"description": "TypeScript implementation of the Waku v2 protocol",
|
2022-07-26 15:18:03 +10:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"module": "./dist/index.js",
|
2022-03-17 22:29:03 -04:00
|
|
|
"exports": {
|
2022-06-15 21:39:01 +10:00
|
|
|
".": {
|
2022-07-26 15:18:03 +10:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"import": "./dist/index.js"
|
2022-08-01 22:07:00 +10:00
|
|
|
},
|
2022-08-19 23:05:03 +10:00
|
|
|
"./lib/predefined_bootstrap_nodes": {
|
|
|
|
"types": "./dist/lib/predefined_bootstrap_nodes.d.ts",
|
|
|
|
"import": "./dist/lib/predefined_bootstrap_nodes.js"
|
2022-09-01 14:29:31 +10:00
|
|
|
},
|
|
|
|
"./lib/wait_for_remote_peer": {
|
|
|
|
"types": "./dist/lib/wait_for_remote_peer.d.ts",
|
|
|
|
"import": "./dist/lib/wait_for_remote_peer.js"
|
2022-09-19 13:50:29 +10:00
|
|
|
},
|
|
|
|
"./lib/waku_message/version_0": {
|
|
|
|
"types": "./dist/lib/waku_message/version_0.d.ts",
|
|
|
|
"import": "./dist/lib/waku_message/version_0.js"
|
|
|
|
},
|
2022-09-19 16:20:33 +10:00
|
|
|
"./lib/waku_message/topic_only_message": {
|
|
|
|
"types": "./dist/lib/waku_message/topic_only_message.d.ts",
|
|
|
|
"import": "./dist/lib/waku_message/topic_only_message.js"
|
2022-05-20 23:40:56 +10:00
|
|
|
}
|
2022-03-17 22:29:03 -04:00
|
|
|
},
|
2022-08-17 11:02:19 +02:00
|
|
|
"typesVersions": {
|
|
|
|
"*": {
|
|
|
|
"lib/*": [
|
|
|
|
"dist/lib/*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2022-05-20 23:40:56 +10:00
|
|
|
"type": "module",
|
2022-10-31 11:46:40 +11:00
|
|
|
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/core#readme",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-10-31 12:15:37 +11:00
|
|
|
"url": "https://github.com/waku-org/js-waku.git"
|
2022-10-31 11:46:40 +11:00
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/waku-org/js-waku/issues"
|
|
|
|
},
|
2021-05-04 11:17:23 +10:00
|
|
|
"license": "MIT OR Apache-2.0",
|
2021-05-04 15:12:36 +10:00
|
|
|
"keywords": [
|
|
|
|
"waku",
|
|
|
|
"decentralised",
|
2021-08-20 10:34:25 +10:00
|
|
|
"communication",
|
|
|
|
"web3",
|
|
|
|
"ethereum",
|
|
|
|
"dapps"
|
2021-05-04 15:12:36 +10:00
|
|
|
],
|
2021-03-05 09:34:01 +11:00
|
|
|
"scripts": {
|
2022-07-27 13:20:33 +10:00
|
|
|
"build": "run-s build:**",
|
2022-12-02 15:43:46 +11:00
|
|
|
"build:esm": "tsc",
|
2022-08-06 00:36:46 +10:00
|
|
|
"build:bundle": "rollup --config rollup.config.js",
|
2021-03-05 09:34:01 +11:00
|
|
|
"fix": "run-s fix:*",
|
2022-10-31 09:09:04 +11:00
|
|
|
"fix:prettier": "prettier . --write",
|
2022-08-03 16:05:36 +10:00
|
|
|
"fix:lint": "eslint src --ext .ts --ext .cjs --fix",
|
2021-03-15 16:22:26 +11:00
|
|
|
"pretest": "run-s pretest:*",
|
2022-10-31 09:32:20 +11:00
|
|
|
"pretest:1-init-git-submodules": "[ -f '../../nwaku/build/wakunode2' ] || git submodule update --init --recursive",
|
|
|
|
"pretest:2-build-nwaku": "[ -f '../../nwaku/build/wakunode2' ] || run-s nwaku:build",
|
|
|
|
"nwaku:build": "(PROC=$(nproc --all 2>/dev/null || echo 2); cd ../../nwaku; make -j$PROC update; NIMFLAGS=\"-d:chronicles_colors=off -d:chronicles_sinks=textlines -d:chronicles_log_level=TRACE\" make -j$PROC wakunode2)",
|
|
|
|
"nwaku:force-build": "(cd ../../nwaku && rm -rf ./build/ ./vendor) && run-s nwaku:build",
|
2022-10-31 09:35:59 +11:00
|
|
|
"check": "run-s check:*",
|
2022-11-01 16:30:24 +11:00
|
|
|
"check:tsc": "tsc -p tsconfig.dev.json",
|
2022-10-31 09:35:59 +11:00
|
|
|
"check:lint": "eslint src --ext .ts",
|
|
|
|
"check:prettier": "prettier . --list-different",
|
|
|
|
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
2022-05-19 16:00:57 +10:00
|
|
|
"test": "run-s test:*",
|
2022-08-24 15:25:37 +10:00
|
|
|
"test:node": "TS_NODE_PROJECT=./tsconfig.dev.json mocha",
|
2022-08-06 01:02:15 +10:00
|
|
|
"test:browser": "karma start karma.conf.cjs",
|
2022-05-27 16:48:44 +10:00
|
|
|
"proto": "rimraf src/proto/*.ts; protons src/proto/*.proto",
|
2021-03-05 09:34:01 +11:00
|
|
|
"watch:build": "tsc -p tsconfig.json -w",
|
2022-08-03 16:50:04 +10:00
|
|
|
"watch:test": "mocha --watch",
|
2022-05-27 23:38:12 +10:00
|
|
|
"prepublish": "npm run build",
|
2022-11-04 14:42:24 +11:00
|
|
|
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
2021-03-05 09:34:01 +11:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-01-06 13:31:05 +11:00
|
|
|
"node": ">=16"
|
2021-03-05 09:34:01 +11:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-11-16 15:50:43 +11:00
|
|
|
"@chainsafe/libp2p-gossipsub": "^5.2.1",
|
2022-11-09 13:28:55 +11:00
|
|
|
"@libp2p/interface-connection": "^3.0.3",
|
2022-06-22 15:12:14 +10:00
|
|
|
"@libp2p/interface-peer-discovery": "^1.0.0",
|
2022-11-16 15:50:43 +11:00
|
|
|
"@libp2p/interface-peer-id": "^1.0.6",
|
|
|
|
"@libp2p/interface-peer-info": "^1.0.4",
|
|
|
|
"@libp2p/interface-peer-store": "^1.2.3",
|
|
|
|
"@libp2p/interface-pubsub": "^3.0.1",
|
2022-11-17 11:01:27 +11:00
|
|
|
"@libp2p/interface-registrar": "^2.0.4",
|
2022-11-16 15:50:43 +11:00
|
|
|
"@libp2p/interfaces": "^3.0.4",
|
2022-06-20 16:48:30 +10:00
|
|
|
"@libp2p/peer-id": "^1.1.10",
|
2022-10-30 21:32:24 +11:00
|
|
|
"@multiformats/multiaddr": "^11.0.6",
|
2022-11-15 18:08:21 +05:30
|
|
|
"@noble/hashes": "^1.1.3",
|
2022-11-15 05:17:24 +05:30
|
|
|
"@waku/byte-utils": "*",
|
2022-11-01 19:57:19 +11:00
|
|
|
"@waku/interfaces": "*",
|
2022-06-21 13:23:42 +10:00
|
|
|
"debug": "^4.3.4",
|
2022-06-24 16:02:49 +10:00
|
|
|
"it-all": "^1.0.6",
|
2022-09-05 12:23:46 +10:00
|
|
|
"it-length-prefixed": "^8.0.2",
|
2022-08-16 14:48:31 +10:00
|
|
|
"it-pipe": "^2.0.4",
|
2022-11-16 15:49:43 +11:00
|
|
|
"libp2p": "0.40.0",
|
2022-07-25 13:13:47 +10:00
|
|
|
"p-event": "^5.0.1",
|
2022-09-05 14:39:24 +10:00
|
|
|
"protons-runtime": "^3.1.0",
|
2022-09-05 15:02:23 +10:00
|
|
|
"uint8arraylist": "^2.3.2",
|
2022-11-03 14:42:01 +11:00
|
|
|
"uint8arrays": "^4.0.2",
|
2022-11-18 15:58:49 +00:00
|
|
|
"uuid": "^9.0.0"
|
2021-03-05 09:34:01 +11:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-27 23:01:52 +10:00
|
|
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
2021-03-15 16:22:26 +11:00
|
|
|
"@types/app-root-path": "^1.2.4",
|
2021-03-22 15:05:03 +11:00
|
|
|
"@types/chai": "^4.2.15",
|
2022-06-21 13:23:42 +10:00
|
|
|
"@types/debug": "^4.1.7",
|
2022-02-03 15:57:36 +11:00
|
|
|
"@types/mocha": "^9.1.0",
|
2022-01-03 01:34:22 +00:00
|
|
|
"@types/node": "^17.0.6",
|
2021-03-11 11:11:37 +11:00
|
|
|
"@types/tail": "^2.0.0",
|
2021-04-07 11:04:30 +10:00
|
|
|
"@types/uuid": "^8.3.0",
|
2022-01-03 09:28:05 +11:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
|
|
"@typescript-eslint/parser": "^5.8.1",
|
2021-03-15 16:22:26 +11:00
|
|
|
"app-root-path": "^3.0.0",
|
2021-03-22 15:05:03 +11: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-05 09:34:01 +11:00
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
2022-01-03 09:28:05 +11:00
|
|
|
"eslint-plugin-functional": "^4.0.2",
|
|
|
|
"eslint-plugin-import": "^2.25.3",
|
2021-12-21 12:07:13 +11:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2021-03-17 15:34:58 +11:00
|
|
|
"fast-check": "^2.14.0",
|
2022-01-24 11:53:45 +01:00
|
|
|
"gh-pages": "^3.2.3",
|
2022-05-20 23:40:56 +10:00
|
|
|
"ignore-loader": "^0.1.2",
|
2022-02-14 09:26:22 +11:00
|
|
|
"isomorphic-fetch": "^3.0.0",
|
2022-02-16 12:11:54 +11:00
|
|
|
"jsdom": "^19.0.0",
|
|
|
|
"jsdom-global": "^3.0.2",
|
2022-01-27 15:25:17 +11:00
|
|
|
"karma": "^6.3.12",
|
2021-07-14 11:40:15 +10:00
|
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
|
|
"karma-mocha": "^2.0.1",
|
2022-05-20 23:40:56 +10:00
|
|
|
"karma-webpack": "^5.0.0",
|
2022-01-02 22:47:14 +00:00
|
|
|
"mocha": "^9.1.3",
|
2021-03-05 09:34:01 +11:00
|
|
|
"npm-run-all": "^4.1.5",
|
2022-10-06 16:29:21 +00:00
|
|
|
"p-timeout": "^6.0.0",
|
2022-02-01 12:54:54 +11:00
|
|
|
"portfinder": "^1.0.28",
|
2021-03-05 09:34:01 +11:00
|
|
|
"prettier": "^2.1.1",
|
2021-10-11 15:03:13 +11:00
|
|
|
"process": "^0.11.10",
|
2022-09-05 14:39:24 +10:00
|
|
|
"protons": "^5.1.0",
|
2022-01-03 23:20:32 +00:00
|
|
|
"puppeteer": "^13.0.1",
|
2022-05-27 23:01:52 +10:00
|
|
|
"rollup": "^2.75.0",
|
2021-03-11 11:11:37 +11:00
|
|
|
"tail": "^2.2.0",
|
2022-08-24 15:25:37 +10:00
|
|
|
"ts-loader": "^9.3.1",
|
|
|
|
"ts-node": "^10.9.1",
|
2022-09-20 15:38:11 +00:00
|
|
|
"typescript": "^4.6.3"
|
2021-03-05 09:34:01 +11:00
|
|
|
},
|
2022-11-21 11:02:39 +11:00
|
|
|
"peerDependencies": {
|
|
|
|
"@multiformats/multiaddr": "^11.0.6"
|
|
|
|
},
|
|
|
|
"peerDependenciesMeta": {
|
|
|
|
"@multiformats/multiaddr": {
|
|
|
|
"optional": true
|
|
|
|
}
|
|
|
|
},
|
2022-11-02 15:05:12 +11:00
|
|
|
"typedoc": {
|
|
|
|
"entryPoint": "./src/index.ts"
|
|
|
|
},
|
2021-03-05 09:34:01 +11:00
|
|
|
"files": [
|
2022-07-26 15:18:03 +10:00
|
|
|
"dist",
|
2022-08-06 00:36:46 +10:00
|
|
|
"bundle",
|
2022-06-16 10:31:02 +10:00
|
|
|
"src/*.ts",
|
2022-05-23 15:12:37 +10:00
|
|
|
"src/lib/**/*.ts",
|
|
|
|
"src/proto/**/*.ts",
|
2021-03-05 09:34:01 +11:00
|
|
|
"!**/*.spec.*",
|
|
|
|
"!**/*.json",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
2022-10-30 21:12:01 +11:00
|
|
|
]
|
2021-03-05 09:34:01 +11:00
|
|
|
}
|