vxrn 1.1.392 → 1.1.393
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -13
- package/types/exports/serve.d.ts +6 -6
- package/types/serve/vercel.d.ts +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vxrn",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.393",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -56,22 +56,22 @@
|
|
|
56
56
|
"@babel/core": "^7.26.0",
|
|
57
57
|
"@babel/preset-typescript": "^7.26.0",
|
|
58
58
|
"@expo/config-plugins": "^8.0.8",
|
|
59
|
-
"@hono/node-server": "^1.
|
|
59
|
+
"@hono/node-server": "^1.13.7",
|
|
60
60
|
"@react-native/babel-plugin-codegen": "^0.76.5",
|
|
61
61
|
"@react-native/dev-middleware": "^0.76.5",
|
|
62
62
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
63
63
|
"@tamagui/react-native-svg": "^1.121.6",
|
|
64
64
|
"@vitejs/plugin-react-swc": "^3.7.0",
|
|
65
|
-
"@vxrn/debug": "1.1.
|
|
66
|
-
"@vxrn/query-string": "1.1.
|
|
67
|
-
"@vxrn/react-native-prebuilt": "1.1.
|
|
68
|
-
"@vxrn/resolve": "1.1.
|
|
69
|
-
"@vxrn/safe-area": "1.1.
|
|
70
|
-
"@vxrn/url-parse": "1.1.
|
|
71
|
-
"@vxrn/utils": "1.1.
|
|
72
|
-
"@vxrn/vendor": "1.1.
|
|
73
|
-
"@vxrn/vite-flow": "1.1.
|
|
74
|
-
"@vxrn/vite-native-swc": "1.1.
|
|
65
|
+
"@vxrn/debug": "1.1.393",
|
|
66
|
+
"@vxrn/query-string": "1.1.393",
|
|
67
|
+
"@vxrn/react-native-prebuilt": "1.1.393",
|
|
68
|
+
"@vxrn/resolve": "1.1.393",
|
|
69
|
+
"@vxrn/safe-area": "1.1.393",
|
|
70
|
+
"@vxrn/url-parse": "1.1.393",
|
|
71
|
+
"@vxrn/utils": "1.1.393",
|
|
72
|
+
"@vxrn/vendor": "1.1.393",
|
|
73
|
+
"@vxrn/vite-flow": "1.1.393",
|
|
74
|
+
"@vxrn/vite-native-swc": "1.1.393",
|
|
75
75
|
"citty": "^0.1.6",
|
|
76
76
|
"env-editor": "^1.1.0",
|
|
77
77
|
"es-module-lexer": "^1.3.0",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"find-node-modules": "^2.1.3",
|
|
80
80
|
"fs-extra": "^11.2.0",
|
|
81
81
|
"get-port-please": "^3.1.2",
|
|
82
|
-
"hono": "^4.
|
|
82
|
+
"hono": "^4.6.16",
|
|
83
83
|
"ip": "^2.0.1",
|
|
84
84
|
"lightningcss": "^1.27.0",
|
|
85
85
|
"metro-react-native-babel-preset": "^0.77.0",
|
package/types/exports/serve.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ export { loadEnv } from '../exports/loadEnv';
|
|
|
4
4
|
export * from '../utils/getServerEntry';
|
|
5
5
|
export { createProdServer } from './createServer';
|
|
6
6
|
export declare const serve: (optionsIn: VXRNServeOptions) => Promise<void | Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/"> | {
|
|
7
|
-
handler: (req: Request
|
|
8
|
-
GET: (req: Request
|
|
9
|
-
POST: (req: Request
|
|
10
|
-
PATCH: (req: Request
|
|
11
|
-
PUT: (req: Request
|
|
12
|
-
OPTIONS: (req: Request
|
|
7
|
+
handler: (req: Request) => Response | Promise<Response>;
|
|
8
|
+
GET: (req: Request) => Response | Promise<Response>;
|
|
9
|
+
POST: (req: Request) => Response | Promise<Response>;
|
|
10
|
+
PATCH: (req: Request) => Response | Promise<Response>;
|
|
11
|
+
PUT: (req: Request) => Response | Promise<Response>;
|
|
12
|
+
OPTIONS: (req: Request) => Response | Promise<Response>;
|
|
13
13
|
}>;
|
|
14
14
|
//# sourceMappingURL=serve.d.ts.map
|
package/types/serve/vercel.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { Hono } from 'hono';
|
|
2
2
|
import type { VXRNServeOptions } from '../types';
|
|
3
3
|
export declare function honoServeVercel(app: Hono, options: VXRNServeOptions): Promise<{
|
|
4
|
-
handler: (req: Request
|
|
5
|
-
GET: (req: Request
|
|
6
|
-
POST: (req: Request
|
|
7
|
-
PATCH: (req: Request
|
|
8
|
-
PUT: (req: Request
|
|
9
|
-
OPTIONS: (req: Request
|
|
4
|
+
handler: (req: Request) => Response | Promise<Response>;
|
|
5
|
+
GET: (req: Request) => Response | Promise<Response>;
|
|
6
|
+
POST: (req: Request) => Response | Promise<Response>;
|
|
7
|
+
PATCH: (req: Request) => Response | Promise<Response>;
|
|
8
|
+
PUT: (req: Request) => Response | Promise<Response>;
|
|
9
|
+
OPTIONS: (req: Request) => Response | Promise<Response>;
|
|
10
10
|
}>;
|
|
11
11
|
//# sourceMappingURL=vercel.d.ts.map
|