UNPKG

kademlia-table

Version:

XOR based routing table used for P2P networks such as a Kademlia DHT.

59 lines (58 loc) 1.51 kB
{ "name": "kademlia-table", "version": "2.0.5", "description": "XOR based routing table used for P2P networks such as a Kademlia DHT.", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist/**" ], "scripts": { "check": "tsc --noEmit", "test": "jest", "build": "tsup src/index.ts --format esm,cjs --dts --treeshake" }, "dependencies": { "uint8array-tools": "^0.0.9" }, "devDependencies": { "@eslint/eslintrc": "^3.0.2", "@eslint/js": "^9.0.0", "@types/jest": "^29.5.12", "@types/node": "^20.12.5", "@typescript-eslint/eslint-plugin": "^6.21.0", "eslint": "^8.57.0", "eslint-config-standard-with-typescript": "^43.0.1", "eslint-plugin-import": "^2.29.1", "eslint-plugin-n": "^16.6.2", "eslint-plugin-promise": "^6.1.1", "globals": "^15.0.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "tsup": "^7.2.0", "typescript": "^5.4.4", "typescript-eslint": "^7.5.0" }, "keywords": [ "kademlia", "p2p", "k-bucket", "k-buckets", "xor", "routing", "distributed", "systems" ], "repository": { "type": "git", "url": "https://github.com/visionsofparadise/kademlia-table.git" }, "author": "visionsofparadise", "license": "MIT", "bugs": { "url": "https://github.com/visionsofparadise/kademlia-table/issues" }, "homepage": "https://github.com/visionsofparadise/kademlia-table" }