forked from emdash-cms/emdash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.47 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
{
"name": "@emdash-cms/labeler",
"version": "0.0.2",
"private": true,
"description": "Metadata-only moderation labeler for the EmDash plugin registry.",
"type": "module",
"scripts": {
"dev": "pnpm locale:extract && pnpm locale:compile && vite dev",
"build": "pnpm locale:extract && pnpm locale:compile && vite build",
"preview": "vite preview",
"deploy": "pnpm build && wrangler deploy",
"typecheck": "tsgo --noEmit && tsgo --noEmit -p tsconfig.admin.json && tsgo --noEmit -p evals/tsconfig.json",
"test": "vitest run && vitest run --config vitest.ai.config.ts && pnpm locale:extract && pnpm locale:compile && vitest run --config vitest.ui.config.ts",
"test:ai": "vitest run --config vitest.ai.config.ts",
"eval:sweep": "vitest run --config vitest.sweep.config.ts",
"eval:image:server": "wrangler dev -c evals/wrangler.sweep.jsonc --port 8790",
"eval:image:local": "node scripts/evaluate-local-images.mjs",
"locale:extract": "lingui extract --config lingui.config.ts --clean",
"locale:compile": "lingui compile --config lingui.config.ts --namespace es",
"types": "wrangler types",
"db:migrate:local": "wrangler d1 migrations apply emdash-labeler --local",
"db:migrate": "wrangler d1 migrations apply emdash-labeler --remote"
},
"dependencies": {
"@atcute/cbor": "catalog:",
"@atcute/crypto": "catalog:",
"@atcute/identity": "catalog:",
"@atcute/identity-resolver": "catalog:",
"@atcute/jetstream": "catalog:",
"@atcute/lexicons": "catalog:",
"@atcute/repo": "catalog:",
"@atcute/xrpc-server": "catalog:",
"@emdash-cms/registry-lexicons": "workspace:*",
"@emdash-cms/registry-moderation": "workspace:*",
"@emdash-cms/registry-verification": "workspace:*",
"@cloudflare/kumo": "catalog:",
"@lingui/core": "catalog:",
"@lingui/react": "catalog:",
"@phosphor-icons/react": "catalog:",
"hono": "catalog:",
"jose": "^6.1.3",
"marked": "^17.0.3",
"react": "catalog:",
"react-dom": "catalog:",
"ulidx": "^2.4.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "catalog:",
"@cloudflare/vitest-plugin": "catalog:",
"@lingui/babel-plugin-lingui-macro": "catalog:",
"@lingui/cli": "catalog:",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/react": "^16.3.3",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "^4.6.0",
"jsdom": "^26.1.0",
"tailwindcss": "^4.3.3",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"wrangler": "catalog:"
}
}