this repo has no description
at main 43 lines 1.1 kB view raw
1{ 2 "name": "pds", 3 "version": "1.0.0", 4 "description": "Cirrus – AT Protocol PDS on Cloudflare Workers with Attoshi", 5 "type": "module", 6 "private": true, 7 "dependencies": { 8 "@getcirrus/pds": "^0.10.0", 9 "@atcute/cbor": "^2.2.8", 10 "@atcute/cid": "^2.3.0", 11 "@atcute/tid": "^1.1.1", 12 "@atproto/crypto": "^0.4.5", 13 "@noble/hashes": "^1.6.1", 14 "hono": "^4.11.3" 15 }, 16 "devDependencies": { 17 "@cloudflare/vite-plugin": "^1.17.0", 18 "@cloudflare/workers-types": "^4.20260115.0", 19 "@noble/curves": "^1.8.1", 20 "@types/bun": "^1.2.4", 21 "@types/node": "^22", 22 "typescript": "^5.9.3", 23 "vite": "^6.4.1", 24 "wrangler": "^4.54.0" 25 }, 26 "scripts": { 27 "dev": "vite dev", 28 "build": "vite build", 29 "deploy": "vite build && wrangler deploy", 30 "preview": "vite preview", 31 "pds": "pds", 32 "wrangler": "wrangler", 33 "types": "wrangler types", 34 "test": "bun test", 35 "test:unit": "bun test tests/unit", 36 "test:integration": "bun test tests/integration", 37 "test:e2e": "bun test tests/e2e", 38 "test:watch": "bun test --watch" 39 }, 40 "keywords": [], 41 "author": "", 42 "license": "MIT" 43}