@tanstack/react-start 1.167.22 → 1.167.23
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/LICENSE +0 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/react-start",
|
|
3
|
-
"version": "1.167.
|
|
3
|
+
"version": "1.167.23",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,6 +23,12 @@
|
|
|
23
23
|
"async router",
|
|
24
24
|
"typescript"
|
|
25
25
|
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"clean": "rimraf ./dist && rimraf ./coverage",
|
|
28
|
+
"test": "pnpm test:build",
|
|
29
|
+
"test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
|
|
30
|
+
"build": "vite build && vite build -c vite.config.server-entry.ts"
|
|
31
|
+
},
|
|
26
32
|
"type": "module",
|
|
27
33
|
"types": "dist/esm/index.d.ts",
|
|
28
34
|
"exports": {
|
|
@@ -126,15 +132,15 @@
|
|
|
126
132
|
"node": ">=22.12.0"
|
|
127
133
|
},
|
|
128
134
|
"dependencies": {
|
|
129
|
-
"pathe": "^2.0.3",
|
|
130
135
|
"@tanstack/react-start-client": "1.166.29",
|
|
131
|
-
"@tanstack/react-start-rsc": "0.0.
|
|
136
|
+
"@tanstack/react-start-rsc": "0.0.3",
|
|
137
|
+
"@tanstack/react-start-server": "1.166.29",
|
|
132
138
|
"@tanstack/router-utils": "^1.161.6",
|
|
133
|
-
"@tanstack/start-plugin-core": "1.167.
|
|
139
|
+
"@tanstack/start-plugin-core": "1.167.20",
|
|
134
140
|
"@tanstack/react-router": "1.168.13",
|
|
135
141
|
"@tanstack/start-client-core": "1.167.10",
|
|
136
|
-
"@tanstack/start-server-core": "1.167.
|
|
137
|
-
"
|
|
142
|
+
"@tanstack/start-server-core": "1.167.11",
|
|
143
|
+
"pathe": "^2.0.3"
|
|
138
144
|
},
|
|
139
145
|
"peerDependencies": {
|
|
140
146
|
"react": ">=18.0.0 || >=19.0.0",
|
|
@@ -152,11 +158,5 @@
|
|
|
152
158
|
},
|
|
153
159
|
"bin": {
|
|
154
160
|
"intent": "./bin/intent.js"
|
|
155
|
-
},
|
|
156
|
-
"scripts": {
|
|
157
|
-
"clean": "rimraf ./dist && rimraf ./coverage",
|
|
158
|
-
"test": "pnpm test:build",
|
|
159
|
-
"test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
|
|
160
|
-
"build": "vite build && vite build -c vite.config.server-entry.ts"
|
|
161
161
|
}
|
|
162
|
-
}
|
|
162
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2021-present Tanner Linsley
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|