-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.21 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.21 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
{
"name": "@opennextjs/cloudflare",
"description": "Cloudflare builder for next apps",
"version": "1.19.5",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"build": "pnpm clean && tsc",
"build:watch": "tsc -w",
"lint:check": "eslint",
"lint:fix": "eslint --cache --fix",
"ts:check": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest"
},
"bin": {
"opennextjs-cloudflare": "dist/cli/index.js"
},
"main": "./dist/api/index.js",
"types": "./dist/api/index.d.ts",
"exports": {
".": {
"import": "./dist/api/index.js",
"types": "./dist/api/index.d.ts",
"default": "./dist/api/index.js"
},
"./*": {
"import": "./dist/api/*.js",
"types": "./dist/api/*.d.ts",
"default": "./dist/api/*.js"
}
},
"files": [
"README.md",
"dist",
"templates"
],
"repository": {
"type": "git",
"url": "git+https://github.com/opennextjs/opennextjs-cloudflare.git",
"directory": "packages/cloudflare"
},
"keywords": [
"opennextjs-cloudflare",
"cloudflare",
"workers",
"next.js"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/opennextjs/opennextjs-cloudflare/issues"
},
"homepage": "https://github.com/opennextjs/opennextjs-cloudflare",
"dependencies": {
"@ast-grep/napi": "^0.40.5",
"@dotenvx/dotenvx": "catalog:",
"@opennextjs/aws": "3.10.4",
"ci-info": "^4.2.0",
"cloudflare": "^4.4.1",
"comment-json": "^4.5.1",
"enquirer": "^2.4.1",
"glob": "catalog:",
"ts-tqdm": "^0.8.6",
"yargs": "catalog:"
},
"devDependencies": {
"@cloudflare/workers-types": "catalog:",
"@eslint/js": "catalog:",
"@tsconfig/strictest": "catalog:",
"@types/mock-fs": "catalog:",
"@types/node": "catalog:",
"@types/picomatch": "^4.0.0",
"@types/yargs": "catalog:",
"diff": "^8.0.2",
"esbuild": "catalog:",
"eslint": "catalog:",
"eslint-plugin-import": "catalog:",
"eslint-plugin-simple-import-sort": "catalog:",
"eslint-plugin-unicorn": "catalog:",
"globals": "catalog:",
"mock-fs": "catalog:",
"next": "catalog:",
"picomatch": "^4.0.2",
"rimraf": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"next": ">=15.5.15 <16 || >=16.2.3",
"wrangler": "catalog:"
}
}