2022-11-02 05:56:11 +00:00
|
|
|
{
|
|
|
|
"name": "@waku/dns-discovery",
|
2023-07-26 19:47:04 +00:00
|
|
|
"version": "0.0.15",
|
2022-11-02 05:56:11 +00:00
|
|
|
"description": "DNS Peer Discovery (EIP-1459)",
|
|
|
|
"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/dns-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:*",
|
2023-02-28 03:55:17 +00:00
|
|
|
"fix:lint": "eslint src *.js --fix",
|
2022-11-02 05:56:11 +00:00
|
|
|
"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",
|
2023-02-11 21:25:11 +00:00
|
|
|
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build",
|
|
|
|
"test": "run-s test:*",
|
2023-04-03 05:59:07 +00:00
|
|
|
"test:node": "TS_NODE_PROJECT=./tsconfig.dev.json mocha",
|
|
|
|
"test:browser": "karma start karma.conf.cjs"
|
2022-11-02 05:56:11 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=16"
|
|
|
|
},
|
2022-11-03 03:11:42 +00:00
|
|
|
"dependencies": {
|
2023-07-25 00:17:52 +00:00
|
|
|
"@libp2p/interface-peer-discovery": "^2.0.0",
|
|
|
|
"@libp2p/interfaces": "^3.3.2",
|
2023-07-26 19:47:04 +00:00
|
|
|
"@waku/enr": "0.0.15",
|
|
|
|
"@waku/utils": "0.0.9",
|
2023-01-19 21:49:11 +00:00
|
|
|
"debug": "^4.3.4",
|
2022-11-03 03:11:42 +00:00
|
|
|
"dns-query": "^0.11.2",
|
2023-02-09 02:21:03 +00:00
|
|
|
"hi-base32": "^0.5.1",
|
2023-07-26 17:09:04 +00:00
|
|
|
"uint8arrays": "^4.0.4"
|
2022-11-03 03:11:42 +00:00
|
|
|
},
|
2022-11-02 05:56:11 +00:00
|
|
|
"devDependencies": {
|
2023-07-25 00:17:52 +00:00
|
|
|
"@libp2p/interface-peer-info": "^1.0.10",
|
|
|
|
"@libp2p/interface-peer-store": "^2.0.4",
|
|
|
|
"@libp2p/peer-id": "^2.0.4",
|
|
|
|
"@libp2p/peer-id-factory": "^2.0.4",
|
2023-03-20 21:39:40 +00:00
|
|
|
"@multiformats/multiaddr": "^12.0.0",
|
2023-02-10 02:14:02 +00:00
|
|
|
"@rollup/plugin-commonjs": "^24.0.1",
|
|
|
|
"@rollup/plugin-json": "^6.0.0",
|
2023-04-27 16:04:28 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
2023-02-10 04:37:25 +00:00
|
|
|
"@types/chai": "^4.3.4",
|
2023-03-02 04:24:08 +00:00
|
|
|
"@waku/build-utils": "*",
|
2023-07-26 19:47:04 +00:00
|
|
|
"@waku/interfaces": "0.0.16",
|
2023-02-10 03:02:02 +00:00
|
|
|
"chai": "^4.3.7",
|
2023-03-29 04:06:00 +00:00
|
|
|
"cspell": "^6.31.1",
|
2023-04-03 05:59:07 +00:00
|
|
|
"karma": "^6.4.1",
|
2023-07-27 19:12:12 +00:00
|
|
|
"karma-chrome-launcher": "^3.2.0",
|
2023-04-03 05:59:07 +00:00
|
|
|
"karma-mocha": "^2.0.1",
|
|
|
|
"karma-webpack": "^5.0.0",
|
2023-02-11 21:25:11 +00:00
|
|
|
"mocha": "^10.2.0",
|
2022-11-02 05:56:11 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-05-04 16:24:58 +00:00
|
|
|
"prettier": "^2.8.8",
|
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"
|
2022-11-02 05:56:11 +00:00
|
|
|
},
|
|
|
|
"typedoc": {
|
|
|
|
"entryPoint": "./src/index.ts"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"bundle",
|
2022-11-03 10:37:55 +00:00
|
|
|
"src/**/*.ts",
|
2022-11-02 05:56:11 +00:00
|
|
|
"!**/*.spec.*",
|
|
|
|
"!**/*.json",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
|
|
|
]
|
|
|
|
}
|