-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.26 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.26 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "rw-sdk-monorepo",
"version": "1.0.0",
"private": true,
"description": "Redwood SDK monorepo",
"scripts": {
"format": "prettier --write ./sdk/src starter/src addons/passkey/src",
"knip": "knip",
"check": "pnpm build:sdk && pnpm typecheck:addons && pnpm typecheck:starter && pnpm build:community && pnpm typecheck:community",
"build:sdk": "(cd sdk && pnpm build)",
"build:community": "(cd community && pnpm build)",
"typecheck:addons": "for d in addons/*/; do if [ -f \"$d/tsconfig.json\" ]; then pnpm exec tsc --project \"$d/tsconfig.json\"; fi; done",
"typecheck:starter": "pnpm exec tsc --project starter/tsconfig.json",
"typecheck:community": "pnpm exec tsc --project community/tsconfig.json && for d in community/playground/*/; do if [ -f \"$d/tsconfig.json\" ]; then (cd \"$d\" && npx wrangler types --include-runtime false && pnpm exec tsc); fi; done",
"setup:wrangler": "./scripts/setup-wrangler-auth.sh",
"test:e2e": "cd sdk && pnpm test:e2e",
"setup:e2e": "cd sdk && pnpm setup:e2e",
"unrelease": "node scripts/unrelease.mjs"
},
"engines": {
"node": ">=24.14.0",
"pnpm": ">=10.31.0"
},
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@antfu/eslint-config": "^7.7.0",
"@manypkg/cli": "^0.25.1",
"@types/node": "~25.5.0",
"eslint": "^10.0.3",
"expect-type": "^1.3.0",
"knip": "~6.1.1",
"pnpm": "^10.33.0",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2",
"wrangler": "^4.77.0"
},
"pnpm": {
"overrides": {
"@hono/node-server@1.19.11": "1.19.13",
"@hono/node-server@1.19.9": "1.19.13",
"brace-expansion@>=5.0.0 <5.0.5": "5.0.5",
"@modelcontextprotocol/sdk": "1.27.1",
"ajv@6.12.6": "8.18.0",
"basic-ftp@5.0.5": "5.2.1",
"basic-ftp@5.2.0": "5.2.1",
"body-parser@2.2.0": "2.2.2",
"devalue": "5.6.4",
"diff": "8.0.3",
"express-rate-limit@8.2.1": "8.2.2",
"esbuild@0.18.20": "0.27.3",
"esbuild@0.19.12": "0.27.3",
"flatted@3.3.3": "3.4.2",
"glob@10.4.5": "13.0.6",
"h3": "1.15.9",
"hono": "4.12.12",
"js-yaml@4.1.0": "4.1.1",
"mdast-util-to-hast@13.2.0": "13.2.1",
"minimatch@9.0.1": "10.2.4",
"minimatch@9.0.5": "10.2.4",
"minimatch@10.1.1": "10.2.4",
"minimatch@10.2.0": "10.2.4",
"qs@6.14.0": "6.15.0",
"rollup@4.55.1": "4.59.0",
"serialize-javascript@6.0.2": "7.0.5",
"serialize-javascript@7.0.3": "7.0.5",
"path-to-regexp@8.3.0": "8.4.0",
"svgo@4.0.0": "4.0.1",
"tar-fs@3.1.0": "3.1.2",
"tar": "7.5.11",
"tmp@0.2.3": "0.2.5",
"undici": "7.24.0",
"picomatch@2.3.1": "2.3.2",
"picomatch@4.0.3": "4.0.4",
"smol-toml@1.6.0": "1.6.1",
"vite@7.3.1": "7.3.2",
"webpack@5.97.1": "5.105.4",
"yaml@1.10.2": "1.10.3",
"yaml@2.8.2": "2.8.3",
"wrangler@4.77.0": "4.80.0",
"wrangler@4.79.0": "4.80.0",
"@cloudflare/vite-plugin@1.30.1": "1.31.0",
"@cloudflare/workers-types@4.20260331.1": "4.20260405.1"
},
"onlyBuiltDependencies": [
"@prisma/client",
"esbuild",
"sharp",
"unrs-resolver",
"workerd"
]
}
}