-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.06 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
{
"name": "@emdash-cms/release-service",
"version": "0.0.1",
"private": true,
"description": "Cloudflare Worker for delegated EmDash registry releases.",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"deploy": "vite build && wrangler deploy",
"typecheck": "tsgo --noEmit && tsgo --noEmit -p tsconfig.ui.json",
"pretest": "vite build",
"test": "vitest run && pnpm run test:encryption-verification && pnpm run test:encryption-v2 && pnpm run test:ui",
"test:encryption-verification": "vitest run --config vitest.encryption-verification.config.ts",
"test:encryption-v2": "vitest run --config vitest.encryption-v2.config.ts",
"test:ui": "vitest run --config vitest.ui.config.ts",
"test:browser": "playwright test --config playwright.config.ts",
"types": "wrangler types"
},
"dependencies": {
"@atcute/atproto": "catalog:",
"@atcute/client": "catalog:",
"@atcute/identity-resolver": "catalog:",
"@atcute/lexicons": "catalog:",
"@atcute/oauth-node-client": "catalog:",
"@cloudflare/kumo": "catalog:",
"@emdash-cms/auth": "workspace:*",
"@emdash-cms/plugin-types": "workspace:*",
"@emdash-cms/registry-client": "workspace:*",
"@emdash-cms/registry-lexicons": "workspace:*",
"@emdash-cms/registry-verification": "workspace:*",
"@lingui/core": "catalog:",
"@lingui/message-utils": "catalog:",
"@lingui/react": "catalog:",
"jose": "^6.1.3",
"react": "catalog:",
"react-dom": "catalog:",
"semver": "catalog:",
"ulidx": "^2.4.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "catalog:",
"@cloudflare/vitest-plugin": "catalog:",
"@cloudflare/workers-types": "catalog:",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/react": "^16.3.0",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@types/semver": "catalog:",
"@types/node": "catalog:",
"@vitejs/plugin-react": "^4.6.0",
"jsdom": "^26.1.0",
"tailwindcss": "^4.1.10",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"wrangler": "catalog:"
}
}