-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.64 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.64 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
{
"name": "adblock-compiler",
"version": "0.86.0",
"description": "Compiler-as-a-Service for adblock filter lists",
"homepage": "https://adblock-compiler.jayson-knight.workers.dev/",
"type": "module",
"scripts": {
"ui:build": "pnpm --filter adblock-frontend run build",
"ui:dev": "pnpm --filter adblock-frontend run start",
"ui:test": "pnpm --filter adblock-frontend run test",
"ui:lint": "pnpm --filter adblock-frontend run lint",
"build:worker": "pnpm install && pnpm --filter adblock-frontend run build",
"tail": "wrangler tail adblock-compiler --format=pretty",
"tail:worker": "wrangler tail adblock-compiler --format=pretty",
"tail:tail": "wrangler tail adblock-tail --format=pretty",
"test:worker:vitest": "vitest --config vitest.worker.config.ts"
},
"packageManager": "pnpm@10.31.0",
"_syncNote": "Dependency versions here must match those pinned in deno.json's import map; keep them in sync (for example via the existing version:sync-style task).",
"dependencies": {
"@adguard/agtree": "^4.0.4",
"@hono/zod-openapi": "^1.2.2",
"@hono/zod-validator": "^0.4.3",
"@neondatabase/serverless": "^0.10.0",
"@opentelemetry/api": "^1.9.1",
"@prisma/adapter-d1": "^7.5.0",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@sentry/cloudflare": "10.43.0",
"@trpc/client": "^11.15.1",
"@trpc/server": "^11.15.1",
"better-auth": "^1.5.6",
"cloudflare": "^5.2.0",
"hono": "^4.12.12",
"jose": "^6.2.1",
"svix": "^1.89.0",
"zod": "^4.3.6"
},
"devDependencies": {
"agents": "^0.8.0",
"@cloudflare/containers": "^0.1.1",
"@cloudflare/playwright": "^1.2.0",
"@cloudflare/playwright-mcp": "^0.0.5",
"@cloudflare/workers-types": "^4.20260413.1",
"@cloudflare/vitest-pool-workers": "^0.14.2",
"prisma": "7.5.0",
"vitest": "^4.1.0",
"wrangler": "^4.83.0"
},
"pnpm": {
"overrides": {
"@opentelemetry/api": "^1.9.1",
"vite": "7.3.2",
"undici@>=7.0.0 <7.24.0": "7.24.4",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"path-to-regexp@<0.1.13": "0.1.13",
"brace-expansion@>=2.0.0 <2.0.3": "2.0.3",
"hono": "4.12.12",
"@hono/node-server": "1.19.13",
"lodash": "4.18.1",
"serialize-javascript": "7.0.5",
"defu": "6.1.5",
"effect": "3.20.0",
"jose@<6.2.2": "6.2.2"
}
}
}