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,883 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
pinia:
|
|
12
|
+
specifier: ^3.0.4
|
|
13
|
+
version: 3.0.4(typescript@6.0.2)(vue@3.5.31(typescript@6.0.2))
|
|
14
|
+
vue:
|
|
15
|
+
specifier: ^3.5.31
|
|
16
|
+
version: 3.5.31(typescript@6.0.2)
|
|
17
|
+
devDependencies:
|
|
18
|
+
'@vitejs/plugin-vue':
|
|
19
|
+
specifier: ^6.0.5
|
|
20
|
+
version: 6.0.5(vite@8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(jiti@2.6.1))(vue@3.5.31(typescript@6.0.2))
|
|
21
|
+
globals:
|
|
22
|
+
specifier: ^17.4.0
|
|
23
|
+
version: 17.4.0
|
|
24
|
+
jiti:
|
|
25
|
+
specifier: ^2.6.1
|
|
26
|
+
version: 2.6.1
|
|
27
|
+
typescript:
|
|
28
|
+
specifier: ^6.0.2
|
|
29
|
+
version: 6.0.2
|
|
30
|
+
vite:
|
|
31
|
+
specifier: ^8.0.3
|
|
32
|
+
version: 8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(jiti@2.6.1)
|
|
33
|
+
vue-tsc:
|
|
34
|
+
specifier: ^3.2.6
|
|
35
|
+
version: 3.2.6(typescript@6.0.2)
|
|
36
|
+
|
|
37
|
+
packages:
|
|
38
|
+
|
|
39
|
+
'@babel/helper-string-parser@7.27.1':
|
|
40
|
+
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
|
|
41
|
+
engines: {node: '>=6.9.0'}
|
|
42
|
+
|
|
43
|
+
'@babel/helper-validator-identifier@7.28.5':
|
|
44
|
+
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
|
|
45
|
+
engines: {node: '>=6.9.0'}
|
|
46
|
+
|
|
47
|
+
'@babel/parser@7.29.2':
|
|
48
|
+
resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
|
|
49
|
+
engines: {node: '>=6.0.0'}
|
|
50
|
+
hasBin: true
|
|
51
|
+
|
|
52
|
+
'@babel/types@7.29.0':
|
|
53
|
+
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
|
|
54
|
+
engines: {node: '>=6.9.0'}
|
|
55
|
+
|
|
56
|
+
'@emnapi/core@1.9.1':
|
|
57
|
+
resolution: {integrity: sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==}
|
|
58
|
+
|
|
59
|
+
'@emnapi/runtime@1.9.1':
|
|
60
|
+
resolution: {integrity: sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==}
|
|
61
|
+
|
|
62
|
+
'@emnapi/wasi-threads@1.2.0':
|
|
63
|
+
resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==}
|
|
64
|
+
|
|
65
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
66
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
67
|
+
|
|
68
|
+
'@napi-rs/wasm-runtime@1.1.2':
|
|
69
|
+
resolution: {integrity: sha512-sNXv5oLJ7ob93xkZ1XnxisYhGYXfaG9f65/ZgYuAu3qt7b3NadcOEhLvx28hv31PgX8SZJRYrAIPQilQmFpLVw==}
|
|
70
|
+
peerDependencies:
|
|
71
|
+
'@emnapi/core': ^1.7.1
|
|
72
|
+
'@emnapi/runtime': ^1.7.1
|
|
73
|
+
|
|
74
|
+
'@oxc-project/types@0.122.0':
|
|
75
|
+
resolution: {integrity: sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==}
|
|
76
|
+
|
|
77
|
+
'@rolldown/binding-android-arm64@1.0.0-rc.12':
|
|
78
|
+
resolution: {integrity: sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==}
|
|
79
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
80
|
+
cpu: [arm64]
|
|
81
|
+
os: [android]
|
|
82
|
+
|
|
83
|
+
'@rolldown/binding-darwin-arm64@1.0.0-rc.12':
|
|
84
|
+
resolution: {integrity: sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==}
|
|
85
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
86
|
+
cpu: [arm64]
|
|
87
|
+
os: [darwin]
|
|
88
|
+
|
|
89
|
+
'@rolldown/binding-darwin-x64@1.0.0-rc.12':
|
|
90
|
+
resolution: {integrity: sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==}
|
|
91
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
92
|
+
cpu: [x64]
|
|
93
|
+
os: [darwin]
|
|
94
|
+
|
|
95
|
+
'@rolldown/binding-freebsd-x64@1.0.0-rc.12':
|
|
96
|
+
resolution: {integrity: sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==}
|
|
97
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
98
|
+
cpu: [x64]
|
|
99
|
+
os: [freebsd]
|
|
100
|
+
|
|
101
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12':
|
|
102
|
+
resolution: {integrity: sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==}
|
|
103
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
104
|
+
cpu: [arm]
|
|
105
|
+
os: [linux]
|
|
106
|
+
|
|
107
|
+
'@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12':
|
|
108
|
+
resolution: {integrity: sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==}
|
|
109
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
110
|
+
cpu: [arm64]
|
|
111
|
+
os: [linux]
|
|
112
|
+
libc: [glibc]
|
|
113
|
+
|
|
114
|
+
'@rolldown/binding-linux-arm64-musl@1.0.0-rc.12':
|
|
115
|
+
resolution: {integrity: sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==}
|
|
116
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
117
|
+
cpu: [arm64]
|
|
118
|
+
os: [linux]
|
|
119
|
+
libc: [musl]
|
|
120
|
+
|
|
121
|
+
'@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12':
|
|
122
|
+
resolution: {integrity: sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==}
|
|
123
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
124
|
+
cpu: [ppc64]
|
|
125
|
+
os: [linux]
|
|
126
|
+
libc: [glibc]
|
|
127
|
+
|
|
128
|
+
'@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12':
|
|
129
|
+
resolution: {integrity: sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==}
|
|
130
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
131
|
+
cpu: [s390x]
|
|
132
|
+
os: [linux]
|
|
133
|
+
libc: [glibc]
|
|
134
|
+
|
|
135
|
+
'@rolldown/binding-linux-x64-gnu@1.0.0-rc.12':
|
|
136
|
+
resolution: {integrity: sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==}
|
|
137
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
138
|
+
cpu: [x64]
|
|
139
|
+
os: [linux]
|
|
140
|
+
libc: [glibc]
|
|
141
|
+
|
|
142
|
+
'@rolldown/binding-linux-x64-musl@1.0.0-rc.12':
|
|
143
|
+
resolution: {integrity: sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==}
|
|
144
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
145
|
+
cpu: [x64]
|
|
146
|
+
os: [linux]
|
|
147
|
+
libc: [musl]
|
|
148
|
+
|
|
149
|
+
'@rolldown/binding-openharmony-arm64@1.0.0-rc.12':
|
|
150
|
+
resolution: {integrity: sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==}
|
|
151
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
152
|
+
cpu: [arm64]
|
|
153
|
+
os: [openharmony]
|
|
154
|
+
|
|
155
|
+
'@rolldown/binding-wasm32-wasi@1.0.0-rc.12':
|
|
156
|
+
resolution: {integrity: sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==}
|
|
157
|
+
engines: {node: '>=14.0.0'}
|
|
158
|
+
cpu: [wasm32]
|
|
159
|
+
|
|
160
|
+
'@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12':
|
|
161
|
+
resolution: {integrity: sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==}
|
|
162
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
163
|
+
cpu: [arm64]
|
|
164
|
+
os: [win32]
|
|
165
|
+
|
|
166
|
+
'@rolldown/binding-win32-x64-msvc@1.0.0-rc.12':
|
|
167
|
+
resolution: {integrity: sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==}
|
|
168
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
169
|
+
cpu: [x64]
|
|
170
|
+
os: [win32]
|
|
171
|
+
|
|
172
|
+
'@rolldown/pluginutils@1.0.0-rc.12':
|
|
173
|
+
resolution: {integrity: sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==}
|
|
174
|
+
|
|
175
|
+
'@rolldown/pluginutils@1.0.0-rc.2':
|
|
176
|
+
resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==}
|
|
177
|
+
|
|
178
|
+
'@tybys/wasm-util@0.10.1':
|
|
179
|
+
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
|
|
180
|
+
|
|
181
|
+
'@vitejs/plugin-vue@6.0.5':
|
|
182
|
+
resolution: {integrity: sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==}
|
|
183
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
184
|
+
peerDependencies:
|
|
185
|
+
vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
186
|
+
vue: ^3.2.25
|
|
187
|
+
|
|
188
|
+
'@volar/language-core@2.4.28':
|
|
189
|
+
resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==}
|
|
190
|
+
|
|
191
|
+
'@volar/source-map@2.4.28':
|
|
192
|
+
resolution: {integrity: sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==}
|
|
193
|
+
|
|
194
|
+
'@volar/typescript@2.4.28':
|
|
195
|
+
resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==}
|
|
196
|
+
|
|
197
|
+
'@vue/compiler-core@3.5.31':
|
|
198
|
+
resolution: {integrity: sha512-k/ueL14aNIEy5Onf0OVzR8kiqF/WThgLdFhxwa4e/KF/0qe38IwIdofoSWBTvvxQOesaz6riAFAUaYjoF9fLLQ==}
|
|
199
|
+
|
|
200
|
+
'@vue/compiler-dom@3.5.31':
|
|
201
|
+
resolution: {integrity: sha512-BMY/ozS/xxjYqRFL+tKdRpATJYDTTgWSo0+AJvJNg4ig+Hgb0dOsHPXvloHQ5hmlivUqw1Yt2pPIqp4e0v1GUw==}
|
|
202
|
+
|
|
203
|
+
'@vue/compiler-sfc@3.5.31':
|
|
204
|
+
resolution: {integrity: sha512-M8wpPgR9UJ8MiRGjppvx9uWJfLV7A/T+/rL8s/y3QG3u0c2/YZgff3d6SuimKRIhcYnWg5fTfDMlz2E6seUW8Q==}
|
|
205
|
+
|
|
206
|
+
'@vue/compiler-ssr@3.5.31':
|
|
207
|
+
resolution: {integrity: sha512-h0xIMxrt/LHOvJKMri+vdYT92BrK3HFLtDqq9Pr/lVVfE4IyKZKvWf0vJFW10Yr6nX02OR4MkJwI0c1HDa1hog==}
|
|
208
|
+
|
|
209
|
+
'@vue/devtools-api@7.7.9':
|
|
210
|
+
resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
|
|
211
|
+
|
|
212
|
+
'@vue/devtools-kit@7.7.9':
|
|
213
|
+
resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
|
|
214
|
+
|
|
215
|
+
'@vue/devtools-shared@7.7.9':
|
|
216
|
+
resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
|
|
217
|
+
|
|
218
|
+
'@vue/language-core@3.2.6':
|
|
219
|
+
resolution: {integrity: sha512-xYYYX3/aVup576tP/23sEUpgiEnujrENaoNRbaozC1/MA9I6EGFQRJb4xrt/MmUCAGlxTKL2RmT8JLTPqagCkg==}
|
|
220
|
+
|
|
221
|
+
'@vue/reactivity@3.5.31':
|
|
222
|
+
resolution: {integrity: sha512-DtKXxk9E/KuVvt8VxWu+6Luc9I9ETNcqR1T1oW1gf02nXaZ1kuAx58oVu7uX9XxJR0iJCro6fqBLw9oSBELo5g==}
|
|
223
|
+
|
|
224
|
+
'@vue/runtime-core@3.5.31':
|
|
225
|
+
resolution: {integrity: sha512-AZPmIHXEAyhpkmN7aWlqjSfYynmkWlluDNPHMCZKFHH+lLtxP/30UJmoVhXmbDoP1Ng0jG0fyY2zCj1PnSSA6Q==}
|
|
226
|
+
|
|
227
|
+
'@vue/runtime-dom@3.5.31':
|
|
228
|
+
resolution: {integrity: sha512-xQJsNRmGPeDCJq/u813tyonNgWBFjzfVkBwDREdEWndBnGdHLHgkwNBQxLtg4zDrzKTEcnikUy1UUNecb3lJ6g==}
|
|
229
|
+
|
|
230
|
+
'@vue/server-renderer@3.5.31':
|
|
231
|
+
resolution: {integrity: sha512-GJuwRvMcdZX/CriUnyIIOGkx3rMV3H6sOu0JhdKbduaeCji6zb60iOGMY7tFoN24NfsUYoFBhshZtGxGpxO4iA==}
|
|
232
|
+
peerDependencies:
|
|
233
|
+
vue: 3.5.31
|
|
234
|
+
|
|
235
|
+
'@vue/shared@3.5.31':
|
|
236
|
+
resolution: {integrity: sha512-nBxuiuS9Lj5bPkPbWogPUnjxxWpkRniX7e5UBQDWl6Fsf4roq9wwV+cR7ezQ4zXswNvPIlsdj1slcLB7XCsRAw==}
|
|
237
|
+
|
|
238
|
+
alien-signals@3.1.2:
|
|
239
|
+
resolution: {integrity: sha512-d9dYqZTS90WLiU0I5c6DHj/HcKkF8ZyGN3G5x8wSbslulz70KOxaqCT0hQCo9KOyhVqzqGojvNdJXoTumZOtcw==}
|
|
240
|
+
|
|
241
|
+
birpc@2.9.0:
|
|
242
|
+
resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
|
|
243
|
+
|
|
244
|
+
copy-anything@4.0.5:
|
|
245
|
+
resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
|
|
246
|
+
engines: {node: '>=18'}
|
|
247
|
+
|
|
248
|
+
csstype@3.2.3:
|
|
249
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
250
|
+
|
|
251
|
+
detect-libc@2.1.2:
|
|
252
|
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
253
|
+
engines: {node: '>=8'}
|
|
254
|
+
|
|
255
|
+
entities@7.0.1:
|
|
256
|
+
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
|
|
257
|
+
engines: {node: '>=0.12'}
|
|
258
|
+
|
|
259
|
+
estree-walker@2.0.2:
|
|
260
|
+
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
|
|
261
|
+
|
|
262
|
+
fdir@6.5.0:
|
|
263
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
264
|
+
engines: {node: '>=12.0.0'}
|
|
265
|
+
peerDependencies:
|
|
266
|
+
picomatch: ^3 || ^4
|
|
267
|
+
peerDependenciesMeta:
|
|
268
|
+
picomatch:
|
|
269
|
+
optional: true
|
|
270
|
+
|
|
271
|
+
fsevents@2.3.3:
|
|
272
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
273
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
274
|
+
os: [darwin]
|
|
275
|
+
|
|
276
|
+
globals@17.4.0:
|
|
277
|
+
resolution: {integrity: sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==}
|
|
278
|
+
engines: {node: '>=18'}
|
|
279
|
+
|
|
280
|
+
hookable@5.5.3:
|
|
281
|
+
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
|
|
282
|
+
|
|
283
|
+
is-what@5.5.0:
|
|
284
|
+
resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
|
|
285
|
+
engines: {node: '>=18'}
|
|
286
|
+
|
|
287
|
+
jiti@2.6.1:
|
|
288
|
+
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
|
|
289
|
+
hasBin: true
|
|
290
|
+
|
|
291
|
+
lightningcss-android-arm64@1.32.0:
|
|
292
|
+
resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
|
|
293
|
+
engines: {node: '>= 12.0.0'}
|
|
294
|
+
cpu: [arm64]
|
|
295
|
+
os: [android]
|
|
296
|
+
|
|
297
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
298
|
+
resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
|
|
299
|
+
engines: {node: '>= 12.0.0'}
|
|
300
|
+
cpu: [arm64]
|
|
301
|
+
os: [darwin]
|
|
302
|
+
|
|
303
|
+
lightningcss-darwin-x64@1.32.0:
|
|
304
|
+
resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
|
|
305
|
+
engines: {node: '>= 12.0.0'}
|
|
306
|
+
cpu: [x64]
|
|
307
|
+
os: [darwin]
|
|
308
|
+
|
|
309
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
310
|
+
resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
|
|
311
|
+
engines: {node: '>= 12.0.0'}
|
|
312
|
+
cpu: [x64]
|
|
313
|
+
os: [freebsd]
|
|
314
|
+
|
|
315
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
316
|
+
resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
|
|
317
|
+
engines: {node: '>= 12.0.0'}
|
|
318
|
+
cpu: [arm]
|
|
319
|
+
os: [linux]
|
|
320
|
+
|
|
321
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
322
|
+
resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
|
|
323
|
+
engines: {node: '>= 12.0.0'}
|
|
324
|
+
cpu: [arm64]
|
|
325
|
+
os: [linux]
|
|
326
|
+
libc: [glibc]
|
|
327
|
+
|
|
328
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
329
|
+
resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
|
|
330
|
+
engines: {node: '>= 12.0.0'}
|
|
331
|
+
cpu: [arm64]
|
|
332
|
+
os: [linux]
|
|
333
|
+
libc: [musl]
|
|
334
|
+
|
|
335
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
336
|
+
resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
|
|
337
|
+
engines: {node: '>= 12.0.0'}
|
|
338
|
+
cpu: [x64]
|
|
339
|
+
os: [linux]
|
|
340
|
+
libc: [glibc]
|
|
341
|
+
|
|
342
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
343
|
+
resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
|
|
344
|
+
engines: {node: '>= 12.0.0'}
|
|
345
|
+
cpu: [x64]
|
|
346
|
+
os: [linux]
|
|
347
|
+
libc: [musl]
|
|
348
|
+
|
|
349
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
350
|
+
resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
|
|
351
|
+
engines: {node: '>= 12.0.0'}
|
|
352
|
+
cpu: [arm64]
|
|
353
|
+
os: [win32]
|
|
354
|
+
|
|
355
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
356
|
+
resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
|
|
357
|
+
engines: {node: '>= 12.0.0'}
|
|
358
|
+
cpu: [x64]
|
|
359
|
+
os: [win32]
|
|
360
|
+
|
|
361
|
+
lightningcss@1.32.0:
|
|
362
|
+
resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
|
|
363
|
+
engines: {node: '>= 12.0.0'}
|
|
364
|
+
|
|
365
|
+
magic-string@0.30.21:
|
|
366
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
367
|
+
|
|
368
|
+
mitt@3.0.1:
|
|
369
|
+
resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
|
|
370
|
+
|
|
371
|
+
muggle-string@0.4.1:
|
|
372
|
+
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
|
|
373
|
+
|
|
374
|
+
nanoid@3.3.11:
|
|
375
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
376
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
377
|
+
hasBin: true
|
|
378
|
+
|
|
379
|
+
path-browserify@1.0.1:
|
|
380
|
+
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
|
|
381
|
+
|
|
382
|
+
perfect-debounce@1.0.0:
|
|
383
|
+
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
|
|
384
|
+
|
|
385
|
+
picocolors@1.1.1:
|
|
386
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
387
|
+
|
|
388
|
+
picomatch@4.0.4:
|
|
389
|
+
resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
|
|
390
|
+
engines: {node: '>=12'}
|
|
391
|
+
|
|
392
|
+
pinia@3.0.4:
|
|
393
|
+
resolution: {integrity: sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==}
|
|
394
|
+
peerDependencies:
|
|
395
|
+
typescript: '>=4.5.0'
|
|
396
|
+
vue: ^3.5.11
|
|
397
|
+
peerDependenciesMeta:
|
|
398
|
+
typescript:
|
|
399
|
+
optional: true
|
|
400
|
+
|
|
401
|
+
postcss@8.5.8:
|
|
402
|
+
resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
|
|
403
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
404
|
+
|
|
405
|
+
rfdc@1.4.1:
|
|
406
|
+
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
|
|
407
|
+
|
|
408
|
+
rolldown@1.0.0-rc.12:
|
|
409
|
+
resolution: {integrity: sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==}
|
|
410
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
411
|
+
hasBin: true
|
|
412
|
+
|
|
413
|
+
source-map-js@1.2.1:
|
|
414
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
415
|
+
engines: {node: '>=0.10.0'}
|
|
416
|
+
|
|
417
|
+
speakingurl@14.0.1:
|
|
418
|
+
resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
|
|
419
|
+
engines: {node: '>=0.10.0'}
|
|
420
|
+
|
|
421
|
+
superjson@2.2.6:
|
|
422
|
+
resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==}
|
|
423
|
+
engines: {node: '>=16'}
|
|
424
|
+
|
|
425
|
+
tinyglobby@0.2.15:
|
|
426
|
+
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
427
|
+
engines: {node: '>=12.0.0'}
|
|
428
|
+
|
|
429
|
+
tslib@2.8.1:
|
|
430
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
431
|
+
|
|
432
|
+
typescript@6.0.2:
|
|
433
|
+
resolution: {integrity: sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==}
|
|
434
|
+
engines: {node: '>=14.17'}
|
|
435
|
+
hasBin: true
|
|
436
|
+
|
|
437
|
+
vite@8.0.3:
|
|
438
|
+
resolution: {integrity: sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==}
|
|
439
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
440
|
+
hasBin: true
|
|
441
|
+
peerDependencies:
|
|
442
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
443
|
+
'@vitejs/devtools': ^0.1.0
|
|
444
|
+
esbuild: ^0.27.0
|
|
445
|
+
jiti: '>=1.21.0'
|
|
446
|
+
less: ^4.0.0
|
|
447
|
+
sass: ^1.70.0
|
|
448
|
+
sass-embedded: ^1.70.0
|
|
449
|
+
stylus: '>=0.54.8'
|
|
450
|
+
sugarss: ^5.0.0
|
|
451
|
+
terser: ^5.16.0
|
|
452
|
+
tsx: ^4.8.1
|
|
453
|
+
yaml: ^2.4.2
|
|
454
|
+
peerDependenciesMeta:
|
|
455
|
+
'@types/node':
|
|
456
|
+
optional: true
|
|
457
|
+
'@vitejs/devtools':
|
|
458
|
+
optional: true
|
|
459
|
+
esbuild:
|
|
460
|
+
optional: true
|
|
461
|
+
jiti:
|
|
462
|
+
optional: true
|
|
463
|
+
less:
|
|
464
|
+
optional: true
|
|
465
|
+
sass:
|
|
466
|
+
optional: true
|
|
467
|
+
sass-embedded:
|
|
468
|
+
optional: true
|
|
469
|
+
stylus:
|
|
470
|
+
optional: true
|
|
471
|
+
sugarss:
|
|
472
|
+
optional: true
|
|
473
|
+
terser:
|
|
474
|
+
optional: true
|
|
475
|
+
tsx:
|
|
476
|
+
optional: true
|
|
477
|
+
yaml:
|
|
478
|
+
optional: true
|
|
479
|
+
|
|
480
|
+
vscode-uri@3.1.0:
|
|
481
|
+
resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
|
|
482
|
+
|
|
483
|
+
vue-tsc@3.2.6:
|
|
484
|
+
resolution: {integrity: sha512-gYW/kWI0XrwGzd0PKc7tVB/qpdeAkIZLNZb10/InizkQjHjnT8weZ/vBarZoj4kHKbUTZT/bAVgoOr8x4NsQ/Q==}
|
|
485
|
+
hasBin: true
|
|
486
|
+
peerDependencies:
|
|
487
|
+
typescript: '>=5.0.0'
|
|
488
|
+
|
|
489
|
+
vue@3.5.31:
|
|
490
|
+
resolution: {integrity: sha512-iV/sU9SzOlmA/0tygSmjkEN6Jbs3nPoIPFhCMLD2STrjgOU8DX7ZtzMhg4ahVwf5Rp9KoFzcXeB1ZrVbLBp5/Q==}
|
|
491
|
+
peerDependencies:
|
|
492
|
+
typescript: '*'
|
|
493
|
+
peerDependenciesMeta:
|
|
494
|
+
typescript:
|
|
495
|
+
optional: true
|
|
496
|
+
|
|
497
|
+
snapshots:
|
|
498
|
+
|
|
499
|
+
'@babel/helper-string-parser@7.27.1': {}
|
|
500
|
+
|
|
501
|
+
'@babel/helper-validator-identifier@7.28.5': {}
|
|
502
|
+
|
|
503
|
+
'@babel/parser@7.29.2':
|
|
504
|
+
dependencies:
|
|
505
|
+
'@babel/types': 7.29.0
|
|
506
|
+
|
|
507
|
+
'@babel/types@7.29.0':
|
|
508
|
+
dependencies:
|
|
509
|
+
'@babel/helper-string-parser': 7.27.1
|
|
510
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
511
|
+
|
|
512
|
+
'@emnapi/core@1.9.1':
|
|
513
|
+
dependencies:
|
|
514
|
+
'@emnapi/wasi-threads': 1.2.0
|
|
515
|
+
tslib: 2.8.1
|
|
516
|
+
optional: true
|
|
517
|
+
|
|
518
|
+
'@emnapi/runtime@1.9.1':
|
|
519
|
+
dependencies:
|
|
520
|
+
tslib: 2.8.1
|
|
521
|
+
optional: true
|
|
522
|
+
|
|
523
|
+
'@emnapi/wasi-threads@1.2.0':
|
|
524
|
+
dependencies:
|
|
525
|
+
tslib: 2.8.1
|
|
526
|
+
optional: true
|
|
527
|
+
|
|
528
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
529
|
+
|
|
530
|
+
'@napi-rs/wasm-runtime@1.1.2(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)':
|
|
531
|
+
dependencies:
|
|
532
|
+
'@emnapi/core': 1.9.1
|
|
533
|
+
'@emnapi/runtime': 1.9.1
|
|
534
|
+
'@tybys/wasm-util': 0.10.1
|
|
535
|
+
optional: true
|
|
536
|
+
|
|
537
|
+
'@oxc-project/types@0.122.0': {}
|
|
538
|
+
|
|
539
|
+
'@rolldown/binding-android-arm64@1.0.0-rc.12':
|
|
540
|
+
optional: true
|
|
541
|
+
|
|
542
|
+
'@rolldown/binding-darwin-arm64@1.0.0-rc.12':
|
|
543
|
+
optional: true
|
|
544
|
+
|
|
545
|
+
'@rolldown/binding-darwin-x64@1.0.0-rc.12':
|
|
546
|
+
optional: true
|
|
547
|
+
|
|
548
|
+
'@rolldown/binding-freebsd-x64@1.0.0-rc.12':
|
|
549
|
+
optional: true
|
|
550
|
+
|
|
551
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12':
|
|
552
|
+
optional: true
|
|
553
|
+
|
|
554
|
+
'@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12':
|
|
555
|
+
optional: true
|
|
556
|
+
|
|
557
|
+
'@rolldown/binding-linux-arm64-musl@1.0.0-rc.12':
|
|
558
|
+
optional: true
|
|
559
|
+
|
|
560
|
+
'@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12':
|
|
561
|
+
optional: true
|
|
562
|
+
|
|
563
|
+
'@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12':
|
|
564
|
+
optional: true
|
|
565
|
+
|
|
566
|
+
'@rolldown/binding-linux-x64-gnu@1.0.0-rc.12':
|
|
567
|
+
optional: true
|
|
568
|
+
|
|
569
|
+
'@rolldown/binding-linux-x64-musl@1.0.0-rc.12':
|
|
570
|
+
optional: true
|
|
571
|
+
|
|
572
|
+
'@rolldown/binding-openharmony-arm64@1.0.0-rc.12':
|
|
573
|
+
optional: true
|
|
574
|
+
|
|
575
|
+
'@rolldown/binding-wasm32-wasi@1.0.0-rc.12(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)':
|
|
576
|
+
dependencies:
|
|
577
|
+
'@napi-rs/wasm-runtime': 1.1.2(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)
|
|
578
|
+
transitivePeerDependencies:
|
|
579
|
+
- '@emnapi/core'
|
|
580
|
+
- '@emnapi/runtime'
|
|
581
|
+
optional: true
|
|
582
|
+
|
|
583
|
+
'@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12':
|
|
584
|
+
optional: true
|
|
585
|
+
|
|
586
|
+
'@rolldown/binding-win32-x64-msvc@1.0.0-rc.12':
|
|
587
|
+
optional: true
|
|
588
|
+
|
|
589
|
+
'@rolldown/pluginutils@1.0.0-rc.12': {}
|
|
590
|
+
|
|
591
|
+
'@rolldown/pluginutils@1.0.0-rc.2': {}
|
|
592
|
+
|
|
593
|
+
'@tybys/wasm-util@0.10.1':
|
|
594
|
+
dependencies:
|
|
595
|
+
tslib: 2.8.1
|
|
596
|
+
optional: true
|
|
597
|
+
|
|
598
|
+
'@vitejs/plugin-vue@6.0.5(vite@8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(jiti@2.6.1))(vue@3.5.31(typescript@6.0.2))':
|
|
599
|
+
dependencies:
|
|
600
|
+
'@rolldown/pluginutils': 1.0.0-rc.2
|
|
601
|
+
vite: 8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(jiti@2.6.1)
|
|
602
|
+
vue: 3.5.31(typescript@6.0.2)
|
|
603
|
+
|
|
604
|
+
'@volar/language-core@2.4.28':
|
|
605
|
+
dependencies:
|
|
606
|
+
'@volar/source-map': 2.4.28
|
|
607
|
+
|
|
608
|
+
'@volar/source-map@2.4.28': {}
|
|
609
|
+
|
|
610
|
+
'@volar/typescript@2.4.28':
|
|
611
|
+
dependencies:
|
|
612
|
+
'@volar/language-core': 2.4.28
|
|
613
|
+
path-browserify: 1.0.1
|
|
614
|
+
vscode-uri: 3.1.0
|
|
615
|
+
|
|
616
|
+
'@vue/compiler-core@3.5.31':
|
|
617
|
+
dependencies:
|
|
618
|
+
'@babel/parser': 7.29.2
|
|
619
|
+
'@vue/shared': 3.5.31
|
|
620
|
+
entities: 7.0.1
|
|
621
|
+
estree-walker: 2.0.2
|
|
622
|
+
source-map-js: 1.2.1
|
|
623
|
+
|
|
624
|
+
'@vue/compiler-dom@3.5.31':
|
|
625
|
+
dependencies:
|
|
626
|
+
'@vue/compiler-core': 3.5.31
|
|
627
|
+
'@vue/shared': 3.5.31
|
|
628
|
+
|
|
629
|
+
'@vue/compiler-sfc@3.5.31':
|
|
630
|
+
dependencies:
|
|
631
|
+
'@babel/parser': 7.29.2
|
|
632
|
+
'@vue/compiler-core': 3.5.31
|
|
633
|
+
'@vue/compiler-dom': 3.5.31
|
|
634
|
+
'@vue/compiler-ssr': 3.5.31
|
|
635
|
+
'@vue/shared': 3.5.31
|
|
636
|
+
estree-walker: 2.0.2
|
|
637
|
+
magic-string: 0.30.21
|
|
638
|
+
postcss: 8.5.8
|
|
639
|
+
source-map-js: 1.2.1
|
|
640
|
+
|
|
641
|
+
'@vue/compiler-ssr@3.5.31':
|
|
642
|
+
dependencies:
|
|
643
|
+
'@vue/compiler-dom': 3.5.31
|
|
644
|
+
'@vue/shared': 3.5.31
|
|
645
|
+
|
|
646
|
+
'@vue/devtools-api@7.7.9':
|
|
647
|
+
dependencies:
|
|
648
|
+
'@vue/devtools-kit': 7.7.9
|
|
649
|
+
|
|
650
|
+
'@vue/devtools-kit@7.7.9':
|
|
651
|
+
dependencies:
|
|
652
|
+
'@vue/devtools-shared': 7.7.9
|
|
653
|
+
birpc: 2.9.0
|
|
654
|
+
hookable: 5.5.3
|
|
655
|
+
mitt: 3.0.1
|
|
656
|
+
perfect-debounce: 1.0.0
|
|
657
|
+
speakingurl: 14.0.1
|
|
658
|
+
superjson: 2.2.6
|
|
659
|
+
|
|
660
|
+
'@vue/devtools-shared@7.7.9':
|
|
661
|
+
dependencies:
|
|
662
|
+
rfdc: 1.4.1
|
|
663
|
+
|
|
664
|
+
'@vue/language-core@3.2.6':
|
|
665
|
+
dependencies:
|
|
666
|
+
'@volar/language-core': 2.4.28
|
|
667
|
+
'@vue/compiler-dom': 3.5.31
|
|
668
|
+
'@vue/shared': 3.5.31
|
|
669
|
+
alien-signals: 3.1.2
|
|
670
|
+
muggle-string: 0.4.1
|
|
671
|
+
path-browserify: 1.0.1
|
|
672
|
+
picomatch: 4.0.4
|
|
673
|
+
|
|
674
|
+
'@vue/reactivity@3.5.31':
|
|
675
|
+
dependencies:
|
|
676
|
+
'@vue/shared': 3.5.31
|
|
677
|
+
|
|
678
|
+
'@vue/runtime-core@3.5.31':
|
|
679
|
+
dependencies:
|
|
680
|
+
'@vue/reactivity': 3.5.31
|
|
681
|
+
'@vue/shared': 3.5.31
|
|
682
|
+
|
|
683
|
+
'@vue/runtime-dom@3.5.31':
|
|
684
|
+
dependencies:
|
|
685
|
+
'@vue/reactivity': 3.5.31
|
|
686
|
+
'@vue/runtime-core': 3.5.31
|
|
687
|
+
'@vue/shared': 3.5.31
|
|
688
|
+
csstype: 3.2.3
|
|
689
|
+
|
|
690
|
+
'@vue/server-renderer@3.5.31(vue@3.5.31(typescript@6.0.2))':
|
|
691
|
+
dependencies:
|
|
692
|
+
'@vue/compiler-ssr': 3.5.31
|
|
693
|
+
'@vue/shared': 3.5.31
|
|
694
|
+
vue: 3.5.31(typescript@6.0.2)
|
|
695
|
+
|
|
696
|
+
'@vue/shared@3.5.31': {}
|
|
697
|
+
|
|
698
|
+
alien-signals@3.1.2: {}
|
|
699
|
+
|
|
700
|
+
birpc@2.9.0: {}
|
|
701
|
+
|
|
702
|
+
copy-anything@4.0.5:
|
|
703
|
+
dependencies:
|
|
704
|
+
is-what: 5.5.0
|
|
705
|
+
|
|
706
|
+
csstype@3.2.3: {}
|
|
707
|
+
|
|
708
|
+
detect-libc@2.1.2: {}
|
|
709
|
+
|
|
710
|
+
entities@7.0.1: {}
|
|
711
|
+
|
|
712
|
+
estree-walker@2.0.2: {}
|
|
713
|
+
|
|
714
|
+
fdir@6.5.0(picomatch@4.0.4):
|
|
715
|
+
optionalDependencies:
|
|
716
|
+
picomatch: 4.0.4
|
|
717
|
+
|
|
718
|
+
fsevents@2.3.3:
|
|
719
|
+
optional: true
|
|
720
|
+
|
|
721
|
+
globals@17.4.0: {}
|
|
722
|
+
|
|
723
|
+
hookable@5.5.3: {}
|
|
724
|
+
|
|
725
|
+
is-what@5.5.0: {}
|
|
726
|
+
|
|
727
|
+
jiti@2.6.1: {}
|
|
728
|
+
|
|
729
|
+
lightningcss-android-arm64@1.32.0:
|
|
730
|
+
optional: true
|
|
731
|
+
|
|
732
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
733
|
+
optional: true
|
|
734
|
+
|
|
735
|
+
lightningcss-darwin-x64@1.32.0:
|
|
736
|
+
optional: true
|
|
737
|
+
|
|
738
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
739
|
+
optional: true
|
|
740
|
+
|
|
741
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
742
|
+
optional: true
|
|
743
|
+
|
|
744
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
745
|
+
optional: true
|
|
746
|
+
|
|
747
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
748
|
+
optional: true
|
|
749
|
+
|
|
750
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
751
|
+
optional: true
|
|
752
|
+
|
|
753
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
754
|
+
optional: true
|
|
755
|
+
|
|
756
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
757
|
+
optional: true
|
|
758
|
+
|
|
759
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
760
|
+
optional: true
|
|
761
|
+
|
|
762
|
+
lightningcss@1.32.0:
|
|
763
|
+
dependencies:
|
|
764
|
+
detect-libc: 2.1.2
|
|
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
|
+
magic-string@0.30.21:
|
|
779
|
+
dependencies:
|
|
780
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
781
|
+
|
|
782
|
+
mitt@3.0.1: {}
|
|
783
|
+
|
|
784
|
+
muggle-string@0.4.1: {}
|
|
785
|
+
|
|
786
|
+
nanoid@3.3.11: {}
|
|
787
|
+
|
|
788
|
+
path-browserify@1.0.1: {}
|
|
789
|
+
|
|
790
|
+
perfect-debounce@1.0.0: {}
|
|
791
|
+
|
|
792
|
+
picocolors@1.1.1: {}
|
|
793
|
+
|
|
794
|
+
picomatch@4.0.4: {}
|
|
795
|
+
|
|
796
|
+
pinia@3.0.4(typescript@6.0.2)(vue@3.5.31(typescript@6.0.2)):
|
|
797
|
+
dependencies:
|
|
798
|
+
'@vue/devtools-api': 7.7.9
|
|
799
|
+
vue: 3.5.31(typescript@6.0.2)
|
|
800
|
+
optionalDependencies:
|
|
801
|
+
typescript: 6.0.2
|
|
802
|
+
|
|
803
|
+
postcss@8.5.8:
|
|
804
|
+
dependencies:
|
|
805
|
+
nanoid: 3.3.11
|
|
806
|
+
picocolors: 1.1.1
|
|
807
|
+
source-map-js: 1.2.1
|
|
808
|
+
|
|
809
|
+
rfdc@1.4.1: {}
|
|
810
|
+
|
|
811
|
+
rolldown@1.0.0-rc.12(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1):
|
|
812
|
+
dependencies:
|
|
813
|
+
'@oxc-project/types': 0.122.0
|
|
814
|
+
'@rolldown/pluginutils': 1.0.0-rc.12
|
|
815
|
+
optionalDependencies:
|
|
816
|
+
'@rolldown/binding-android-arm64': 1.0.0-rc.12
|
|
817
|
+
'@rolldown/binding-darwin-arm64': 1.0.0-rc.12
|
|
818
|
+
'@rolldown/binding-darwin-x64': 1.0.0-rc.12
|
|
819
|
+
'@rolldown/binding-freebsd-x64': 1.0.0-rc.12
|
|
820
|
+
'@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.12
|
|
821
|
+
'@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.12
|
|
822
|
+
'@rolldown/binding-linux-arm64-musl': 1.0.0-rc.12
|
|
823
|
+
'@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.12
|
|
824
|
+
'@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.12
|
|
825
|
+
'@rolldown/binding-linux-x64-gnu': 1.0.0-rc.12
|
|
826
|
+
'@rolldown/binding-linux-x64-musl': 1.0.0-rc.12
|
|
827
|
+
'@rolldown/binding-openharmony-arm64': 1.0.0-rc.12
|
|
828
|
+
'@rolldown/binding-wasm32-wasi': 1.0.0-rc.12(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)
|
|
829
|
+
'@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.12
|
|
830
|
+
'@rolldown/binding-win32-x64-msvc': 1.0.0-rc.12
|
|
831
|
+
transitivePeerDependencies:
|
|
832
|
+
- '@emnapi/core'
|
|
833
|
+
- '@emnapi/runtime'
|
|
834
|
+
|
|
835
|
+
source-map-js@1.2.1: {}
|
|
836
|
+
|
|
837
|
+
speakingurl@14.0.1: {}
|
|
838
|
+
|
|
839
|
+
superjson@2.2.6:
|
|
840
|
+
dependencies:
|
|
841
|
+
copy-anything: 4.0.5
|
|
842
|
+
|
|
843
|
+
tinyglobby@0.2.15:
|
|
844
|
+
dependencies:
|
|
845
|
+
fdir: 6.5.0(picomatch@4.0.4)
|
|
846
|
+
picomatch: 4.0.4
|
|
847
|
+
|
|
848
|
+
tslib@2.8.1:
|
|
849
|
+
optional: true
|
|
850
|
+
|
|
851
|
+
typescript@6.0.2: {}
|
|
852
|
+
|
|
853
|
+
vite@8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(jiti@2.6.1):
|
|
854
|
+
dependencies:
|
|
855
|
+
lightningcss: 1.32.0
|
|
856
|
+
picomatch: 4.0.4
|
|
857
|
+
postcss: 8.5.8
|
|
858
|
+
rolldown: 1.0.0-rc.12(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)
|
|
859
|
+
tinyglobby: 0.2.15
|
|
860
|
+
optionalDependencies:
|
|
861
|
+
fsevents: 2.3.3
|
|
862
|
+
jiti: 2.6.1
|
|
863
|
+
transitivePeerDependencies:
|
|
864
|
+
- '@emnapi/core'
|
|
865
|
+
- '@emnapi/runtime'
|
|
866
|
+
|
|
867
|
+
vscode-uri@3.1.0: {}
|
|
868
|
+
|
|
869
|
+
vue-tsc@3.2.6(typescript@6.0.2):
|
|
870
|
+
dependencies:
|
|
871
|
+
'@volar/typescript': 2.4.28
|
|
872
|
+
'@vue/language-core': 3.2.6
|
|
873
|
+
typescript: 6.0.2
|
|
874
|
+
|
|
875
|
+
vue@3.5.31(typescript@6.0.2):
|
|
876
|
+
dependencies:
|
|
877
|
+
'@vue/compiler-dom': 3.5.31
|
|
878
|
+
'@vue/compiler-sfc': 3.5.31
|
|
879
|
+
'@vue/runtime-dom': 3.5.31
|
|
880
|
+
'@vue/server-renderer': 3.5.31(vue@3.5.31(typescript@6.0.2))
|
|
881
|
+
'@vue/shared': 3.5.31
|
|
882
|
+
optionalDependencies:
|
|
883
|
+
typescript: 6.0.2
|