webstudio 0.270.0 → 0.271.0
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/lib/cli-DBPDpQuC.js +7258 -0
- package/lib/cli.js +5 -9269
- package/lib/framework-react-router-DM99uwVO.js +88 -0
- package/lib/framework-remix-DxrMLfhi.js +88 -0
- package/lib/framework-vike-ssg-rsZDP045.js +78 -0
- package/lib/metas-DP1ZSrhL.js +3297 -0
- package/package.json +15 -14
- package/templates/cloudflare/package.json +1 -1
- package/templates/defaults/package.json +8 -8
- package/templates/react-router/package.json +8 -8
- package/templates/react-router-cloudflare/package.json +1 -1
- package/templates/ssg/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webstudio",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.271.0",
|
|
4
4
|
"description": "Webstudio CLI",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -43,8 +43,9 @@
|
|
|
43
43
|
"warn-once": "^0.1.1",
|
|
44
44
|
"yargs": "^17.7.2",
|
|
45
45
|
"zod": "^3.24.2",
|
|
46
|
-
"@webstudio-is/
|
|
47
|
-
"@webstudio-is/
|
|
46
|
+
"@webstudio-is/protocol": "0.271.0",
|
|
47
|
+
"@webstudio-is/project-migrations": "0.271.0",
|
|
48
|
+
"@webstudio-is/trpc-interface": "0.271.0"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
51
|
"@cloudflare/vite-plugin": "^1.1.0",
|
|
@@ -74,18 +75,18 @@
|
|
|
74
75
|
"vite": "^6.3.4",
|
|
75
76
|
"vitest": "^3.1.2",
|
|
76
77
|
"wrangler": "^3.63.2",
|
|
77
|
-
"@webstudio-is/css-engine": "0.
|
|
78
|
-
"@webstudio-is/
|
|
79
|
-
"@webstudio-is/
|
|
80
|
-
"@webstudio-is/
|
|
81
|
-
"@webstudio-is/sdk": "0.
|
|
82
|
-
"@webstudio-is/sdk-components-animation": "0.
|
|
83
|
-
"@webstudio-is/sdk-components-react": "0.
|
|
84
|
-
"@webstudio-is/sdk-components-react
|
|
85
|
-
"@webstudio-is/sdk-components-react-remix": "0.270.0",
|
|
78
|
+
"@webstudio-is/css-engine": "0.271.0",
|
|
79
|
+
"@webstudio-is/react-sdk": "0.271.0",
|
|
80
|
+
"@webstudio-is/image": "0.271.0",
|
|
81
|
+
"@webstudio-is/http-client": "0.271.0",
|
|
82
|
+
"@webstudio-is/sdk": "0.271.0",
|
|
83
|
+
"@webstudio-is/sdk-components-animation": "0.271.0",
|
|
84
|
+
"@webstudio-is/sdk-components-react-radix": "0.271.0",
|
|
85
|
+
"@webstudio-is/sdk-components-react": "0.271.0",
|
|
86
86
|
"@webstudio-is/tsconfig": "1.0.7",
|
|
87
|
-
"@webstudio-is/
|
|
88
|
-
"@webstudio-is/
|
|
87
|
+
"@webstudio-is/wsauth": "0.271.0",
|
|
88
|
+
"@webstudio-is/sdk-components-react-router": "0.271.0",
|
|
89
|
+
"@webstudio-is/sdk-components-react-remix": "0.271.0"
|
|
89
90
|
},
|
|
90
91
|
"scripts": {
|
|
91
92
|
"typecheck": "tsgo --noEmit",
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
"@remix-run/node": "2.16.5",
|
|
12
12
|
"@remix-run/react": "2.16.5",
|
|
13
13
|
"@remix-run/server-runtime": "2.16.5",
|
|
14
|
-
"@webstudio-is/image": "0.
|
|
15
|
-
"@webstudio-is/react-sdk": "0.
|
|
16
|
-
"@webstudio-is/sdk": "0.
|
|
17
|
-
"@webstudio-is/sdk-components-react": "0.
|
|
18
|
-
"@webstudio-is/sdk-components-animation": "0.
|
|
19
|
-
"@webstudio-is/sdk-components-react-radix": "0.
|
|
20
|
-
"@webstudio-is/sdk-components-react-remix": "0.
|
|
21
|
-
"@webstudio-is/wsauth": "0.
|
|
14
|
+
"@webstudio-is/image": "0.271.0",
|
|
15
|
+
"@webstudio-is/react-sdk": "0.271.0",
|
|
16
|
+
"@webstudio-is/sdk": "0.271.0",
|
|
17
|
+
"@webstudio-is/sdk-components-react": "0.271.0",
|
|
18
|
+
"@webstudio-is/sdk-components-animation": "0.271.0",
|
|
19
|
+
"@webstudio-is/sdk-components-react-radix": "0.271.0",
|
|
20
|
+
"@webstudio-is/sdk-components-react-remix": "0.271.0",
|
|
21
|
+
"@webstudio-is/wsauth": "0.271.0",
|
|
22
22
|
"isbot": "^5.1.25",
|
|
23
23
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
24
24
|
"react-dom": "18.3.0-canary-14898b6a9-20240318"
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@react-router/dev": "^7.5.3",
|
|
12
12
|
"@react-router/fs-routes": "^7.5.3",
|
|
13
|
-
"@webstudio-is/image": "0.
|
|
14
|
-
"@webstudio-is/react-sdk": "0.
|
|
15
|
-
"@webstudio-is/sdk": "0.
|
|
16
|
-
"@webstudio-is/sdk-components-animation": "0.
|
|
17
|
-
"@webstudio-is/sdk-components-react-radix": "0.
|
|
18
|
-
"@webstudio-is/sdk-components-react-router": "0.
|
|
19
|
-
"@webstudio-is/sdk-components-react": "0.
|
|
20
|
-
"@webstudio-is/wsauth": "0.
|
|
13
|
+
"@webstudio-is/image": "0.271.0",
|
|
14
|
+
"@webstudio-is/react-sdk": "0.271.0",
|
|
15
|
+
"@webstudio-is/sdk": "0.271.0",
|
|
16
|
+
"@webstudio-is/sdk-components-animation": "0.271.0",
|
|
17
|
+
"@webstudio-is/sdk-components-react-radix": "0.271.0",
|
|
18
|
+
"@webstudio-is/sdk-components-react-router": "0.271.0",
|
|
19
|
+
"@webstudio-is/sdk-components-react": "0.271.0",
|
|
20
|
+
"@webstudio-is/wsauth": "0.271.0",
|
|
21
21
|
"isbot": "^5.1.25",
|
|
22
22
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
23
23
|
"react-dom": "18.3.0-canary-14898b6a9-20240318",
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"typecheck": "tsgo --noEmit"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@webstudio-is/image": "0.
|
|
12
|
-
"@webstudio-is/react-sdk": "0.
|
|
13
|
-
"@webstudio-is/sdk": "0.
|
|
14
|
-
"@webstudio-is/sdk-components-react": "0.
|
|
15
|
-
"@webstudio-is/sdk-components-animation": "0.
|
|
16
|
-
"@webstudio-is/sdk-components-react-radix": "0.
|
|
11
|
+
"@webstudio-is/image": "0.271.0",
|
|
12
|
+
"@webstudio-is/react-sdk": "0.271.0",
|
|
13
|
+
"@webstudio-is/sdk": "0.271.0",
|
|
14
|
+
"@webstudio-is/sdk-components-react": "0.271.0",
|
|
15
|
+
"@webstudio-is/sdk-components-animation": "0.271.0",
|
|
16
|
+
"@webstudio-is/sdk-components-react-radix": "0.271.0",
|
|
17
17
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
18
18
|
"react-dom": "18.3.0-canary-14898b6a9-20240318",
|
|
19
19
|
"vike": "^0.4.229"
|