2021-03-04 22:34:01 +00:00
|
|
|
{
|
2022-10-30 23:57:26 +00:00
|
|
|
"name": "@waku/core",
|
2024-01-10 22:27:39 +00:00
|
|
|
"version": "0.0.26",
|
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
|
|
|
},
|
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/*"
|
2023-05-11 08:38:00 +00:00
|
|
|
],
|
|
|
|
"constants/*": [
|
|
|
|
"dist/constants/*"
|
2022-08-17 09:02:19 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
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",
|
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-06-08 19:05:22 +00:00
|
|
|
"check:lint": "eslint src *.js",
|
2022-10-30 22:35:59 +00:00
|
|
|
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
2024-01-02 11:00:18 +00:00
|
|
|
"test": "NODE_ENV=test run-s test:*",
|
|
|
|
"test:node": "NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha",
|
|
|
|
"test:browser": "NODE_ENV=test 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": {
|
2023-09-22 09:07:34 +00:00
|
|
|
"node": ">=18"
|
2021-03-04 22:34:01 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-02-15 18:35:23 +00:00
|
|
|
"@libp2p/ping": "^1.0.11",
|
2023-08-30 15:54:13 +00:00
|
|
|
"@noble/hashes": "^1.3.2",
|
2024-01-10 22:27:39 +00:00
|
|
|
"@waku/enr": "^0.0.20",
|
|
|
|
"@waku/interfaces": "0.0.21",
|
2024-01-24 12:54:03 +00:00
|
|
|
"@waku/message-hash": "^0.1.10",
|
2024-01-10 22:27:39 +00:00
|
|
|
"@waku/proto": "0.0.6",
|
|
|
|
"@waku/utils": "0.0.14",
|
2023-01-19 21:49:11 +00:00
|
|
|
"debug": "^4.3.4",
|
2023-11-23 23:20:49 +00:00
|
|
|
"it-all": "^3.0.4",
|
2024-01-15 23:35:56 +00:00
|
|
|
"it-length-prefixed": "^9.0.4",
|
2023-06-02 16:05:51 +00:00
|
|
|
"it-pipe": "^3.0.1",
|
2023-10-02 04:59:45 +00:00
|
|
|
"p-event": "^6.0.0",
|
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-03-20 21:39:40 +00:00
|
|
|
"@multiformats/multiaddr": "^12.0.0",
|
2023-11-27 11:11:15 +00:00
|
|
|
"@rollup/plugin-commonjs": "^25.0.7",
|
2023-02-10 02:14:02 +00:00
|
|
|
"@rollup/plugin-json": "^6.0.0",
|
2023-10-23 07:50:20 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
2023-11-27 11:26:31 +00:00
|
|
|
"@types/chai": "^4.3.11",
|
2023-12-05 21:10:49 +00:00
|
|
|
"@types/debug": "^4.1.12",
|
2024-02-05 21:41:46 +00:00
|
|
|
"@types/mocha": "^10.0.6",
|
2024-02-07 16:07:27 +00:00
|
|
|
"@types/uuid": "^9.0.8",
|
2023-03-02 04:24:08 +00:00
|
|
|
"@waku/build-utils": "*",
|
2023-11-27 11:26:31 +00:00
|
|
|
"chai": "^4.3.10",
|
2024-02-05 21:57:20 +00:00
|
|
|
"cspell": "^8.3.2",
|
2024-02-08 23:06:00 +00:00
|
|
|
"fast-check": "^3.15.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",
|
2024-02-13 16:51:57 +00:00
|
|
|
"mocha": "^10.3.0",
|
2021-03-04 22:34:01 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2021-10-11 04:03:13 +00:00
|
|
|
"process": "^0.11.10",
|
2024-02-29 00:16:50 +00:00
|
|
|
"rollup": "^4.12.0"
|
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",
|
2024-01-16 00:12:01 +00:00
|
|
|
"libp2p": "^1.1.2"
|
2022-11-21 00:02:39 +00:00
|
|
|
},
|
|
|
|
"peerDependenciesMeta": {
|
|
|
|
"@multiformats/multiaddr": {
|
|
|
|
"optional": true
|
|
|
|
}
|
|
|
|
},
|
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
|
|
|
}
|