2021-03-05 09:34:01 +11:00
|
|
|
{
|
2022-10-31 10:57:26 +11:00
|
|
|
"name": "@waku/core",
|
2023-10-17 01:18:34 +11:00
|
|
|
"version": "0.0.24",
|
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}\"",
|
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",
|
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": {
|
2023-08-30 21:24:13 +05:30
|
|
|
"@noble/hashes": "^1.3.2",
|
2023-10-17 01:18:34 +11:00
|
|
|
"@waku/enr": "^0.0.18",
|
|
|
|
"@waku/interfaces": "0.0.19",
|
2023-06-02 05:50:52 +10:00
|
|
|
"@waku/proto": "0.0.5",
|
2023-10-17 01:18:34 +11:00
|
|
|
"@waku/utils": "0.0.12",
|
2023-01-19 22:49:11 +01:00
|
|
|
"debug": "^4.3.4",
|
2023-08-31 17:28:31 +02:00
|
|
|
"it-all": "^3.0.3",
|
2023-05-06 03:31:15 +00:00
|
|
|
"it-length-prefixed": "^9.0.1",
|
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-09-06 01:07:37 +02:00
|
|
|
"@rollup/plugin-commonjs": "^25.0.4",
|
2023-02-10 13:14:02 +11:00
|
|
|
"@rollup/plugin-json": "^6.0.0",
|
2023-08-16 23:04:48 +05:30
|
|
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
2023-08-17 21:31:37 +05:30
|
|
|
"@types/chai": "^4.3.5",
|
2023-09-04 21:57:31 +05:30
|
|
|
"@types/debug": "^4.1.8",
|
2023-02-10 15:32:38 +11:00
|
|
|
"@types/mocha": "^10.0.1",
|
2023-09-04 22:10:50 +05:30
|
|
|
"@types/uuid": "^9.0.3",
|
2023-03-02 15:24:08 +11:00
|
|
|
"@waku/build-utils": "*",
|
2023-02-10 14:02:02 +11:00
|
|
|
"chai": "^4.3.7",
|
2023-09-04 07:10:14 +00:00
|
|
|
"cspell": "^7.3.2",
|
2023-10-02 22:28:51 +05:30
|
|
|
"fast-check": "^3.13.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",
|
2023-02-10 13:59:44 +11:00
|
|
|
"mocha": "^10.2.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",
|
2023-09-21 10:57:37 +02:00
|
|
|
"rollup": "^3.29.2"
|
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",
|
2023-08-16 20:18:13 +05:30
|
|
|
"libp2p": "^0.46.3"
|
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
|
|
|
}
|