create-puck-app 0.21.0-canary.f3ce0d72 → 0.21.0-canary.fee2ba98
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-puck-app",
|
|
3
|
-
"version": "0.21.0-canary.
|
|
3
|
+
"version": "0.21.0-canary.fee2ba98",
|
|
4
4
|
"author": "Chris Villa <chris@puckeditor.com>",
|
|
5
5
|
"repository": "measuredco/puck",
|
|
6
6
|
"bugs": "https://github.com/measuredco/puck/issues",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"commander": "^10.0.1",
|
|
26
|
-
"glob": "^
|
|
26
|
+
"glob": "^11.1.0",
|
|
27
27
|
"handlebars": "^4.7.7",
|
|
28
28
|
"inquirer": "^9.2.7",
|
|
29
29
|
"prettier": "^2.8.8"
|
|
@@ -5,21 +5,19 @@
|
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "next dev",
|
|
7
7
|
"build": "next build",
|
|
8
|
-
"start": "next start"
|
|
9
|
-
"lint": "next lint"
|
|
8
|
+
"start": "next start"
|
|
10
9
|
},
|
|
11
10
|
"dependencies": {
|
|
12
11
|
"@measured/puck": "{{puckVersion}}",
|
|
13
12
|
"classnames": "^2.3.2",
|
|
14
|
-
"next": "^
|
|
15
|
-
"react": "^19.
|
|
16
|
-
"react-dom": "^19.
|
|
13
|
+
"next": "^16.0.8",
|
|
14
|
+
"react": "^19.2.1",
|
|
15
|
+
"react-dom": "^19.2.1"
|
|
17
16
|
},
|
|
18
17
|
"devDependencies": {
|
|
19
18
|
"@types/node": "^17.0.12",
|
|
20
|
-
"@types/react": "^19.
|
|
21
|
-
"@types/react-dom": "^19.
|
|
22
|
-
"eslint-config-custom": "*",
|
|
19
|
+
"@types/react": "^19.2.7",
|
|
20
|
+
"@types/react-dom": "^19.2.3",
|
|
23
21
|
"typescript": "^5.5.4"
|
|
24
22
|
}
|
|
25
23
|
}
|
|
@@ -2,7 +2,7 @@ import { NextResponse } from "next/server";
|
|
|
2
2
|
|
|
3
3
|
import type { NextRequest } from "next/server";
|
|
4
4
|
|
|
5
|
-
export async function
|
|
5
|
+
export async function proxy(req: NextRequest) {
|
|
6
6
|
const res = NextResponse.next({ request: req });
|
|
7
7
|
|
|
8
8
|
if (req.method === "GET") {
|
|
@@ -14,15 +14,15 @@
|
|
|
14
14
|
"@react-router/node": "^7.5.3",
|
|
15
15
|
"@react-router/serve": "^7.5.3",
|
|
16
16
|
"isbot": "^5",
|
|
17
|
-
"react": "^19.1
|
|
18
|
-
"react-dom": "^19.1
|
|
17
|
+
"react": "^19.2.1",
|
|
18
|
+
"react-dom": "^19.2.1",
|
|
19
19
|
"react-router": "^7.5.3"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@react-router/dev": "^7.5.3",
|
|
23
23
|
"@types/node": "^20",
|
|
24
|
-
"@types/react": "^19.
|
|
25
|
-
"@types/react-dom": "^19.
|
|
24
|
+
"@types/react": "^19.2.7",
|
|
25
|
+
"@types/react-dom": "^19.2.3",
|
|
26
26
|
"typescript": "^5.8.3",
|
|
27
27
|
"vite": "^6.3.3",
|
|
28
28
|
"vite-tsconfig-paths": "^5.1.4"
|