-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
122 lines (122 loc) · 2.64 KB
/
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "remix-hono",
"version": "0.0.18",
"license": "MIT",
"description": "Hono middlewares for Remix",
"author": "Sergio Xalambrí <[email protected]> (https://sergiodxa.com/)",
"keywords": [
"remix",
"remix-run",
"react-router",
"hono",
"cloudflare",
"cloudflare-pages"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sergiodxa"
}
],
"homepage": "https://github.com/sergiodxa/remix-hono#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sergiodxa/remix-hono.git"
},
"bugs": {
"url": "https://github.com/sergiodxa/remix-hono/issues"
},
"type": "module",
"exports": {
"./cloudflare": {
"types": "./build/cloudflare.d.ts",
"default": "./build/cloudflare.js"
},
"./handler": {
"types": "./build/handler.d.ts",
"default": "./build/handler.js"
},
"./i18next": {
"types": "./build/i18next.d.ts",
"default": "./build/i18next.js"
},
"./security": {
"types": "./build/security.d.ts",
"default": "./build/security.js"
},
"./session": {
"types": "./build/session.d.ts",
"default": "./build/session.js"
},
"./trailing-slash": {
"types": "./build/trailing-slash.d.ts",
"default": "./build/trailing-slash.js"
},
"./typed-env": {
"types": "./build/typed-env.d.ts",
"default": "./build/typed-env.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"sponsor": {
"url": "https://github.com/sponsors/sergiodxa"
},
"files": [
"src",
"build",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"quality": "biome check .",
"quality:fix": "biome check . --write --unsafe",
"exports": "bun run ./scripts/exports.ts"
},
"peerDependencies": {
"@react-router/cloudflare": "^7.0.1",
"hono": "^4.6.12",
"i18next": "^24.0.5",
"pretty-cache-header": "^1.0.0",
"react-router": "^7.0.1",
"remix-i18next": "^7.0.0",
"zod": "^3.0.0"
},
"peerDependenciesMeta": {
"react-router": {
"optional": true
},
"@react-router/cloudflare": {
"optional": true
},
"i18next": {
"optional": true
},
"remix-i18next": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20241205.0",
"@react-router/cloudflare": "^7.0.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.1.14",
"i18next": "^24.0.5",
"remix-i18next": "^7.0.0",
"typedoc": "^0.27.3",
"typedoc-plugin-mdn-links": "^4.0.3",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-tsconfig-paths": "^5.1.3",
"zod": "^3.22.4"
},
"trustedDependencies": [
"@biomejs/biome"
]
}