-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.1 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@getcirrus/pds",
"version": "0.17.1",
"description": "Cirrus – A single-user AT Protocol PDS on Cloudflare Workers",
"type": "module",
"main": "dist/index.js",
"bin": {
"pds": "./dist/cli.js"
},
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsdown",
"test": "pnpm run test:unit && pnpm run test:cli",
"test:unit": "vitest run",
"test:cli": "vitest run --config vitest.config.cli.ts",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"check": "publint && attw --pack --ignore-rules=cjs-resolves-to-esm"
},
"dependencies": {
"@atcute/atproto": "^3.1.10",
"@atcute/bluesky": "^3.2.14",
"@atcute/cbor": "^2.2.8",
"@atcute/cid": "^2.3.0",
"@atcute/client": "^4.2.0",
"@atcute/identity": "^1.1.4",
"@atcute/identity-resolver": "^1.2.2",
"@atcute/lexicons": "^1.2.6",
"@atcute/tid": "^1.1.1",
"@atproto/crypto": "^0.4.5",
"@atproto/lex-cbor": "^0.0.3",
"@atproto/lex-data": "^0.0.3",
"@atproto/lex-json": "^0.0.11",
"@atproto/repo": "^0.8.12",
"@clack/prompts": "^0.11.0",
"@getcirrus/oauth-provider": "workspace:*",
"@simplewebauthn/server": "^13.2.2",
"bcryptjs": "^3.0.3",
"citty": "^0.1.6",
"hono": "^4.11.3",
"jose": "^6.1.3",
"picocolors": "^1.1.1",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@atproto/api": "^0.18.9",
"@cloudflare/vite-plugin": "^1.17.0",
"@cloudflare/vitest-pool-workers": "^0.16.9",
"@cloudflare/workers-types": "^4.20260524.1",
"@ipld/car": "^5.4.2",
"@types/qrcode": "^1.5.6",
"@types/ws": "^8.18.1",
"publint": "^0.3.16",
"tsdown": "^0.18.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "4.1.0-beta.1",
"wrangler": "^4.93.0",
"ws": "^8.18.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ascorbic/cirrus.git",
"directory": "packages/pds"
},
"peerDependencies": {
"wrangler": "^4.54.0"
},
"homepage": "https://github.com/ascorbic/cirrus",
"keywords": [
"atproto",
"bluesky",
"pds",
"cloudflare-workers"
],
"author": "Matt Kane",
"license": "MIT"
}