js-waku/packages/discovery/package.json

110 lines
2.9 KiB
JSON
Raw Normal View History

{
"name": "@waku/discovery",
2024-04-30 15:50:00 +00:00
"version": "0.0.2",
"description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.",
"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/discovery#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:*",
"fix:lint": "eslint src *.js --fix",
"check": "run-s check:*",
"check:lint": "eslint src --ext .ts",
"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",
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"
},
"engines": {
2023-09-22 09:07:34 +00:00
"node": ">=18"
},
"dependencies": {
2024-04-30 15:50:00 +00:00
"@waku/interfaces": "0.0.24",
"@waku/proto": "^0.0.7",
"@waku/enr": "0.0.23",
"@waku/core": "0.0.29",
"@waku/utils": "0.0.17",
"debug": "^4.3.4",
"dns-query": "^0.11.2",
2023-02-09 02:21:03 +00:00
"hi-base32": "^0.5.1",
"uint8arrays": "^5.0.1"
},
"devDependencies": {
"@libp2p/peer-id": "^4.0.4",
"@libp2p/peer-id-factory": "^4.0.5",
"@multiformats/multiaddr": "^12.0.0",
"@rollup/plugin-commonjs": "^25.0.7",
2023-02-10 02:14:02 +00:00
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/chai": "^4.3.11",
"@types/node-localstorage": "^1.3.3",
"@waku/build-utils": "*",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"cspell": "^8.6.1",
"mocha": "^10.3.0",
"node-localstorage": "^3.0.5",
"npm-run-all": "^4.1.5",
"rollup": "^4.12.0",
"sinon": "^17.0.1"
},
"peerDependencies": {
"@waku/core": "0.0.27",
"@waku/enr": "0.0.21",
"@waku/interfaces": "0.0.22",
"@waku/proto": "0.0.6",
"@waku/utils": "0.0.15",
"@libp2p/interface": "^1.1.2"
},
"peerDependenciesMeta": {
"@waku/interfaces": {
"optional": true
},
"@libp2p/interface": {
"optional": true
}
},
"files": [
"dist",
"bundle",
2022-11-03 10:37:55 +00:00
"src/**/*.ts",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
]
}