2021-03-04 22:34:01 +00:00
|
|
|
{
|
2022-10-30 23:57:26 +00:00
|
|
|
"name": "@waku/core",
|
2023-04-03 06:15:39 +00:00
|
|
|
"version": "0.0.16",
|
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
|
|
|
},
|
2022-08-19 13:05:03 +00:00
|
|
|
"./lib/predefined_bootstrap_nodes": {
|
|
|
|
"types": "./dist/lib/predefined_bootstrap_nodes.d.ts",
|
|
|
|
"import": "./dist/lib/predefined_bootstrap_nodes.js"
|
2022-09-01 04:29:31 +00:00
|
|
|
},
|
2022-12-06 01:49:02 +00:00
|
|
|
"./lib/message/version_0": {
|
|
|
|
"types": "./dist/lib/message/version_0.d.ts",
|
|
|
|
"import": "./dist/lib/message/version_0.js"
|
2022-09-19 03:50:29 +00:00
|
|
|
},
|
2022-12-06 01:49:02 +00:00
|
|
|
"./lib/message/topic_only_message": {
|
|
|
|
"types": "./dist/lib/message/topic_only_message.d.ts",
|
|
|
|
"import": "./dist/lib/message/topic_only_message.js"
|
2023-02-26 23:14:16 +00:00
|
|
|
},
|
|
|
|
"./lib/base_protocol": {
|
|
|
|
"types": "./dist/lib/base_protocol.d.ts",
|
|
|
|
"import": "./dist/lib/base_protocol.js"
|
2022-05-20 13:40:56 +00:00
|
|
|
}
|
2022-03-18 02:29:03 +00:00
|
|
|
},
|
2022-08-17 09:02:19 +00:00
|
|
|
"typesVersions": {
|
|
|
|
"*": {
|
|
|
|
"lib/*": [
|
|
|
|
"dist/lib/*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2022-05-20 13:40:56 +00:00
|
|
|
"type": "module",
|
2022-10-31 00:46:40 +00:00
|
|
|
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/core#readme",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-10-31 01:15:37 +00:00
|
|
|
"url": "https://github.com/waku-org/js-waku.git"
|
2022-10-31 00:46:40 +00:00
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/waku-org/js-waku/issues"
|
|
|
|
},
|
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-07-27 03:20:33 +00:00
|
|
|
"build": "run-s build:**",
|
2022-12-02 04:43:46 +00:00
|
|
|
"build:esm": "tsc",
|
2022-08-05 14:36:46 +00:00
|
|
|
"build:bundle": "rollup --config rollup.config.js",
|
2021-03-04 22:34:01 +00:00
|
|
|
"fix": "run-s fix:*",
|
2023-02-28 03:55:17 +00:00
|
|
|
"fix:lint": "eslint src *.js --fix",
|
2021-03-15 05:22:26 +00:00
|
|
|
"pretest": "run-s pretest:*",
|
2022-10-30 22:35:59 +00:00
|
|
|
"check": "run-s check:*",
|
2022-11-01 05:30:24 +00:00
|
|
|
"check:tsc": "tsc -p tsconfig.dev.json",
|
2023-02-28 03:55:17 +00:00
|
|
|
"check:lint": "eslint src *.js",
|
2022-10-30 22:35:59 +00:00
|
|
|
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
2022-05-19 06:00:57 +00:00
|
|
|
"test": "run-s test:*",
|
2022-08-24 05:25:37 +00:00
|
|
|
"test:node": "TS_NODE_PROJECT=./tsconfig.dev.json mocha",
|
2022-08-05 15:02:15 +00:00
|
|
|
"test:browser": "karma start karma.conf.cjs",
|
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-05-27 13:38:12 +00:00
|
|
|
"prepublish": "npm run build",
|
2022-11-04 03:42:24 +00:00
|
|
|
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
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": {
|
2023-02-09 02:21:03 +00:00
|
|
|
"@chainsafe/libp2p-gossipsub": "^6.1.0",
|
2023-03-20 21:36:46 +00:00
|
|
|
"@noble/hashes": "^1.3.0",
|
2023-04-03 06:15:39 +00:00
|
|
|
"@waku/interfaces": "0.0.11",
|
2023-03-24 23:22:44 +00:00
|
|
|
"@waku/proto": "0.0.4",
|
2023-04-03 06:15:39 +00:00
|
|
|
"@waku/utils": "0.0.4",
|
2023-01-19 21:49:11 +00:00
|
|
|
"debug": "^4.3.4",
|
2023-04-26 16:04:20 +00:00
|
|
|
"it-all": "^3.0.1",
|
2023-02-10 02:06:33 +00:00
|
|
|
"it-length-prefixed": "^8.0.4",
|
|
|
|
"it-pipe": "^2.0.5",
|
2022-07-25 03:13:47 +00:00
|
|
|
"p-event": "^5.0.1",
|
2023-02-09 03:21:06 +00:00
|
|
|
"uint8arraylist": "^2.4.3",
|
2022-11-18 15:58:49 +00:00
|
|
|
"uuid": "^9.0.0"
|
2021-03-04 22:34:01 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-09 02:33:51 +00:00
|
|
|
"@libp2p/interface-connection": "^3.0.8",
|
2023-03-27 16:10:31 +00:00
|
|
|
"@libp2p/interface-libp2p": "^1.1.2",
|
2023-02-09 02:33:51 +00:00
|
|
|
"@libp2p/interface-peer-id": "^2.0.1",
|
|
|
|
"@libp2p/interface-peer-store": "^1.2.8",
|
|
|
|
"@libp2p/interface-pubsub": "^3.0.6",
|
|
|
|
"@libp2p/interface-registrar": "^2.0.8",
|
2023-03-20 21:39:40 +00:00
|
|
|
"@multiformats/multiaddr": "^12.0.0",
|
2023-02-10 02:14:02 +00:00
|
|
|
"@rollup/plugin-commonjs": "^24.0.1",
|
|
|
|
"@rollup/plugin-json": "^6.0.0",
|
2023-04-27 16:04:28 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
2023-02-10 04:37:25 +00:00
|
|
|
"@types/chai": "^4.3.4",
|
2022-06-21 03:23:42 +00:00
|
|
|
"@types/debug": "^4.1.7",
|
2023-02-10 04:32:38 +00:00
|
|
|
"@types/mocha": "^10.0.1",
|
2023-03-10 16:08:28 +00:00
|
|
|
"@types/uuid": "^9.0.1",
|
2023-03-29 03:22:08 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
2023-02-10 03:52:20 +00:00
|
|
|
"@typescript-eslint/parser": "^5.51.0",
|
2023-03-02 04:24:08 +00:00
|
|
|
"@waku/build-utils": "*",
|
2023-02-10 03:02:02 +00:00
|
|
|
"chai": "^4.3.7",
|
2023-03-29 04:06:00 +00:00
|
|
|
"cspell": "^6.31.1",
|
2023-02-27 16:25:16 +00:00
|
|
|
"eslint": "^8.35.0",
|
2023-02-10 03:52:20 +00:00
|
|
|
"eslint-config-prettier": "^8.6.0",
|
2021-03-04 22:34:01 +00:00
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
2023-02-10 03:52:20 +00:00
|
|
|
"eslint-plugin-functional": "^5.0.4",
|
|
|
|
"eslint-plugin-import": "^2.27.5",
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2023-03-21 16:09:17 +00:00
|
|
|
"fast-check": "^3.7.1",
|
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",
|
2023-02-10 05:30:18 +00:00
|
|
|
"karma": "^6.4.1",
|
|
|
|
"karma-chrome-launcher": "^3.1.1",
|
2021-07-14 01:40:15 +00:00
|
|
|
"karma-mocha": "^2.0.1",
|
2022-05-20 13:40:56 +00:00
|
|
|
"karma-webpack": "^5.0.0",
|
2023-02-10 02:59:44 +00:00
|
|
|
"mocha": "^10.2.0",
|
2021-03-04 22:34:01 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-04-05 05:01:50 +00:00
|
|
|
"prettier": "^2.8.7",
|
2021-10-11 04:03:13 +00:00
|
|
|
"process": "^0.11.10",
|
2023-03-31 00:13:06 +00:00
|
|
|
"puppeteer": "^19.8.2",
|
2023-02-14 16:25:26 +00:00
|
|
|
"rollup": "^3.15.0",
|
2023-02-10 05:47:08 +00:00
|
|
|
"ts-loader": "^9.4.2",
|
2022-08-24 05:25:37 +00:00
|
|
|
"ts-node": "^10.9.1",
|
2023-02-10 02:49:03 +00:00
|
|
|
"typescript": "^4.9.5"
|
2021-03-04 22:34:01 +00:00
|
|
|
},
|
2022-11-21 00:02:39 +00:00
|
|
|
"peerDependencies": {
|
2023-03-20 21:39:40 +00:00
|
|
|
"@multiformats/multiaddr": "^12.0.0",
|
2023-02-09 02:33:51 +00:00
|
|
|
"libp2p": "^0.42.2"
|
2022-11-21 00:02:39 +00:00
|
|
|
},
|
|
|
|
"peerDependenciesMeta": {
|
|
|
|
"@multiformats/multiaddr": {
|
|
|
|
"optional": true
|
|
|
|
}
|
|
|
|
},
|
2022-11-02 04:05:12 +00:00
|
|
|
"typedoc": {
|
|
|
|
"entryPoint": "./src/index.ts"
|
|
|
|
},
|
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",
|
2023-03-24 22:43:40 +00:00
|
|
|
"src/**/*.ts",
|
2021-03-04 22:34:01 +00:00
|
|
|
"!**/*.spec.*",
|
|
|
|
"!**/*.json",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
2022-10-30 10:12:01 +00:00
|
|
|
]
|
2021-03-04 22:34:01 +00:00
|
|
|
}
|