-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.25 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
{
"name": "cloudflare-tools",
"private": true,
"description": "Effect-native developer tooling for Cloudflare Workers.",
"license": "MIT",
"author": {
"name": "John Royal",
"email": "john@alchemy.run",
"url": "https://distilled.cloud"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alchemy-run/cloudflare-tools.git"
},
"workspaces": {
"packages": [
"packages/*",
"packages/vendor/*",
"packages/tools/*",
"fixtures/*"
],
"catalogs": {
"effect": {
"@effect/platform-bun": ">=4.0.0-beta.78 || >=4.0.0",
"@effect/platform-node": ">=4.0.0-beta.78 || >=4.0.0",
"@effect/sql-pg": ">=4.0.0-beta.78 || >=4.0.0",
"@effect/vitest": ">=4.0.0-beta.78 || >=4.0.0",
"effect": ">=4.0.0-beta.78 || >=4.0.0"
},
"workers": {
"@cloudflare/workers-types": "^4.20260310.1",
"miniflare": "^4.20260329.0",
"workerd": "1.20260526.1"
}
},
"catalog": {
"@alchemy.run/node-utils": "^0.0.5",
"@distilled.cloud/cloudflare": "^0.24.5",
"@playwright/test": "^1.52.0",
"rolldown": "^1.0.1",
"tsdown": "^0.22.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.1"
}
},
"type": "module",
"scripts": {
"build": "turbo run build --filter='@distilled.cloud/*'",
"dev": "turbo run dev --filter='@distilled.cloud/*'",
"check": "bun run format && bun run lint && turbo run typecheck",
"check:write": "bun run format:write && bun run lint:write && turbo run typecheck",
"format": "oxfmt format --check .",
"format:write": "oxfmt format .",
"lint": "oxlint lint . --ignore-pattern 'workers-sdk'",
"lint:write": "oxlint lint . --ignore-pattern 'workers-sdk' --fix",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"submodules:init": "git submodule update --init --recursive",
"submodules:update": "git submodule update --remote --recursive"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/node": "^24.12.0",
"drizzle-orm": "^0.45.2",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"postgres": "^3.4.9",
"turbo": "^2.9.16",
"typescript": "catalog:"
},
"packageManager": "bun@1.3.13"
}