{ "name": "@atpkeyserver/client", "version": "0.2.0", "description": "Client library for ATP keyserver with end-to-end encryption", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" }, "./crypto": { "import": "./dist/crypto.js", "require": "./dist/crypto.cjs", "types": "./dist/crypto.d.ts" }, "./client": { "import": "./dist/client.js", "require": "./dist/client.cjs", "types": "./dist/client.d.ts" } }, "scripts": { "build": "bunx --bun tsdown", "dev": "bunx --bun tsdown --watch", "prepublishOnly": "bun run build", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "atproto", "encryption", "keyserver", "e2e", "bluesky" ], "author": "Juan D. Jara ", "license": "MIT", "repository": { "type": "git", "url": "https://codeberg.org/juandjara/atp-keyserver.git", "directory": "packages/client" }, "bugs": { "url": "https://codeberg.org/juandjara/atp-keyserver/issues" }, "homepage": "https://codeberg.org/juandjara/atp-keyserver#readme", "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=22.0.0" }, "dependencies": { "@atproto/lexicon": "^0.4.1", "@atproto/xrpc": "^0.6.1", "@noble/ciphers": "2.0.1", "lru-cache": "11.2.2", "multiformats": "^13.1.0" }, "devDependencies": { "@types/node": "^22.18.12", "tsdown": "^0.15.10", "typescript": "^5.9.3" } }