2022-11-02 16:56:11 +11:00
|
|
|
{
|
|
|
|
"name": "@waku/enr",
|
2024-09-06 01:42:16 +02:00
|
|
|
"version": "0.0.26",
|
2022-11-02 16:56:11 +11:00
|
|
|
"description": "ENR (EIP-778) 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/enr#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 14:55:17 +11:00
|
|
|
"fix:lint": "eslint src *.js --fix",
|
2022-11-02 16:56:11 +11: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",
|
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",
|
2022-11-02 16:56:11 +11: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"
|
2022-11-02 16:56:11 +11:00
|
|
|
},
|
|
|
|
"engines": {
|
2024-10-09 15:31:53 +05:30
|
|
|
"node": ">=18"
|
2022-11-02 16:56:11 +11:00
|
|
|
},
|
2022-11-02 22:25:47 +11:00
|
|
|
"dependencies": {
|
2023-02-10 13:06:33 +11:00
|
|
|
"@ethersproject/rlp": "^5.7.0",
|
2024-08-14 04:23:04 +05:30
|
|
|
"@libp2p/crypto": "^4.1.6",
|
|
|
|
"@libp2p/peer-id": "^4.2.1",
|
2023-03-20 21:39:40 +00:00
|
|
|
"@multiformats/multiaddr": "^12.0.0",
|
2023-02-10 11:22:25 +11:00
|
|
|
"@noble/secp256k1": "^1.7.1",
|
2024-09-06 01:42:16 +02:00
|
|
|
"@waku/utils": "0.0.20",
|
2023-01-19 22:49:11 +01:00
|
|
|
"debug": "^4.3.4",
|
2023-10-05 14:12:20 +05:30
|
|
|
"js-sha3": "^0.9.2"
|
2022-11-02 22:25:47 +11:00
|
|
|
},
|
2022-11-02 16:56:11 +11:00
|
|
|
"devDependencies": {
|
2024-08-14 04:23:04 +05:30
|
|
|
"@libp2p/peer-id-factory": "^4.2.1",
|
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",
|
2024-02-05 22:41:46 +01:00
|
|
|
"@types/mocha": "^10.0.6",
|
2023-03-02 15:24:08 +11:00
|
|
|
"@waku/build-utils": "*",
|
2024-09-06 01:42:16 +02:00
|
|
|
"@waku/interfaces": "0.0.27",
|
2023-11-27 12:26:31 +01:00
|
|
|
"chai": "^4.3.10",
|
2024-04-04 16:42:51 +03:00
|
|
|
"cspell": "^8.6.1",
|
2024-07-11 23:51:25 +05:30
|
|
|
"fast-check": "^3.19.0",
|
2024-02-13 22:21:57 +05:30
|
|
|
"mocha": "^10.3.0",
|
2022-11-02 16:56:11 +11:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-02-10 16:30:18 +11:00
|
|
|
"process": "^0.11.10",
|
2024-02-29 01:16:50 +01:00
|
|
|
"rollup": "^4.12.0",
|
2024-02-07 01:38:10 +01:00
|
|
|
"uint8arrays": "^5.0.1"
|
2022-11-02 16:56:11 +11:00
|
|
|
},
|
2024-03-12 02:18:40 +01:00
|
|
|
"peerDependencies": {
|
|
|
|
"@multiformats/multiaddr": "^12.0.0"
|
|
|
|
},
|
|
|
|
"peerDependenciesMeta": {
|
|
|
|
"@multiformats/multiaddr": {
|
|
|
|
"optional": true
|
|
|
|
}
|
|
|
|
},
|
2022-11-02 16:56:11 +11:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"bundle",
|
2022-11-03 21:37:55 +11:00
|
|
|
"src/**/*.ts",
|
2022-11-02 16:56:11 +11:00
|
|
|
"!**/*.spec.*",
|
|
|
|
"!**/*.json",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
|
|
|
]
|
|
|
|
}
|