Secure storage and distribution of cryptographic keys in ATProto applications
1{
2 "name": "@atpkeyserver/server",
3 "version": "0.2.0",
4 "private": true,
5 "description": "Private key storage for ATProto",
6 "type": "module",
7 "scripts": {
8 "dev": "PORT=9000 DID=did:web:localhost:9000 bun --watch main.ts",
9 "debug": "PORT=9000 DID=did:web:localhost:9000 bun --inspect main.ts",
10 "start": "bun main.ts",
11 "format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\""
12 },
13 "dependencies": {
14 "@atcute/identity": "^1.1.1",
15 "@atcute/identity-resolver": "^1.1.4",
16 "@atcute/lexicons": "^1.2.2",
17 "@atcute/xrpc-server": "^0.1.3",
18 "@noble/ciphers": "^2.0.1",
19 "@noble/ed25519": "^2.1.0",
20 "itty-router": "^5.0.18"
21 },
22 "devDependencies": {
23 "@types/bun": "latest",
24 "prettier": "^3.6.2"
25 }
26}