@tanstack/vue-start 1.167.21 → 1.167.22
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/LICENSE +21 -0
- package/package.json +14 -14
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/vue-start",
|
|
3
|
-
"version": "1.167.
|
|
3
|
+
"version": "1.167.22",
|
|
4
4
|
"description": "Modern and scalable routing for Vue applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,12 +23,6 @@
|
|
|
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
|
-
},
|
|
32
26
|
"type": "module",
|
|
33
27
|
"types": "dist/esm/index.d.ts",
|
|
34
28
|
"exports": {
|
|
@@ -106,21 +100,21 @@
|
|
|
106
100
|
"node": ">=22.12.0"
|
|
107
101
|
},
|
|
108
102
|
"dependencies": {
|
|
103
|
+
"pathe": "^2.0.3",
|
|
109
104
|
"@tanstack/vue-start-client": "1.166.27",
|
|
110
|
-
"@tanstack/vue-start-server": "1.166.
|
|
111
|
-
"@tanstack/start-plugin-core": "1.167.
|
|
105
|
+
"@tanstack/vue-start-server": "1.166.28",
|
|
106
|
+
"@tanstack/start-plugin-core": "1.167.21",
|
|
112
107
|
"@tanstack/vue-router": "1.168.12",
|
|
113
108
|
"@tanstack/start-client-core": "1.167.10",
|
|
114
|
-
"@tanstack/start-server-core": "1.167.
|
|
115
|
-
"pathe": "^2.0.3"
|
|
109
|
+
"@tanstack/start-server-core": "1.167.12"
|
|
116
110
|
},
|
|
117
111
|
"devDependencies": {
|
|
118
112
|
"@tanstack/intent": "^0.0.14",
|
|
119
|
-
"@tanstack/router-utils": "1.161.6",
|
|
120
113
|
"@vitejs/plugin-vue-jsx": "^4.1.2",
|
|
121
114
|
"vite": "*",
|
|
122
115
|
"vue": "^3.5.25",
|
|
123
|
-
"@types/node": ">=20"
|
|
116
|
+
"@types/node": ">=20",
|
|
117
|
+
"@tanstack/router-utils": "1.161.6"
|
|
124
118
|
},
|
|
125
119
|
"peerDependencies": {
|
|
126
120
|
"vue": "^3.3.0",
|
|
@@ -128,5 +122,11 @@
|
|
|
128
122
|
},
|
|
129
123
|
"bin": {
|
|
130
124
|
"intent": "./bin/intent.js"
|
|
125
|
+
},
|
|
126
|
+
"scripts": {
|
|
127
|
+
"clean": "rimraf ./dist && rimraf ./coverage",
|
|
128
|
+
"test": "pnpm test:build",
|
|
129
|
+
"test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
|
|
130
|
+
"build": "vite build && vite build -c vite.config.server-entry.ts"
|
|
131
131
|
}
|
|
132
|
-
}
|
|
132
|
+
}
|