-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.11 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.11 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
{
"name": "@dotdo/workers",
"version": "0.0.1",
"private": true,
"description": "Cloudflare Workers for .do domains with multi-transport RPC support",
"author": "Nathan Clevenger",
"license": "MIT",
"type": "module",
"workspaces": [
"apps/*",
"workers/*",
"middleware/*",
"objects/*",
"snippets/*",
"packages/*",
"sdks/*",
"startups/*",
"integrations/*",
"auth/*",
"plugins/*",
"primitives/packages/*"
],
"scripts": {
"changeset": "changeset",
"build": "npm run build --workspaces",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -b",
"typecheck:strict": "tsc --noEmit",
"typecheck:all": "for pkg in packages/*/; do echo \"=== $pkg ===\" && cd \"$pkg\" && npx tsc --noEmit || true && cd ../.. ; done",
"lint": "eslint . --ext .ts,.tsx",
"clean": "rm -rf packages/*/dist node_modules/.cache",
"deploy": "npm run deploy --workspaces --if-present",
"deploy:staging": "npm run deploy --workspaces --if-present -- --env staging",
"deploy:production": "npm run deploy --workspaces --if-present -- --env production",
"version": "changeset version && tsx scripts/sync-service-versions.ts",
"publish": "tsx scripts/publish.ts",
"release": "pnpm build && pnpm version && pnpm publish",
"check-versions": "tsx scripts/get-npm-versions.ts",
"check-domains": "tsx scripts/check-domains.ts",
"test:e2e": "vitest run --config tests/vitest.config.ts",
"prerelease": "pnpm check-domains && pnpm check-versions",
"lint:packages": "tsx scripts/lint-package-json.ts"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@cloudflare/vitest-pool-workers": "^0.11.1",
"@cloudflare/workers-types": "^4.20240925.0",
"@eslint/js": "^9.39.2",
"@types/node": "^20.19.27",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.52.0",
"vitest": "^3.2.4",
"wrangler": "^4.54.0"
},
"engines": {
"node": ">=18.0.0"
}
}