create-lzcli 1.0.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/index.html +12 -0
- package/index.js +104 -0
- package/package.json +30 -0
- package/readme.md +1 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/.env +2 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/.prettierrc +10 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/eslint.config.ts +80 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/index.html +26 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/package-lock.json +2936 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/package.json +44 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/App.vue +19 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/main.ts +13 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/store/index.ts +11 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/styles/index.css +1 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/src/vite-env.d.ts +10 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/tsconfig.json +43 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/tsconfig.node.json +18 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia/vite.config.ts +27 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/.env +2 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/.prettierrc +10 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/eslint.config.ts +80 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/index.html +26 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/package-lock.json +3309 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/package.json +45 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/App.vue +26 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/main.ts +14 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/router/index.ts +19 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/store/index.ts +11 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/styles/index.css +1 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/view/HomeView.vue +7 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/src/vite-env.d.ts +10 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/tsconfig.json +43 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/tsconfig.node.json +18 -0
- package/template/vue_ts_eslint_prettieric_tailwindcss_pinia_vueRouter/vite.config.ts +27 -0
- package/template/vue_ts_prettieric_pinia/.env +2 -0
- package/template/vue_ts_prettieric_pinia/.prettierrc +11 -0
- package/template/vue_ts_prettieric_pinia/index.html +26 -0
- package/template/vue_ts_prettieric_pinia/package-lock.json +1371 -0
- package/template/vue_ts_prettieric_pinia/package.json +36 -0
- package/template/vue_ts_prettieric_pinia/pnpm-lock.yaml +883 -0
- package/template/vue_ts_prettieric_pinia/src/App.vue +56 -0
- package/template/vue_ts_prettieric_pinia/src/main.ts +11 -0
- package/template/vue_ts_prettieric_pinia/src/store/counter.ts +12 -0
- package/template/vue_ts_prettieric_pinia/src/styles/index.css +1 -0
- package/template/vue_ts_prettieric_pinia/src/vite-env.d.ts +10 -0
- package/template/vue_ts_prettieric_pinia/tsconfig.json +42 -0
- package/template/vue_ts_prettieric_pinia/tsconfig.node.json +13 -0
- package/template/vue_ts_prettieric_pinia/vite.config.ts +25 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/.env +2 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/.prettierrc +11 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/index.html +26 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/package-lock.json +1661 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/package.json +39 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/src/App.vue +16 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/src/main.ts +10 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/src/store/counter.ts +14 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/src/styles/index.css +1 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/src/vite-env.d.ts +10 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/tsconfig.json +43 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/tsconfig.node.json +13 -0
- package/template/vue_ts_prettieric_tailwindcss_pinia/vite.config.ts +27 -0
|
@@ -0,0 +1,1371 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lowercode",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "lowercode",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"pinia": "^3.0.4",
|
|
13
|
+
"vue": "^3.5.31"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@vitejs/plugin-vue": "^6.0.5",
|
|
17
|
+
"globals": "^17.4.0",
|
|
18
|
+
"jiti": "^2.6.1",
|
|
19
|
+
"typescript": "^6.0.2",
|
|
20
|
+
"vite": "^8.0.3",
|
|
21
|
+
"vue-tsc": "^3.2.6"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"node_modules/@babel/helper-string-parser": {
|
|
25
|
+
"version": "7.27.1",
|
|
26
|
+
"resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
|
27
|
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=6.9.0"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
34
|
+
"version": "7.28.5",
|
|
35
|
+
"resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
|
|
36
|
+
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=6.9.0"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"node_modules/@babel/parser": {
|
|
43
|
+
"version": "7.29.2",
|
|
44
|
+
"resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.2.tgz",
|
|
45
|
+
"integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@babel/types": "^7.29.0"
|
|
49
|
+
},
|
|
50
|
+
"bin": {
|
|
51
|
+
"parser": "bin/babel-parser.js"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=6.0.0"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"node_modules/@babel/types": {
|
|
58
|
+
"version": "7.29.0",
|
|
59
|
+
"resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz",
|
|
60
|
+
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
|
|
61
|
+
"license": "MIT",
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@babel/helper-string-parser": "^7.27.1",
|
|
64
|
+
"@babel/helper-validator-identifier": "^7.28.5"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=6.9.0"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"node_modules/@emnapi/core": {
|
|
71
|
+
"version": "1.9.1",
|
|
72
|
+
"resolved": "https://registry.npmmirror.com/@emnapi/core/-/core-1.9.1.tgz",
|
|
73
|
+
"integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==",
|
|
74
|
+
"dev": true,
|
|
75
|
+
"license": "MIT",
|
|
76
|
+
"optional": true,
|
|
77
|
+
"peer": true,
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"@emnapi/wasi-threads": "1.2.0",
|
|
80
|
+
"tslib": "^2.4.0"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"node_modules/@emnapi/runtime": {
|
|
84
|
+
"version": "1.9.1",
|
|
85
|
+
"resolved": "https://registry.npmmirror.com/@emnapi/runtime/-/runtime-1.9.1.tgz",
|
|
86
|
+
"integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==",
|
|
87
|
+
"dev": true,
|
|
88
|
+
"license": "MIT",
|
|
89
|
+
"optional": true,
|
|
90
|
+
"peer": true,
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"tslib": "^2.4.0"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"node_modules/@emnapi/wasi-threads": {
|
|
96
|
+
"version": "1.2.0",
|
|
97
|
+
"resolved": "https://registry.npmmirror.com/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz",
|
|
98
|
+
"integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==",
|
|
99
|
+
"dev": true,
|
|
100
|
+
"license": "MIT",
|
|
101
|
+
"optional": true,
|
|
102
|
+
"peer": true,
|
|
103
|
+
"dependencies": {
|
|
104
|
+
"tslib": "^2.4.0"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
108
|
+
"version": "1.5.5",
|
|
109
|
+
"resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
110
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
111
|
+
"license": "MIT"
|
|
112
|
+
},
|
|
113
|
+
"node_modules/@napi-rs/wasm-runtime": {
|
|
114
|
+
"version": "1.1.2",
|
|
115
|
+
"resolved": "https://registry.npmmirror.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.2.tgz",
|
|
116
|
+
"integrity": "sha512-sNXv5oLJ7ob93xkZ1XnxisYhGYXfaG9f65/ZgYuAu3qt7b3NadcOEhLvx28hv31PgX8SZJRYrAIPQilQmFpLVw==",
|
|
117
|
+
"dev": true,
|
|
118
|
+
"license": "MIT",
|
|
119
|
+
"optional": true,
|
|
120
|
+
"dependencies": {
|
|
121
|
+
"@tybys/wasm-util": "^0.10.1"
|
|
122
|
+
},
|
|
123
|
+
"funding": {
|
|
124
|
+
"type": "github",
|
|
125
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
126
|
+
},
|
|
127
|
+
"peerDependencies": {
|
|
128
|
+
"@emnapi/core": "^1.7.1",
|
|
129
|
+
"@emnapi/runtime": "^1.7.1"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"node_modules/@oxc-project/types": {
|
|
133
|
+
"version": "0.122.0",
|
|
134
|
+
"resolved": "https://registry.npmmirror.com/@oxc-project/types/-/types-0.122.0.tgz",
|
|
135
|
+
"integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==",
|
|
136
|
+
"dev": true,
|
|
137
|
+
"license": "MIT",
|
|
138
|
+
"funding": {
|
|
139
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"node_modules/@rolldown/binding-android-arm64": {
|
|
143
|
+
"version": "1.0.0-rc.12",
|
|
144
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.12.tgz",
|
|
145
|
+
"integrity": "sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==",
|
|
146
|
+
"cpu": [
|
|
147
|
+
"arm64"
|
|
148
|
+
],
|
|
149
|
+
"dev": true,
|
|
150
|
+
"license": "MIT",
|
|
151
|
+
"optional": true,
|
|
152
|
+
"os": [
|
|
153
|
+
"android"
|
|
154
|
+
],
|
|
155
|
+
"engines": {
|
|
156
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"node_modules/@rolldown/binding-darwin-arm64": {
|
|
160
|
+
"version": "1.0.0-rc.12",
|
|
161
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.12.tgz",
|
|
162
|
+
"integrity": "sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==",
|
|
163
|
+
"cpu": [
|
|
164
|
+
"arm64"
|
|
165
|
+
],
|
|
166
|
+
"dev": true,
|
|
167
|
+
"license": "MIT",
|
|
168
|
+
"optional": true,
|
|
169
|
+
"os": [
|
|
170
|
+
"darwin"
|
|
171
|
+
],
|
|
172
|
+
"engines": {
|
|
173
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"node_modules/@rolldown/binding-darwin-x64": {
|
|
177
|
+
"version": "1.0.0-rc.12",
|
|
178
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.12.tgz",
|
|
179
|
+
"integrity": "sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==",
|
|
180
|
+
"cpu": [
|
|
181
|
+
"x64"
|
|
182
|
+
],
|
|
183
|
+
"dev": true,
|
|
184
|
+
"license": "MIT",
|
|
185
|
+
"optional": true,
|
|
186
|
+
"os": [
|
|
187
|
+
"darwin"
|
|
188
|
+
],
|
|
189
|
+
"engines": {
|
|
190
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
"node_modules/@rolldown/binding-freebsd-x64": {
|
|
194
|
+
"version": "1.0.0-rc.12",
|
|
195
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.12.tgz",
|
|
196
|
+
"integrity": "sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==",
|
|
197
|
+
"cpu": [
|
|
198
|
+
"x64"
|
|
199
|
+
],
|
|
200
|
+
"dev": true,
|
|
201
|
+
"license": "MIT",
|
|
202
|
+
"optional": true,
|
|
203
|
+
"os": [
|
|
204
|
+
"freebsd"
|
|
205
|
+
],
|
|
206
|
+
"engines": {
|
|
207
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
|
|
211
|
+
"version": "1.0.0-rc.12",
|
|
212
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.12.tgz",
|
|
213
|
+
"integrity": "sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==",
|
|
214
|
+
"cpu": [
|
|
215
|
+
"arm"
|
|
216
|
+
],
|
|
217
|
+
"dev": true,
|
|
218
|
+
"license": "MIT",
|
|
219
|
+
"optional": true,
|
|
220
|
+
"os": [
|
|
221
|
+
"linux"
|
|
222
|
+
],
|
|
223
|
+
"engines": {
|
|
224
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"node_modules/@rolldown/binding-linux-arm64-gnu": {
|
|
228
|
+
"version": "1.0.0-rc.12",
|
|
229
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.12.tgz",
|
|
230
|
+
"integrity": "sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==",
|
|
231
|
+
"cpu": [
|
|
232
|
+
"arm64"
|
|
233
|
+
],
|
|
234
|
+
"dev": true,
|
|
235
|
+
"license": "MIT",
|
|
236
|
+
"optional": true,
|
|
237
|
+
"os": [
|
|
238
|
+
"linux"
|
|
239
|
+
],
|
|
240
|
+
"engines": {
|
|
241
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"node_modules/@rolldown/binding-linux-arm64-musl": {
|
|
245
|
+
"version": "1.0.0-rc.12",
|
|
246
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.12.tgz",
|
|
247
|
+
"integrity": "sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==",
|
|
248
|
+
"cpu": [
|
|
249
|
+
"arm64"
|
|
250
|
+
],
|
|
251
|
+
"dev": true,
|
|
252
|
+
"license": "MIT",
|
|
253
|
+
"optional": true,
|
|
254
|
+
"os": [
|
|
255
|
+
"linux"
|
|
256
|
+
],
|
|
257
|
+
"engines": {
|
|
258
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
"node_modules/@rolldown/binding-linux-ppc64-gnu": {
|
|
262
|
+
"version": "1.0.0-rc.12",
|
|
263
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.12.tgz",
|
|
264
|
+
"integrity": "sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==",
|
|
265
|
+
"cpu": [
|
|
266
|
+
"ppc64"
|
|
267
|
+
],
|
|
268
|
+
"dev": true,
|
|
269
|
+
"license": "MIT",
|
|
270
|
+
"optional": true,
|
|
271
|
+
"os": [
|
|
272
|
+
"linux"
|
|
273
|
+
],
|
|
274
|
+
"engines": {
|
|
275
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
"node_modules/@rolldown/binding-linux-s390x-gnu": {
|
|
279
|
+
"version": "1.0.0-rc.12",
|
|
280
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.12.tgz",
|
|
281
|
+
"integrity": "sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==",
|
|
282
|
+
"cpu": [
|
|
283
|
+
"s390x"
|
|
284
|
+
],
|
|
285
|
+
"dev": true,
|
|
286
|
+
"license": "MIT",
|
|
287
|
+
"optional": true,
|
|
288
|
+
"os": [
|
|
289
|
+
"linux"
|
|
290
|
+
],
|
|
291
|
+
"engines": {
|
|
292
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"node_modules/@rolldown/binding-linux-x64-gnu": {
|
|
296
|
+
"version": "1.0.0-rc.12",
|
|
297
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.12.tgz",
|
|
298
|
+
"integrity": "sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==",
|
|
299
|
+
"cpu": [
|
|
300
|
+
"x64"
|
|
301
|
+
],
|
|
302
|
+
"dev": true,
|
|
303
|
+
"license": "MIT",
|
|
304
|
+
"optional": true,
|
|
305
|
+
"os": [
|
|
306
|
+
"linux"
|
|
307
|
+
],
|
|
308
|
+
"engines": {
|
|
309
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"node_modules/@rolldown/binding-linux-x64-musl": {
|
|
313
|
+
"version": "1.0.0-rc.12",
|
|
314
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.12.tgz",
|
|
315
|
+
"integrity": "sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==",
|
|
316
|
+
"cpu": [
|
|
317
|
+
"x64"
|
|
318
|
+
],
|
|
319
|
+
"dev": true,
|
|
320
|
+
"license": "MIT",
|
|
321
|
+
"optional": true,
|
|
322
|
+
"os": [
|
|
323
|
+
"linux"
|
|
324
|
+
],
|
|
325
|
+
"engines": {
|
|
326
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"node_modules/@rolldown/binding-openharmony-arm64": {
|
|
330
|
+
"version": "1.0.0-rc.12",
|
|
331
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.12.tgz",
|
|
332
|
+
"integrity": "sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==",
|
|
333
|
+
"cpu": [
|
|
334
|
+
"arm64"
|
|
335
|
+
],
|
|
336
|
+
"dev": true,
|
|
337
|
+
"license": "MIT",
|
|
338
|
+
"optional": true,
|
|
339
|
+
"os": [
|
|
340
|
+
"openharmony"
|
|
341
|
+
],
|
|
342
|
+
"engines": {
|
|
343
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
"node_modules/@rolldown/binding-wasm32-wasi": {
|
|
347
|
+
"version": "1.0.0-rc.12",
|
|
348
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.12.tgz",
|
|
349
|
+
"integrity": "sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==",
|
|
350
|
+
"cpu": [
|
|
351
|
+
"wasm32"
|
|
352
|
+
],
|
|
353
|
+
"dev": true,
|
|
354
|
+
"license": "MIT",
|
|
355
|
+
"optional": true,
|
|
356
|
+
"dependencies": {
|
|
357
|
+
"@napi-rs/wasm-runtime": "^1.1.1"
|
|
358
|
+
},
|
|
359
|
+
"engines": {
|
|
360
|
+
"node": ">=14.0.0"
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
"node_modules/@rolldown/binding-win32-arm64-msvc": {
|
|
364
|
+
"version": "1.0.0-rc.12",
|
|
365
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.12.tgz",
|
|
366
|
+
"integrity": "sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==",
|
|
367
|
+
"cpu": [
|
|
368
|
+
"arm64"
|
|
369
|
+
],
|
|
370
|
+
"dev": true,
|
|
371
|
+
"license": "MIT",
|
|
372
|
+
"optional": true,
|
|
373
|
+
"os": [
|
|
374
|
+
"win32"
|
|
375
|
+
],
|
|
376
|
+
"engines": {
|
|
377
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"node_modules/@rolldown/binding-win32-x64-msvc": {
|
|
381
|
+
"version": "1.0.0-rc.12",
|
|
382
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.12.tgz",
|
|
383
|
+
"integrity": "sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==",
|
|
384
|
+
"cpu": [
|
|
385
|
+
"x64"
|
|
386
|
+
],
|
|
387
|
+
"dev": true,
|
|
388
|
+
"license": "MIT",
|
|
389
|
+
"optional": true,
|
|
390
|
+
"os": [
|
|
391
|
+
"win32"
|
|
392
|
+
],
|
|
393
|
+
"engines": {
|
|
394
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"node_modules/@rolldown/pluginutils": {
|
|
398
|
+
"version": "1.0.0-rc.2",
|
|
399
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
|
|
400
|
+
"integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
|
|
401
|
+
"dev": true,
|
|
402
|
+
"license": "MIT"
|
|
403
|
+
},
|
|
404
|
+
"node_modules/@tybys/wasm-util": {
|
|
405
|
+
"version": "0.10.1",
|
|
406
|
+
"resolved": "https://registry.npmmirror.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
|
|
407
|
+
"integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
|
|
408
|
+
"dev": true,
|
|
409
|
+
"license": "MIT",
|
|
410
|
+
"optional": true,
|
|
411
|
+
"dependencies": {
|
|
412
|
+
"tslib": "^2.4.0"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"node_modules/@vitejs/plugin-vue": {
|
|
416
|
+
"version": "6.0.5",
|
|
417
|
+
"resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.5.tgz",
|
|
418
|
+
"integrity": "sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==",
|
|
419
|
+
"dev": true,
|
|
420
|
+
"license": "MIT",
|
|
421
|
+
"dependencies": {
|
|
422
|
+
"@rolldown/pluginutils": "1.0.0-rc.2"
|
|
423
|
+
},
|
|
424
|
+
"engines": {
|
|
425
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
426
|
+
},
|
|
427
|
+
"peerDependencies": {
|
|
428
|
+
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
|
|
429
|
+
"vue": "^3.2.25"
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
"node_modules/@volar/language-core": {
|
|
433
|
+
"version": "2.4.28",
|
|
434
|
+
"resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.28.tgz",
|
|
435
|
+
"integrity": "sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==",
|
|
436
|
+
"dev": true,
|
|
437
|
+
"license": "MIT",
|
|
438
|
+
"dependencies": {
|
|
439
|
+
"@volar/source-map": "2.4.28"
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"node_modules/@volar/source-map": {
|
|
443
|
+
"version": "2.4.28",
|
|
444
|
+
"resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.28.tgz",
|
|
445
|
+
"integrity": "sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==",
|
|
446
|
+
"dev": true,
|
|
447
|
+
"license": "MIT"
|
|
448
|
+
},
|
|
449
|
+
"node_modules/@volar/typescript": {
|
|
450
|
+
"version": "2.4.28",
|
|
451
|
+
"resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.28.tgz",
|
|
452
|
+
"integrity": "sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==",
|
|
453
|
+
"dev": true,
|
|
454
|
+
"license": "MIT",
|
|
455
|
+
"dependencies": {
|
|
456
|
+
"@volar/language-core": "2.4.28",
|
|
457
|
+
"path-browserify": "^1.0.1",
|
|
458
|
+
"vscode-uri": "^3.0.8"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"node_modules/@vue/compiler-core": {
|
|
462
|
+
"version": "3.5.31",
|
|
463
|
+
"resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.31.tgz",
|
|
464
|
+
"integrity": "sha512-k/ueL14aNIEy5Onf0OVzR8kiqF/WThgLdFhxwa4e/KF/0qe38IwIdofoSWBTvvxQOesaz6riAFAUaYjoF9fLLQ==",
|
|
465
|
+
"license": "MIT",
|
|
466
|
+
"dependencies": {
|
|
467
|
+
"@babel/parser": "^7.29.2",
|
|
468
|
+
"@vue/shared": "3.5.31",
|
|
469
|
+
"entities": "^7.0.1",
|
|
470
|
+
"estree-walker": "^2.0.2",
|
|
471
|
+
"source-map-js": "^1.2.1"
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"node_modules/@vue/compiler-dom": {
|
|
475
|
+
"version": "3.5.31",
|
|
476
|
+
"resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.31.tgz",
|
|
477
|
+
"integrity": "sha512-BMY/ozS/xxjYqRFL+tKdRpATJYDTTgWSo0+AJvJNg4ig+Hgb0dOsHPXvloHQ5hmlivUqw1Yt2pPIqp4e0v1GUw==",
|
|
478
|
+
"license": "MIT",
|
|
479
|
+
"dependencies": {
|
|
480
|
+
"@vue/compiler-core": "3.5.31",
|
|
481
|
+
"@vue/shared": "3.5.31"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"node_modules/@vue/compiler-sfc": {
|
|
485
|
+
"version": "3.5.31",
|
|
486
|
+
"resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.31.tgz",
|
|
487
|
+
"integrity": "sha512-M8wpPgR9UJ8MiRGjppvx9uWJfLV7A/T+/rL8s/y3QG3u0c2/YZgff3d6SuimKRIhcYnWg5fTfDMlz2E6seUW8Q==",
|
|
488
|
+
"license": "MIT",
|
|
489
|
+
"dependencies": {
|
|
490
|
+
"@babel/parser": "^7.29.2",
|
|
491
|
+
"@vue/compiler-core": "3.5.31",
|
|
492
|
+
"@vue/compiler-dom": "3.5.31",
|
|
493
|
+
"@vue/compiler-ssr": "3.5.31",
|
|
494
|
+
"@vue/shared": "3.5.31",
|
|
495
|
+
"estree-walker": "^2.0.2",
|
|
496
|
+
"magic-string": "^0.30.21",
|
|
497
|
+
"postcss": "^8.5.8",
|
|
498
|
+
"source-map-js": "^1.2.1"
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"node_modules/@vue/compiler-ssr": {
|
|
502
|
+
"version": "3.5.31",
|
|
503
|
+
"resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.31.tgz",
|
|
504
|
+
"integrity": "sha512-h0xIMxrt/LHOvJKMri+vdYT92BrK3HFLtDqq9Pr/lVVfE4IyKZKvWf0vJFW10Yr6nX02OR4MkJwI0c1HDa1hog==",
|
|
505
|
+
"license": "MIT",
|
|
506
|
+
"dependencies": {
|
|
507
|
+
"@vue/compiler-dom": "3.5.31",
|
|
508
|
+
"@vue/shared": "3.5.31"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"node_modules/@vue/devtools-api": {
|
|
512
|
+
"version": "7.7.9",
|
|
513
|
+
"resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-7.7.9.tgz",
|
|
514
|
+
"integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==",
|
|
515
|
+
"license": "MIT",
|
|
516
|
+
"dependencies": {
|
|
517
|
+
"@vue/devtools-kit": "^7.7.9"
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
"node_modules/@vue/devtools-kit": {
|
|
521
|
+
"version": "7.7.9",
|
|
522
|
+
"resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz",
|
|
523
|
+
"integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==",
|
|
524
|
+
"license": "MIT",
|
|
525
|
+
"dependencies": {
|
|
526
|
+
"@vue/devtools-shared": "^7.7.9",
|
|
527
|
+
"birpc": "^2.3.0",
|
|
528
|
+
"hookable": "^5.5.3",
|
|
529
|
+
"mitt": "^3.0.1",
|
|
530
|
+
"perfect-debounce": "^1.0.0",
|
|
531
|
+
"speakingurl": "^14.0.1",
|
|
532
|
+
"superjson": "^2.2.2"
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
"node_modules/@vue/devtools-shared": {
|
|
536
|
+
"version": "7.7.9",
|
|
537
|
+
"resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz",
|
|
538
|
+
"integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==",
|
|
539
|
+
"license": "MIT",
|
|
540
|
+
"dependencies": {
|
|
541
|
+
"rfdc": "^1.4.1"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"node_modules/@vue/language-core": {
|
|
545
|
+
"version": "3.2.6",
|
|
546
|
+
"resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-3.2.6.tgz",
|
|
547
|
+
"integrity": "sha512-xYYYX3/aVup576tP/23sEUpgiEnujrENaoNRbaozC1/MA9I6EGFQRJb4xrt/MmUCAGlxTKL2RmT8JLTPqagCkg==",
|
|
548
|
+
"dev": true,
|
|
549
|
+
"license": "MIT",
|
|
550
|
+
"dependencies": {
|
|
551
|
+
"@volar/language-core": "2.4.28",
|
|
552
|
+
"@vue/compiler-dom": "^3.5.0",
|
|
553
|
+
"@vue/shared": "^3.5.0",
|
|
554
|
+
"alien-signals": "^3.0.0",
|
|
555
|
+
"muggle-string": "^0.4.1",
|
|
556
|
+
"path-browserify": "^1.0.1",
|
|
557
|
+
"picomatch": "^4.0.2"
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"node_modules/@vue/reactivity": {
|
|
561
|
+
"version": "3.5.31",
|
|
562
|
+
"resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.31.tgz",
|
|
563
|
+
"integrity": "sha512-DtKXxk9E/KuVvt8VxWu+6Luc9I9ETNcqR1T1oW1gf02nXaZ1kuAx58oVu7uX9XxJR0iJCro6fqBLw9oSBELo5g==",
|
|
564
|
+
"license": "MIT",
|
|
565
|
+
"dependencies": {
|
|
566
|
+
"@vue/shared": "3.5.31"
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"node_modules/@vue/runtime-core": {
|
|
570
|
+
"version": "3.5.31",
|
|
571
|
+
"resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.31.tgz",
|
|
572
|
+
"integrity": "sha512-AZPmIHXEAyhpkmN7aWlqjSfYynmkWlluDNPHMCZKFHH+lLtxP/30UJmoVhXmbDoP1Ng0jG0fyY2zCj1PnSSA6Q==",
|
|
573
|
+
"license": "MIT",
|
|
574
|
+
"dependencies": {
|
|
575
|
+
"@vue/reactivity": "3.5.31",
|
|
576
|
+
"@vue/shared": "3.5.31"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"node_modules/@vue/runtime-dom": {
|
|
580
|
+
"version": "3.5.31",
|
|
581
|
+
"resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.31.tgz",
|
|
582
|
+
"integrity": "sha512-xQJsNRmGPeDCJq/u813tyonNgWBFjzfVkBwDREdEWndBnGdHLHgkwNBQxLtg4zDrzKTEcnikUy1UUNecb3lJ6g==",
|
|
583
|
+
"license": "MIT",
|
|
584
|
+
"dependencies": {
|
|
585
|
+
"@vue/reactivity": "3.5.31",
|
|
586
|
+
"@vue/runtime-core": "3.5.31",
|
|
587
|
+
"@vue/shared": "3.5.31",
|
|
588
|
+
"csstype": "^3.2.3"
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"node_modules/@vue/server-renderer": {
|
|
592
|
+
"version": "3.5.31",
|
|
593
|
+
"resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.31.tgz",
|
|
594
|
+
"integrity": "sha512-GJuwRvMcdZX/CriUnyIIOGkx3rMV3H6sOu0JhdKbduaeCji6zb60iOGMY7tFoN24NfsUYoFBhshZtGxGpxO4iA==",
|
|
595
|
+
"license": "MIT",
|
|
596
|
+
"dependencies": {
|
|
597
|
+
"@vue/compiler-ssr": "3.5.31",
|
|
598
|
+
"@vue/shared": "3.5.31"
|
|
599
|
+
},
|
|
600
|
+
"peerDependencies": {
|
|
601
|
+
"vue": "3.5.31"
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
"node_modules/@vue/shared": {
|
|
605
|
+
"version": "3.5.31",
|
|
606
|
+
"resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.31.tgz",
|
|
607
|
+
"integrity": "sha512-nBxuiuS9Lj5bPkPbWogPUnjxxWpkRniX7e5UBQDWl6Fsf4roq9wwV+cR7ezQ4zXswNvPIlsdj1slcLB7XCsRAw==",
|
|
608
|
+
"license": "MIT"
|
|
609
|
+
},
|
|
610
|
+
"node_modules/alien-signals": {
|
|
611
|
+
"version": "3.1.2",
|
|
612
|
+
"resolved": "https://registry.npmmirror.com/alien-signals/-/alien-signals-3.1.2.tgz",
|
|
613
|
+
"integrity": "sha512-d9dYqZTS90WLiU0I5c6DHj/HcKkF8ZyGN3G5x8wSbslulz70KOxaqCT0hQCo9KOyhVqzqGojvNdJXoTumZOtcw==",
|
|
614
|
+
"dev": true,
|
|
615
|
+
"license": "MIT"
|
|
616
|
+
},
|
|
617
|
+
"node_modules/birpc": {
|
|
618
|
+
"version": "2.9.0",
|
|
619
|
+
"resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz",
|
|
620
|
+
"integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
|
|
621
|
+
"license": "MIT",
|
|
622
|
+
"funding": {
|
|
623
|
+
"url": "https://github.com/sponsors/antfu"
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
"node_modules/copy-anything": {
|
|
627
|
+
"version": "4.0.5",
|
|
628
|
+
"resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz",
|
|
629
|
+
"integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
|
|
630
|
+
"license": "MIT",
|
|
631
|
+
"dependencies": {
|
|
632
|
+
"is-what": "^5.2.0"
|
|
633
|
+
},
|
|
634
|
+
"engines": {
|
|
635
|
+
"node": ">=18"
|
|
636
|
+
},
|
|
637
|
+
"funding": {
|
|
638
|
+
"url": "https://github.com/sponsors/mesqueeb"
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"node_modules/csstype": {
|
|
642
|
+
"version": "3.2.3",
|
|
643
|
+
"resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
|
|
644
|
+
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
645
|
+
"license": "MIT"
|
|
646
|
+
},
|
|
647
|
+
"node_modules/detect-libc": {
|
|
648
|
+
"version": "2.1.2",
|
|
649
|
+
"resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
650
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
651
|
+
"dev": true,
|
|
652
|
+
"license": "Apache-2.0",
|
|
653
|
+
"engines": {
|
|
654
|
+
"node": ">=8"
|
|
655
|
+
}
|
|
656
|
+
},
|
|
657
|
+
"node_modules/entities": {
|
|
658
|
+
"version": "7.0.1",
|
|
659
|
+
"resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
|
|
660
|
+
"integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
|
|
661
|
+
"license": "BSD-2-Clause",
|
|
662
|
+
"engines": {
|
|
663
|
+
"node": ">=0.12"
|
|
664
|
+
},
|
|
665
|
+
"funding": {
|
|
666
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"node_modules/estree-walker": {
|
|
670
|
+
"version": "2.0.2",
|
|
671
|
+
"resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
|
|
672
|
+
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
|
|
673
|
+
"license": "MIT"
|
|
674
|
+
},
|
|
675
|
+
"node_modules/fdir": {
|
|
676
|
+
"version": "6.5.0",
|
|
677
|
+
"resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
|
|
678
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
679
|
+
"dev": true,
|
|
680
|
+
"license": "MIT",
|
|
681
|
+
"engines": {
|
|
682
|
+
"node": ">=12.0.0"
|
|
683
|
+
},
|
|
684
|
+
"peerDependencies": {
|
|
685
|
+
"picomatch": "^3 || ^4"
|
|
686
|
+
},
|
|
687
|
+
"peerDependenciesMeta": {
|
|
688
|
+
"picomatch": {
|
|
689
|
+
"optional": true
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
"node_modules/fsevents": {
|
|
694
|
+
"version": "2.3.3",
|
|
695
|
+
"resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
|
|
696
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
697
|
+
"dev": true,
|
|
698
|
+
"hasInstallScript": true,
|
|
699
|
+
"license": "MIT",
|
|
700
|
+
"optional": true,
|
|
701
|
+
"os": [
|
|
702
|
+
"darwin"
|
|
703
|
+
],
|
|
704
|
+
"engines": {
|
|
705
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
"node_modules/globals": {
|
|
709
|
+
"version": "17.4.0",
|
|
710
|
+
"resolved": "https://registry.npmmirror.com/globals/-/globals-17.4.0.tgz",
|
|
711
|
+
"integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==",
|
|
712
|
+
"dev": true,
|
|
713
|
+
"license": "MIT",
|
|
714
|
+
"engines": {
|
|
715
|
+
"node": ">=18"
|
|
716
|
+
},
|
|
717
|
+
"funding": {
|
|
718
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
"node_modules/hookable": {
|
|
722
|
+
"version": "5.5.3",
|
|
723
|
+
"resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz",
|
|
724
|
+
"integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
|
|
725
|
+
"license": "MIT"
|
|
726
|
+
},
|
|
727
|
+
"node_modules/is-what": {
|
|
728
|
+
"version": "5.5.0",
|
|
729
|
+
"resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz",
|
|
730
|
+
"integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
|
|
731
|
+
"license": "MIT",
|
|
732
|
+
"engines": {
|
|
733
|
+
"node": ">=18"
|
|
734
|
+
},
|
|
735
|
+
"funding": {
|
|
736
|
+
"url": "https://github.com/sponsors/mesqueeb"
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"node_modules/jiti": {
|
|
740
|
+
"version": "2.6.1",
|
|
741
|
+
"resolved": "https://registry.npmmirror.com/jiti/-/jiti-2.6.1.tgz",
|
|
742
|
+
"integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
|
|
743
|
+
"dev": true,
|
|
744
|
+
"license": "MIT",
|
|
745
|
+
"bin": {
|
|
746
|
+
"jiti": "lib/jiti-cli.mjs"
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
"node_modules/lightningcss": {
|
|
750
|
+
"version": "1.32.0",
|
|
751
|
+
"resolved": "https://registry.npmmirror.com/lightningcss/-/lightningcss-1.32.0.tgz",
|
|
752
|
+
"integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
|
|
753
|
+
"dev": true,
|
|
754
|
+
"license": "MPL-2.0",
|
|
755
|
+
"dependencies": {
|
|
756
|
+
"detect-libc": "^2.0.3"
|
|
757
|
+
},
|
|
758
|
+
"engines": {
|
|
759
|
+
"node": ">= 12.0.0"
|
|
760
|
+
},
|
|
761
|
+
"funding": {
|
|
762
|
+
"type": "opencollective",
|
|
763
|
+
"url": "https://opencollective.com/parcel"
|
|
764
|
+
},
|
|
765
|
+
"optionalDependencies": {
|
|
766
|
+
"lightningcss-android-arm64": "1.32.0",
|
|
767
|
+
"lightningcss-darwin-arm64": "1.32.0",
|
|
768
|
+
"lightningcss-darwin-x64": "1.32.0",
|
|
769
|
+
"lightningcss-freebsd-x64": "1.32.0",
|
|
770
|
+
"lightningcss-linux-arm-gnueabihf": "1.32.0",
|
|
771
|
+
"lightningcss-linux-arm64-gnu": "1.32.0",
|
|
772
|
+
"lightningcss-linux-arm64-musl": "1.32.0",
|
|
773
|
+
"lightningcss-linux-x64-gnu": "1.32.0",
|
|
774
|
+
"lightningcss-linux-x64-musl": "1.32.0",
|
|
775
|
+
"lightningcss-win32-arm64-msvc": "1.32.0",
|
|
776
|
+
"lightningcss-win32-x64-msvc": "1.32.0"
|
|
777
|
+
}
|
|
778
|
+
},
|
|
779
|
+
"node_modules/lightningcss-android-arm64": {
|
|
780
|
+
"version": "1.32.0",
|
|
781
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
|
|
782
|
+
"integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
|
|
783
|
+
"cpu": [
|
|
784
|
+
"arm64"
|
|
785
|
+
],
|
|
786
|
+
"dev": true,
|
|
787
|
+
"license": "MPL-2.0",
|
|
788
|
+
"optional": true,
|
|
789
|
+
"os": [
|
|
790
|
+
"android"
|
|
791
|
+
],
|
|
792
|
+
"engines": {
|
|
793
|
+
"node": ">= 12.0.0"
|
|
794
|
+
},
|
|
795
|
+
"funding": {
|
|
796
|
+
"type": "opencollective",
|
|
797
|
+
"url": "https://opencollective.com/parcel"
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
"node_modules/lightningcss-darwin-arm64": {
|
|
801
|
+
"version": "1.32.0",
|
|
802
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
|
|
803
|
+
"integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
|
|
804
|
+
"cpu": [
|
|
805
|
+
"arm64"
|
|
806
|
+
],
|
|
807
|
+
"dev": true,
|
|
808
|
+
"license": "MPL-2.0",
|
|
809
|
+
"optional": true,
|
|
810
|
+
"os": [
|
|
811
|
+
"darwin"
|
|
812
|
+
],
|
|
813
|
+
"engines": {
|
|
814
|
+
"node": ">= 12.0.0"
|
|
815
|
+
},
|
|
816
|
+
"funding": {
|
|
817
|
+
"type": "opencollective",
|
|
818
|
+
"url": "https://opencollective.com/parcel"
|
|
819
|
+
}
|
|
820
|
+
},
|
|
821
|
+
"node_modules/lightningcss-darwin-x64": {
|
|
822
|
+
"version": "1.32.0",
|
|
823
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
|
|
824
|
+
"integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
|
|
825
|
+
"cpu": [
|
|
826
|
+
"x64"
|
|
827
|
+
],
|
|
828
|
+
"dev": true,
|
|
829
|
+
"license": "MPL-2.0",
|
|
830
|
+
"optional": true,
|
|
831
|
+
"os": [
|
|
832
|
+
"darwin"
|
|
833
|
+
],
|
|
834
|
+
"engines": {
|
|
835
|
+
"node": ">= 12.0.0"
|
|
836
|
+
},
|
|
837
|
+
"funding": {
|
|
838
|
+
"type": "opencollective",
|
|
839
|
+
"url": "https://opencollective.com/parcel"
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
"node_modules/lightningcss-freebsd-x64": {
|
|
843
|
+
"version": "1.32.0",
|
|
844
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
|
|
845
|
+
"integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
|
|
846
|
+
"cpu": [
|
|
847
|
+
"x64"
|
|
848
|
+
],
|
|
849
|
+
"dev": true,
|
|
850
|
+
"license": "MPL-2.0",
|
|
851
|
+
"optional": true,
|
|
852
|
+
"os": [
|
|
853
|
+
"freebsd"
|
|
854
|
+
],
|
|
855
|
+
"engines": {
|
|
856
|
+
"node": ">= 12.0.0"
|
|
857
|
+
},
|
|
858
|
+
"funding": {
|
|
859
|
+
"type": "opencollective",
|
|
860
|
+
"url": "https://opencollective.com/parcel"
|
|
861
|
+
}
|
|
862
|
+
},
|
|
863
|
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
864
|
+
"version": "1.32.0",
|
|
865
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
|
|
866
|
+
"integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
|
|
867
|
+
"cpu": [
|
|
868
|
+
"arm"
|
|
869
|
+
],
|
|
870
|
+
"dev": true,
|
|
871
|
+
"license": "MPL-2.0",
|
|
872
|
+
"optional": true,
|
|
873
|
+
"os": [
|
|
874
|
+
"linux"
|
|
875
|
+
],
|
|
876
|
+
"engines": {
|
|
877
|
+
"node": ">= 12.0.0"
|
|
878
|
+
},
|
|
879
|
+
"funding": {
|
|
880
|
+
"type": "opencollective",
|
|
881
|
+
"url": "https://opencollective.com/parcel"
|
|
882
|
+
}
|
|
883
|
+
},
|
|
884
|
+
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
885
|
+
"version": "1.32.0",
|
|
886
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
|
|
887
|
+
"integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
|
|
888
|
+
"cpu": [
|
|
889
|
+
"arm64"
|
|
890
|
+
],
|
|
891
|
+
"dev": true,
|
|
892
|
+
"license": "MPL-2.0",
|
|
893
|
+
"optional": true,
|
|
894
|
+
"os": [
|
|
895
|
+
"linux"
|
|
896
|
+
],
|
|
897
|
+
"engines": {
|
|
898
|
+
"node": ">= 12.0.0"
|
|
899
|
+
},
|
|
900
|
+
"funding": {
|
|
901
|
+
"type": "opencollective",
|
|
902
|
+
"url": "https://opencollective.com/parcel"
|
|
903
|
+
}
|
|
904
|
+
},
|
|
905
|
+
"node_modules/lightningcss-linux-arm64-musl": {
|
|
906
|
+
"version": "1.32.0",
|
|
907
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
|
|
908
|
+
"integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
|
|
909
|
+
"cpu": [
|
|
910
|
+
"arm64"
|
|
911
|
+
],
|
|
912
|
+
"dev": true,
|
|
913
|
+
"license": "MPL-2.0",
|
|
914
|
+
"optional": true,
|
|
915
|
+
"os": [
|
|
916
|
+
"linux"
|
|
917
|
+
],
|
|
918
|
+
"engines": {
|
|
919
|
+
"node": ">= 12.0.0"
|
|
920
|
+
},
|
|
921
|
+
"funding": {
|
|
922
|
+
"type": "opencollective",
|
|
923
|
+
"url": "https://opencollective.com/parcel"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"node_modules/lightningcss-linux-x64-gnu": {
|
|
927
|
+
"version": "1.32.0",
|
|
928
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
|
|
929
|
+
"integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
|
|
930
|
+
"cpu": [
|
|
931
|
+
"x64"
|
|
932
|
+
],
|
|
933
|
+
"dev": true,
|
|
934
|
+
"license": "MPL-2.0",
|
|
935
|
+
"optional": true,
|
|
936
|
+
"os": [
|
|
937
|
+
"linux"
|
|
938
|
+
],
|
|
939
|
+
"engines": {
|
|
940
|
+
"node": ">= 12.0.0"
|
|
941
|
+
},
|
|
942
|
+
"funding": {
|
|
943
|
+
"type": "opencollective",
|
|
944
|
+
"url": "https://opencollective.com/parcel"
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
"node_modules/lightningcss-linux-x64-musl": {
|
|
948
|
+
"version": "1.32.0",
|
|
949
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
|
|
950
|
+
"integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
|
|
951
|
+
"cpu": [
|
|
952
|
+
"x64"
|
|
953
|
+
],
|
|
954
|
+
"dev": true,
|
|
955
|
+
"license": "MPL-2.0",
|
|
956
|
+
"optional": true,
|
|
957
|
+
"os": [
|
|
958
|
+
"linux"
|
|
959
|
+
],
|
|
960
|
+
"engines": {
|
|
961
|
+
"node": ">= 12.0.0"
|
|
962
|
+
},
|
|
963
|
+
"funding": {
|
|
964
|
+
"type": "opencollective",
|
|
965
|
+
"url": "https://opencollective.com/parcel"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
969
|
+
"version": "1.32.0",
|
|
970
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
|
|
971
|
+
"integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
|
|
972
|
+
"cpu": [
|
|
973
|
+
"arm64"
|
|
974
|
+
],
|
|
975
|
+
"dev": true,
|
|
976
|
+
"license": "MPL-2.0",
|
|
977
|
+
"optional": true,
|
|
978
|
+
"os": [
|
|
979
|
+
"win32"
|
|
980
|
+
],
|
|
981
|
+
"engines": {
|
|
982
|
+
"node": ">= 12.0.0"
|
|
983
|
+
},
|
|
984
|
+
"funding": {
|
|
985
|
+
"type": "opencollective",
|
|
986
|
+
"url": "https://opencollective.com/parcel"
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
"node_modules/lightningcss-win32-x64-msvc": {
|
|
990
|
+
"version": "1.32.0",
|
|
991
|
+
"resolved": "https://registry.npmmirror.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
|
|
992
|
+
"integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
|
|
993
|
+
"cpu": [
|
|
994
|
+
"x64"
|
|
995
|
+
],
|
|
996
|
+
"dev": true,
|
|
997
|
+
"license": "MPL-2.0",
|
|
998
|
+
"optional": true,
|
|
999
|
+
"os": [
|
|
1000
|
+
"win32"
|
|
1001
|
+
],
|
|
1002
|
+
"engines": {
|
|
1003
|
+
"node": ">= 12.0.0"
|
|
1004
|
+
},
|
|
1005
|
+
"funding": {
|
|
1006
|
+
"type": "opencollective",
|
|
1007
|
+
"url": "https://opencollective.com/parcel"
|
|
1008
|
+
}
|
|
1009
|
+
},
|
|
1010
|
+
"node_modules/magic-string": {
|
|
1011
|
+
"version": "0.30.21",
|
|
1012
|
+
"resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
|
|
1013
|
+
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
1014
|
+
"license": "MIT",
|
|
1015
|
+
"dependencies": {
|
|
1016
|
+
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
"node_modules/mitt": {
|
|
1020
|
+
"version": "3.0.1",
|
|
1021
|
+
"resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz",
|
|
1022
|
+
"integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
|
|
1023
|
+
"license": "MIT"
|
|
1024
|
+
},
|
|
1025
|
+
"node_modules/muggle-string": {
|
|
1026
|
+
"version": "0.4.1",
|
|
1027
|
+
"resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz",
|
|
1028
|
+
"integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
|
|
1029
|
+
"dev": true,
|
|
1030
|
+
"license": "MIT"
|
|
1031
|
+
},
|
|
1032
|
+
"node_modules/nanoid": {
|
|
1033
|
+
"version": "3.3.11",
|
|
1034
|
+
"resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
|
|
1035
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
1036
|
+
"funding": [
|
|
1037
|
+
{
|
|
1038
|
+
"type": "github",
|
|
1039
|
+
"url": "https://github.com/sponsors/ai"
|
|
1040
|
+
}
|
|
1041
|
+
],
|
|
1042
|
+
"license": "MIT",
|
|
1043
|
+
"bin": {
|
|
1044
|
+
"nanoid": "bin/nanoid.cjs"
|
|
1045
|
+
},
|
|
1046
|
+
"engines": {
|
|
1047
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
"node_modules/path-browserify": {
|
|
1051
|
+
"version": "1.0.1",
|
|
1052
|
+
"resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz",
|
|
1053
|
+
"integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
|
|
1054
|
+
"dev": true,
|
|
1055
|
+
"license": "MIT"
|
|
1056
|
+
},
|
|
1057
|
+
"node_modules/perfect-debounce": {
|
|
1058
|
+
"version": "1.0.0",
|
|
1059
|
+
"resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
|
|
1060
|
+
"integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
|
|
1061
|
+
"license": "MIT"
|
|
1062
|
+
},
|
|
1063
|
+
"node_modules/picocolors": {
|
|
1064
|
+
"version": "1.1.1",
|
|
1065
|
+
"resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
|
|
1066
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1067
|
+
"license": "ISC"
|
|
1068
|
+
},
|
|
1069
|
+
"node_modules/picomatch": {
|
|
1070
|
+
"version": "4.0.4",
|
|
1071
|
+
"resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.4.tgz",
|
|
1072
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
1073
|
+
"dev": true,
|
|
1074
|
+
"license": "MIT",
|
|
1075
|
+
"engines": {
|
|
1076
|
+
"node": ">=12"
|
|
1077
|
+
},
|
|
1078
|
+
"funding": {
|
|
1079
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
"node_modules/pinia": {
|
|
1083
|
+
"version": "3.0.4",
|
|
1084
|
+
"resolved": "https://registry.npmmirror.com/pinia/-/pinia-3.0.4.tgz",
|
|
1085
|
+
"integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
|
|
1086
|
+
"license": "MIT",
|
|
1087
|
+
"dependencies": {
|
|
1088
|
+
"@vue/devtools-api": "^7.7.7"
|
|
1089
|
+
},
|
|
1090
|
+
"funding": {
|
|
1091
|
+
"url": "https://github.com/sponsors/posva"
|
|
1092
|
+
},
|
|
1093
|
+
"peerDependencies": {
|
|
1094
|
+
"typescript": ">=4.5.0",
|
|
1095
|
+
"vue": "^3.5.11"
|
|
1096
|
+
},
|
|
1097
|
+
"peerDependenciesMeta": {
|
|
1098
|
+
"typescript": {
|
|
1099
|
+
"optional": true
|
|
1100
|
+
}
|
|
1101
|
+
}
|
|
1102
|
+
},
|
|
1103
|
+
"node_modules/postcss": {
|
|
1104
|
+
"version": "8.5.8",
|
|
1105
|
+
"resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.8.tgz",
|
|
1106
|
+
"integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
|
|
1107
|
+
"funding": [
|
|
1108
|
+
{
|
|
1109
|
+
"type": "opencollective",
|
|
1110
|
+
"url": "https://opencollective.com/postcss/"
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"type": "tidelift",
|
|
1114
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"type": "github",
|
|
1118
|
+
"url": "https://github.com/sponsors/ai"
|
|
1119
|
+
}
|
|
1120
|
+
],
|
|
1121
|
+
"license": "MIT",
|
|
1122
|
+
"dependencies": {
|
|
1123
|
+
"nanoid": "^3.3.11",
|
|
1124
|
+
"picocolors": "^1.1.1",
|
|
1125
|
+
"source-map-js": "^1.2.1"
|
|
1126
|
+
},
|
|
1127
|
+
"engines": {
|
|
1128
|
+
"node": "^10 || ^12 || >=14"
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
"node_modules/rfdc": {
|
|
1132
|
+
"version": "1.4.1",
|
|
1133
|
+
"resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz",
|
|
1134
|
+
"integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
|
|
1135
|
+
"license": "MIT"
|
|
1136
|
+
},
|
|
1137
|
+
"node_modules/rolldown": {
|
|
1138
|
+
"version": "1.0.0-rc.12",
|
|
1139
|
+
"resolved": "https://registry.npmmirror.com/rolldown/-/rolldown-1.0.0-rc.12.tgz",
|
|
1140
|
+
"integrity": "sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==",
|
|
1141
|
+
"dev": true,
|
|
1142
|
+
"license": "MIT",
|
|
1143
|
+
"dependencies": {
|
|
1144
|
+
"@oxc-project/types": "=0.122.0",
|
|
1145
|
+
"@rolldown/pluginutils": "1.0.0-rc.12"
|
|
1146
|
+
},
|
|
1147
|
+
"bin": {
|
|
1148
|
+
"rolldown": "bin/cli.mjs"
|
|
1149
|
+
},
|
|
1150
|
+
"engines": {
|
|
1151
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
1152
|
+
},
|
|
1153
|
+
"optionalDependencies": {
|
|
1154
|
+
"@rolldown/binding-android-arm64": "1.0.0-rc.12",
|
|
1155
|
+
"@rolldown/binding-darwin-arm64": "1.0.0-rc.12",
|
|
1156
|
+
"@rolldown/binding-darwin-x64": "1.0.0-rc.12",
|
|
1157
|
+
"@rolldown/binding-freebsd-x64": "1.0.0-rc.12",
|
|
1158
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12",
|
|
1159
|
+
"@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12",
|
|
1160
|
+
"@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12",
|
|
1161
|
+
"@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12",
|
|
1162
|
+
"@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12",
|
|
1163
|
+
"@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12",
|
|
1164
|
+
"@rolldown/binding-linux-x64-musl": "1.0.0-rc.12",
|
|
1165
|
+
"@rolldown/binding-openharmony-arm64": "1.0.0-rc.12",
|
|
1166
|
+
"@rolldown/binding-wasm32-wasi": "1.0.0-rc.12",
|
|
1167
|
+
"@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12",
|
|
1168
|
+
"@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12"
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
1171
|
+
"node_modules/rolldown/node_modules/@rolldown/pluginutils": {
|
|
1172
|
+
"version": "1.0.0-rc.12",
|
|
1173
|
+
"resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.12.tgz",
|
|
1174
|
+
"integrity": "sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==",
|
|
1175
|
+
"dev": true,
|
|
1176
|
+
"license": "MIT"
|
|
1177
|
+
},
|
|
1178
|
+
"node_modules/source-map-js": {
|
|
1179
|
+
"version": "1.2.1",
|
|
1180
|
+
"resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1181
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1182
|
+
"license": "BSD-3-Clause",
|
|
1183
|
+
"engines": {
|
|
1184
|
+
"node": ">=0.10.0"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
"node_modules/speakingurl": {
|
|
1188
|
+
"version": "14.0.1",
|
|
1189
|
+
"resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz",
|
|
1190
|
+
"integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
|
|
1191
|
+
"license": "BSD-3-Clause",
|
|
1192
|
+
"engines": {
|
|
1193
|
+
"node": ">=0.10.0"
|
|
1194
|
+
}
|
|
1195
|
+
},
|
|
1196
|
+
"node_modules/superjson": {
|
|
1197
|
+
"version": "2.2.6",
|
|
1198
|
+
"resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz",
|
|
1199
|
+
"integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
|
|
1200
|
+
"license": "MIT",
|
|
1201
|
+
"dependencies": {
|
|
1202
|
+
"copy-anything": "^4"
|
|
1203
|
+
},
|
|
1204
|
+
"engines": {
|
|
1205
|
+
"node": ">=16"
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
"node_modules/tinyglobby": {
|
|
1209
|
+
"version": "0.2.15",
|
|
1210
|
+
"resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
|
1211
|
+
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
|
|
1212
|
+
"dev": true,
|
|
1213
|
+
"license": "MIT",
|
|
1214
|
+
"dependencies": {
|
|
1215
|
+
"fdir": "^6.5.0",
|
|
1216
|
+
"picomatch": "^4.0.3"
|
|
1217
|
+
},
|
|
1218
|
+
"engines": {
|
|
1219
|
+
"node": ">=12.0.0"
|
|
1220
|
+
},
|
|
1221
|
+
"funding": {
|
|
1222
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
"node_modules/tslib": {
|
|
1226
|
+
"version": "2.8.1",
|
|
1227
|
+
"resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
|
|
1228
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
1229
|
+
"dev": true,
|
|
1230
|
+
"license": "0BSD",
|
|
1231
|
+
"optional": true
|
|
1232
|
+
},
|
|
1233
|
+
"node_modules/typescript": {
|
|
1234
|
+
"version": "6.0.2",
|
|
1235
|
+
"resolved": "https://registry.npmmirror.com/typescript/-/typescript-6.0.2.tgz",
|
|
1236
|
+
"integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==",
|
|
1237
|
+
"devOptional": true,
|
|
1238
|
+
"license": "Apache-2.0",
|
|
1239
|
+
"bin": {
|
|
1240
|
+
"tsc": "bin/tsc",
|
|
1241
|
+
"tsserver": "bin/tsserver"
|
|
1242
|
+
},
|
|
1243
|
+
"engines": {
|
|
1244
|
+
"node": ">=14.17"
|
|
1245
|
+
}
|
|
1246
|
+
},
|
|
1247
|
+
"node_modules/vite": {
|
|
1248
|
+
"version": "8.0.3",
|
|
1249
|
+
"resolved": "https://registry.npmmirror.com/vite/-/vite-8.0.3.tgz",
|
|
1250
|
+
"integrity": "sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==",
|
|
1251
|
+
"dev": true,
|
|
1252
|
+
"license": "MIT",
|
|
1253
|
+
"dependencies": {
|
|
1254
|
+
"lightningcss": "^1.32.0",
|
|
1255
|
+
"picomatch": "^4.0.4",
|
|
1256
|
+
"postcss": "^8.5.8",
|
|
1257
|
+
"rolldown": "1.0.0-rc.12",
|
|
1258
|
+
"tinyglobby": "^0.2.15"
|
|
1259
|
+
},
|
|
1260
|
+
"bin": {
|
|
1261
|
+
"vite": "bin/vite.js"
|
|
1262
|
+
},
|
|
1263
|
+
"engines": {
|
|
1264
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
1265
|
+
},
|
|
1266
|
+
"funding": {
|
|
1267
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
1268
|
+
},
|
|
1269
|
+
"optionalDependencies": {
|
|
1270
|
+
"fsevents": "~2.3.3"
|
|
1271
|
+
},
|
|
1272
|
+
"peerDependencies": {
|
|
1273
|
+
"@types/node": "^20.19.0 || >=22.12.0",
|
|
1274
|
+
"@vitejs/devtools": "^0.1.0",
|
|
1275
|
+
"esbuild": "^0.27.0",
|
|
1276
|
+
"jiti": ">=1.21.0",
|
|
1277
|
+
"less": "^4.0.0",
|
|
1278
|
+
"sass": "^1.70.0",
|
|
1279
|
+
"sass-embedded": "^1.70.0",
|
|
1280
|
+
"stylus": ">=0.54.8",
|
|
1281
|
+
"sugarss": "^5.0.0",
|
|
1282
|
+
"terser": "^5.16.0",
|
|
1283
|
+
"tsx": "^4.8.1",
|
|
1284
|
+
"yaml": "^2.4.2"
|
|
1285
|
+
},
|
|
1286
|
+
"peerDependenciesMeta": {
|
|
1287
|
+
"@types/node": {
|
|
1288
|
+
"optional": true
|
|
1289
|
+
},
|
|
1290
|
+
"@vitejs/devtools": {
|
|
1291
|
+
"optional": true
|
|
1292
|
+
},
|
|
1293
|
+
"esbuild": {
|
|
1294
|
+
"optional": true
|
|
1295
|
+
},
|
|
1296
|
+
"jiti": {
|
|
1297
|
+
"optional": true
|
|
1298
|
+
},
|
|
1299
|
+
"less": {
|
|
1300
|
+
"optional": true
|
|
1301
|
+
},
|
|
1302
|
+
"sass": {
|
|
1303
|
+
"optional": true
|
|
1304
|
+
},
|
|
1305
|
+
"sass-embedded": {
|
|
1306
|
+
"optional": true
|
|
1307
|
+
},
|
|
1308
|
+
"stylus": {
|
|
1309
|
+
"optional": true
|
|
1310
|
+
},
|
|
1311
|
+
"sugarss": {
|
|
1312
|
+
"optional": true
|
|
1313
|
+
},
|
|
1314
|
+
"terser": {
|
|
1315
|
+
"optional": true
|
|
1316
|
+
},
|
|
1317
|
+
"tsx": {
|
|
1318
|
+
"optional": true
|
|
1319
|
+
},
|
|
1320
|
+
"yaml": {
|
|
1321
|
+
"optional": true
|
|
1322
|
+
}
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
"node_modules/vscode-uri": {
|
|
1326
|
+
"version": "3.1.0",
|
|
1327
|
+
"resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.1.0.tgz",
|
|
1328
|
+
"integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
|
|
1329
|
+
"dev": true,
|
|
1330
|
+
"license": "MIT"
|
|
1331
|
+
},
|
|
1332
|
+
"node_modules/vue": {
|
|
1333
|
+
"version": "3.5.31",
|
|
1334
|
+
"resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.31.tgz",
|
|
1335
|
+
"integrity": "sha512-iV/sU9SzOlmA/0tygSmjkEN6Jbs3nPoIPFhCMLD2STrjgOU8DX7ZtzMhg4ahVwf5Rp9KoFzcXeB1ZrVbLBp5/Q==",
|
|
1336
|
+
"license": "MIT",
|
|
1337
|
+
"dependencies": {
|
|
1338
|
+
"@vue/compiler-dom": "3.5.31",
|
|
1339
|
+
"@vue/compiler-sfc": "3.5.31",
|
|
1340
|
+
"@vue/runtime-dom": "3.5.31",
|
|
1341
|
+
"@vue/server-renderer": "3.5.31",
|
|
1342
|
+
"@vue/shared": "3.5.31"
|
|
1343
|
+
},
|
|
1344
|
+
"peerDependencies": {
|
|
1345
|
+
"typescript": "*"
|
|
1346
|
+
},
|
|
1347
|
+
"peerDependenciesMeta": {
|
|
1348
|
+
"typescript": {
|
|
1349
|
+
"optional": true
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
},
|
|
1353
|
+
"node_modules/vue-tsc": {
|
|
1354
|
+
"version": "3.2.6",
|
|
1355
|
+
"resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-3.2.6.tgz",
|
|
1356
|
+
"integrity": "sha512-gYW/kWI0XrwGzd0PKc7tVB/qpdeAkIZLNZb10/InizkQjHjnT8weZ/vBarZoj4kHKbUTZT/bAVgoOr8x4NsQ/Q==",
|
|
1357
|
+
"dev": true,
|
|
1358
|
+
"license": "MIT",
|
|
1359
|
+
"dependencies": {
|
|
1360
|
+
"@volar/typescript": "2.4.28",
|
|
1361
|
+
"@vue/language-core": "3.2.6"
|
|
1362
|
+
},
|
|
1363
|
+
"bin": {
|
|
1364
|
+
"vue-tsc": "bin/vue-tsc.js"
|
|
1365
|
+
},
|
|
1366
|
+
"peerDependencies": {
|
|
1367
|
+
"typescript": ">=5.0.0"
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
}
|