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