2022-12-07 06:05:30 +00:00
|
|
|
{
|
|
|
|
"name": "@waku/peer-exchange",
|
2023-08-02 11:02:57 +00:00
|
|
|
"version": "0.0.15",
|
2022-12-07 06:05:30 +00:00
|
|
|
"description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"module": "./dist/index.js",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"type": "module",
|
|
|
|
"author": "Waku Team",
|
|
|
|
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/peer-exchange#readme",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/waku-org/js-waku.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/waku-org/js-waku/issues"
|
|
|
|
},
|
|
|
|
"license": "MIT OR Apache-2.0",
|
|
|
|
"keywords": [
|
|
|
|
"waku",
|
|
|
|
"decentralized",
|
|
|
|
"secure",
|
|
|
|
"communication",
|
|
|
|
"web3",
|
|
|
|
"ethereum",
|
|
|
|
"dapps",
|
|
|
|
"privacy"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"build": "run-s build:**",
|
|
|
|
"build:esm": "tsc",
|
|
|
|
"build:bundle": "rollup --config rollup.config.js",
|
|
|
|
"fix": "run-s fix:*",
|
2023-02-28 03:55:17 +00:00
|
|
|
"fix:lint": "eslint src *.js --fix",
|
2022-12-07 06:05:30 +00:00
|
|
|
"check": "run-s check:*",
|
2023-02-28 03:55:17 +00:00
|
|
|
"check:lint": "eslint src *.js",
|
2022-12-07 06:05:30 +00:00
|
|
|
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
|
|
|
"check:tsc": "tsc -p tsconfig.dev.json",
|
|
|
|
"prepublish": "npm run build",
|
|
|
|
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=16"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-07-25 00:17:52 +00:00
|
|
|
"@libp2p/interfaces": "^3.3.2",
|
2023-08-02 11:02:57 +00:00
|
|
|
"@waku/core": "0.0.22",
|
|
|
|
"@waku/enr": "0.0.16",
|
2023-08-16 14:48:13 +00:00
|
|
|
"@waku/interfaces": "0.0.17",
|
2023-06-01 19:50:52 +00:00
|
|
|
"@waku/proto": "0.0.5",
|
2023-08-02 11:02:57 +00:00
|
|
|
"@waku/utils": "0.0.10",
|
2022-12-07 06:05:30 +00:00
|
|
|
"debug": "^4.3.4",
|
2023-06-05 16:07:51 +00:00
|
|
|
"it-all": "^3.0.2",
|
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"
|
2022-12-07 06:05:30 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-10 02:14:02 +00:00
|
|
|
"@rollup/plugin-commonjs": "^24.0.1",
|
|
|
|
"@rollup/plugin-json": "^6.0.0",
|
2023-08-16 17:34:48 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^15.1.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-08-12 10:41:59 +00:00
|
|
|
"cspell": "^7.0.0",
|
2022-12-07 06:05:30 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-05-04 05:59:08 +00:00
|
|
|
"rollup": "^3.21.3",
|
2023-02-10 05:47:08 +00:00
|
|
|
"ts-loader": "^9.4.2",
|
2023-05-17 05:58:36 +00:00
|
|
|
"typescript": "^5.0.4",
|
2023-02-09 03:21:06 +00:00
|
|
|
"uint8arraylist": "^2.4.3"
|
2022-12-07 06:05:30 +00:00
|
|
|
},
|
|
|
|
"typedoc": {
|
|
|
|
"entryPoint": "./src/index.ts"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"bundle",
|
|
|
|
"src/**/*.ts",
|
|
|
|
"!**/*.spec.*",
|
|
|
|
"!**/*.json",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
|
|
|
]
|
|
|
|
}
|