-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
package.json
45 lines (45 loc) · 980 Bytes
/
package.json
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": "@remix-run/cloudflare",
"version": "2.15.1",
"description": "Cloudflare platform abstractions for Remix",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/remix-run/remix",
"directory": "packages/remix-cloudflare"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"tsc": "tsc"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.1.3",
"@remix-run/server-runtime": "workspace:*"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"typescript": "^5.1.0"
},
"peerDependencies": {
"@cloudflare/workers-types": "^4.0.0",
"typescript": "^5.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
]
}