a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto
bluesky
typescript
npm
1{
2 "type": "module",
3 "name": "@atcute/xrpc-server-bun",
4 "version": "0.1.1",
5 "description": "Bun WebSocket adapter for @atcute/xrpc-server",
6 "license": "0BSD",
7 "repository": {
8 "url": "https://github.com/mary-ext/atcute",
9 "directory": "packages/servers/xrpc-server-bun"
10 },
11 "publishConfig": {
12 "access": "public"
13 },
14 "files": [
15 "dist/",
16 "lib/",
17 "!lib/**/*.bench.ts",
18 "!lib/**/*.test.ts"
19 ],
20 "exports": {
21 ".": "./dist/index.js"
22 },
23 "scripts": {
24 "build": "tsgo --project tsconfig.build.json",
25 "test": "bun test",
26 "prepublish": "rm -rf dist; pnpm run build"
27 },
28 "peerDependencies": {
29 "@atcute/xrpc-server": "workspace:^"
30 },
31 "devDependencies": {
32 "@atcute/atproto": "workspace:^",
33 "@atcute/cbor": "workspace:^",
34 "@types/bun": "^1.3.5"
35 }
36}