-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.55 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.55 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
{
"name": "@node-core/platform-cloudflare",
"version": "1.0.0",
"private": true,
"type": "module",
"exports": {
"./analytics": "./src/analytics.tsx",
"./image-loader": "./src/image-loader.ts",
"./instrumentation": "./src/instrumentation.ts",
"./next.platform.config": "./next.platform.config.mjs",
"./playwright.platform.config": "./playwright.platform.config.mjs",
"./worker-entrypoint": "./src/worker-entrypoint.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/nodejs/nodejs.org",
"directory": "apps/cloudflare"
},
"scripts": {
"cloudflare:build:worker": "cd ../site && opennextjs-cloudflare build --openNextConfigPath ../cloudflare/open-next.config.ts --config ../cloudflare/wrangler.jsonc",
"cloudflare:deploy": "cd ../site && opennextjs-cloudflare deploy --openNextConfigPath ../cloudflare/open-next.config.ts --config ../cloudflare/wrangler.jsonc",
"cloudflare:preview": "cd ../site && wrangler dev --config ../cloudflare/wrangler.jsonc",
"lint:types": "tsc --noEmit"
},
"dependencies": {
"@flarelabs-net/wrangler-build-time-fs-assets-polyfilling": "^0.0.1",
"@opennextjs/cloudflare": "^1.19.3",
"@sentry/cloudflare": "^10.49.0",
"wrangler": "^4.77.0"
},
"peerDependencies": {
"next": "catalog:",
"react": "catalog:"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260418.1",
"@playwright/test": "^1.58.2",
"@types/node": "catalog:",
"@types/react": "catalog:",
"typescript": "catalog:"
},
"engines": {
"node": ">=20"
}
}