borgmcp-server 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +105 -0
- package/NOTICE +8 -0
- package/README.md +119 -0
- package/SECURITY.md +38 -0
- package/THIRD_PARTY_NOTICES.md +35 -0
- package/dist/bootstrap.d.ts +18 -0
- package/dist/bootstrap.js +104 -0
- package/dist/bootstrap.js.map +1 -0
- package/dist/cli.d.ts +7 -0
- package/dist/cli.js +96 -0
- package/dist/cli.js.map +1 -0
- package/dist/coordination-api.d.ts +25 -0
- package/dist/coordination-api.js +457 -0
- package/dist/coordination-api.js.map +1 -0
- package/dist/credentials.d.ts +58 -0
- package/dist/credentials.js +244 -0
- package/dist/credentials.js.map +1 -0
- package/dist/enrollment.d.ts +17 -0
- package/dist/enrollment.js +122 -0
- package/dist/enrollment.js.map +1 -0
- package/dist/https-server.d.ts +94 -0
- package/dist/https-server.js +814 -0
- package/dist/https-server.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/main.d.ts +3 -0
- package/dist/main.js +67 -0
- package/dist/main.js.map +1 -0
- package/dist/migrations.d.ts +8 -0
- package/dist/migrations.js +366 -0
- package/dist/migrations.js.map +1 -0
- package/dist/network-policy.d.ts +13 -0
- package/dist/network-policy.js +49 -0
- package/dist/network-policy.js.map +1 -0
- package/dist/operator-error.d.ts +3 -0
- package/dist/operator-error.js +63 -0
- package/dist/operator-error.js.map +1 -0
- package/dist/principal.d.ts +32 -0
- package/dist/principal.js +64 -0
- package/dist/principal.js.map +1 -0
- package/dist/protocol-draft.d.ts +2 -0
- package/dist/protocol-draft.js +31 -0
- package/dist/protocol-draft.js.map +1 -0
- package/dist/service.d.ts +61 -0
- package/dist/service.js +455 -0
- package/dist/service.js.map +1 -0
- package/dist/start-options.d.ts +2 -0
- package/dist/start-options.js +46 -0
- package/dist/start-options.js.map +1 -0
- package/dist/store.d.ts +327 -0
- package/dist/store.js +1729 -0
- package/dist/store.js.map +1 -0
- package/npm-shrinkwrap.json +1942 -0
- package/package.json +60 -0
- package/src/bootstrap.ts +127 -0
- package/src/cli.ts +102 -0
- package/src/coordination-api.ts +508 -0
- package/src/credentials.ts +319 -0
- package/src/enrollment.ts +156 -0
- package/src/https-server.ts +962 -0
- package/src/index.ts +3 -0
- package/src/main.ts +73 -0
- package/src/migrations.ts +394 -0
- package/src/network-policy.ts +65 -0
- package/src/operator-error.ts +97 -0
- package/src/principal.ts +106 -0
- package/src/protocol-draft.ts +32 -0
- package/src/service.ts +525 -0
- package/src/start-options.ts +46 -0
- package/src/store.ts +2316 -0
|
@@ -0,0 +1,1942 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "borgmcp-server",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "borgmcp-server",
|
|
9
|
+
"version": "0.1.1",
|
|
10
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"selfsigned": "5.5.0"
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"borg-mcp-server": "dist/main.js"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@types/node": "22.20.1",
|
|
19
|
+
"borgmcp-shared": "0.3.0",
|
|
20
|
+
"typescript": "7.0.2",
|
|
21
|
+
"vitest": "4.1.10"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=22.12.0",
|
|
25
|
+
"npm": ">=10.0.0"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"node_modules/@emnapi/core": {
|
|
29
|
+
"version": "1.11.1",
|
|
30
|
+
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
|
|
31
|
+
"integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
|
|
32
|
+
"dev": true,
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"optional": true,
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@emnapi/wasi-threads": "1.2.2",
|
|
37
|
+
"tslib": "^2.4.0"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"node_modules/@emnapi/runtime": {
|
|
41
|
+
"version": "1.11.1",
|
|
42
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
|
|
43
|
+
"integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
|
|
44
|
+
"dev": true,
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"optional": true,
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"tslib": "^2.4.0"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"node_modules/@emnapi/wasi-threads": {
|
|
52
|
+
"version": "1.2.2",
|
|
53
|
+
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
|
|
54
|
+
"integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
|
|
55
|
+
"dev": true,
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"optional": true,
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"tslib": "^2.4.0"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
63
|
+
"version": "1.5.5",
|
|
64
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
65
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
66
|
+
"dev": true,
|
|
67
|
+
"license": "MIT"
|
|
68
|
+
},
|
|
69
|
+
"node_modules/@napi-rs/wasm-runtime": {
|
|
70
|
+
"version": "1.1.6",
|
|
71
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz",
|
|
72
|
+
"integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==",
|
|
73
|
+
"dev": true,
|
|
74
|
+
"license": "MIT",
|
|
75
|
+
"optional": true,
|
|
76
|
+
"dependencies": {
|
|
77
|
+
"@tybys/wasm-util": "^0.10.3"
|
|
78
|
+
},
|
|
79
|
+
"funding": {
|
|
80
|
+
"type": "github",
|
|
81
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
82
|
+
},
|
|
83
|
+
"peerDependencies": {
|
|
84
|
+
"@emnapi/core": "^1.7.1",
|
|
85
|
+
"@emnapi/runtime": "^1.7.1"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"node_modules/@noble/hashes": {
|
|
89
|
+
"version": "1.4.0",
|
|
90
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
|
|
91
|
+
"integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
|
|
92
|
+
"license": "MIT",
|
|
93
|
+
"engines": {
|
|
94
|
+
"node": ">= 16"
|
|
95
|
+
},
|
|
96
|
+
"funding": {
|
|
97
|
+
"url": "https://paulmillr.com/funding/"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"node_modules/@oxc-project/types": {
|
|
101
|
+
"version": "0.139.0",
|
|
102
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.139.0.tgz",
|
|
103
|
+
"integrity": "sha512-r9gHphtCs+1M7J0pw6Sn/hh/Wpa/iQrOOkrNAlVLF/gHq+/CJmHIWKKUUhdWjcD6CIa8idarspCsASiXCXvFUw==",
|
|
104
|
+
"dev": true,
|
|
105
|
+
"license": "MIT",
|
|
106
|
+
"funding": {
|
|
107
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"node_modules/@peculiar/asn1-cms": {
|
|
111
|
+
"version": "2.8.0",
|
|
112
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-cms/-/asn1-cms-2.8.0.tgz",
|
|
113
|
+
"integrity": "sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA==",
|
|
114
|
+
"license": "MIT",
|
|
115
|
+
"dependencies": {
|
|
116
|
+
"@peculiar/asn1-schema": "^2.8.0",
|
|
117
|
+
"@peculiar/asn1-x509": "^2.8.0",
|
|
118
|
+
"@peculiar/asn1-x509-attr": "^2.8.0",
|
|
119
|
+
"asn1js": "^3.0.10",
|
|
120
|
+
"tslib": "^2.8.1"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"node_modules/@peculiar/asn1-csr": {
|
|
124
|
+
"version": "2.8.0",
|
|
125
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-csr/-/asn1-csr-2.8.0.tgz",
|
|
126
|
+
"integrity": "sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg==",
|
|
127
|
+
"license": "MIT",
|
|
128
|
+
"dependencies": {
|
|
129
|
+
"@peculiar/asn1-schema": "^2.8.0",
|
|
130
|
+
"@peculiar/asn1-x509": "^2.8.0",
|
|
131
|
+
"asn1js": "^3.0.10",
|
|
132
|
+
"tslib": "^2.8.1"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"node_modules/@peculiar/asn1-ecc": {
|
|
136
|
+
"version": "2.8.0",
|
|
137
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-ecc/-/asn1-ecc-2.8.0.tgz",
|
|
138
|
+
"integrity": "sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ==",
|
|
139
|
+
"license": "MIT",
|
|
140
|
+
"dependencies": {
|
|
141
|
+
"@peculiar/asn1-schema": "^2.8.0",
|
|
142
|
+
"@peculiar/asn1-x509": "^2.8.0",
|
|
143
|
+
"asn1js": "^3.0.10",
|
|
144
|
+
"tslib": "^2.8.1"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"node_modules/@peculiar/asn1-pfx": {
|
|
148
|
+
"version": "2.8.0",
|
|
149
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-pfx/-/asn1-pfx-2.8.0.tgz",
|
|
150
|
+
"integrity": "sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg==",
|
|
151
|
+
"license": "MIT",
|
|
152
|
+
"dependencies": {
|
|
153
|
+
"@peculiar/asn1-cms": "^2.8.0",
|
|
154
|
+
"@peculiar/asn1-pkcs8": "^2.8.0",
|
|
155
|
+
"@peculiar/asn1-rsa": "^2.8.0",
|
|
156
|
+
"@peculiar/asn1-schema": "^2.8.0",
|
|
157
|
+
"asn1js": "^3.0.10",
|
|
158
|
+
"tslib": "^2.8.1"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"node_modules/@peculiar/asn1-pkcs8": {
|
|
162
|
+
"version": "2.8.0",
|
|
163
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.8.0.tgz",
|
|
164
|
+
"integrity": "sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA==",
|
|
165
|
+
"license": "MIT",
|
|
166
|
+
"dependencies": {
|
|
167
|
+
"@peculiar/asn1-schema": "^2.8.0",
|
|
168
|
+
"@peculiar/asn1-x509": "^2.8.0",
|
|
169
|
+
"asn1js": "^3.0.10",
|
|
170
|
+
"tslib": "^2.8.1"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"node_modules/@peculiar/asn1-pkcs9": {
|
|
174
|
+
"version": "2.8.0",
|
|
175
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.8.0.tgz",
|
|
176
|
+
"integrity": "sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ==",
|
|
177
|
+
"license": "MIT",
|
|
178
|
+
"dependencies": {
|
|
179
|
+
"@peculiar/asn1-cms": "^2.8.0",
|
|
180
|
+
"@peculiar/asn1-pfx": "^2.8.0",
|
|
181
|
+
"@peculiar/asn1-pkcs8": "^2.8.0",
|
|
182
|
+
"@peculiar/asn1-schema": "^2.8.0",
|
|
183
|
+
"@peculiar/asn1-x509": "^2.8.0",
|
|
184
|
+
"@peculiar/asn1-x509-attr": "^2.8.0",
|
|
185
|
+
"asn1js": "^3.0.10",
|
|
186
|
+
"tslib": "^2.8.1"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"node_modules/@peculiar/asn1-rsa": {
|
|
190
|
+
"version": "2.8.0",
|
|
191
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-rsa/-/asn1-rsa-2.8.0.tgz",
|
|
192
|
+
"integrity": "sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg==",
|
|
193
|
+
"license": "MIT",
|
|
194
|
+
"dependencies": {
|
|
195
|
+
"@peculiar/asn1-schema": "^2.8.0",
|
|
196
|
+
"@peculiar/asn1-x509": "^2.8.0",
|
|
197
|
+
"asn1js": "^3.0.10",
|
|
198
|
+
"tslib": "^2.8.1"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"node_modules/@peculiar/asn1-schema": {
|
|
202
|
+
"version": "2.8.0",
|
|
203
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.8.0.tgz",
|
|
204
|
+
"integrity": "sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q==",
|
|
205
|
+
"license": "MIT",
|
|
206
|
+
"dependencies": {
|
|
207
|
+
"@peculiar/utils": "^2.0.2",
|
|
208
|
+
"asn1js": "^3.0.10",
|
|
209
|
+
"tslib": "^2.8.1"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"node_modules/@peculiar/asn1-x509": {
|
|
213
|
+
"version": "2.8.0",
|
|
214
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-x509/-/asn1-x509-2.8.0.tgz",
|
|
215
|
+
"integrity": "sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg==",
|
|
216
|
+
"license": "MIT",
|
|
217
|
+
"dependencies": {
|
|
218
|
+
"@peculiar/asn1-schema": "^2.8.0",
|
|
219
|
+
"@peculiar/utils": "^2.0.2",
|
|
220
|
+
"asn1js": "^3.0.10",
|
|
221
|
+
"tslib": "^2.8.1"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"node_modules/@peculiar/asn1-x509-attr": {
|
|
225
|
+
"version": "2.8.0",
|
|
226
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.8.0.tgz",
|
|
227
|
+
"integrity": "sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA==",
|
|
228
|
+
"license": "MIT",
|
|
229
|
+
"dependencies": {
|
|
230
|
+
"@peculiar/asn1-schema": "^2.8.0",
|
|
231
|
+
"@peculiar/asn1-x509": "^2.8.0",
|
|
232
|
+
"asn1js": "^3.0.10",
|
|
233
|
+
"tslib": "^2.8.1"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"node_modules/@peculiar/utils": {
|
|
237
|
+
"version": "2.0.3",
|
|
238
|
+
"resolved": "https://registry.npmjs.org/@peculiar/utils/-/utils-2.0.3.tgz",
|
|
239
|
+
"integrity": "sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==",
|
|
240
|
+
"license": "MIT",
|
|
241
|
+
"dependencies": {
|
|
242
|
+
"tslib": "^2.8.1"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"node_modules/@peculiar/x509": {
|
|
246
|
+
"version": "1.14.3",
|
|
247
|
+
"resolved": "https://registry.npmjs.org/@peculiar/x509/-/x509-1.14.3.tgz",
|
|
248
|
+
"integrity": "sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==",
|
|
249
|
+
"license": "MIT",
|
|
250
|
+
"dependencies": {
|
|
251
|
+
"@peculiar/asn1-cms": "^2.6.0",
|
|
252
|
+
"@peculiar/asn1-csr": "^2.6.0",
|
|
253
|
+
"@peculiar/asn1-ecc": "^2.6.0",
|
|
254
|
+
"@peculiar/asn1-pkcs9": "^2.6.0",
|
|
255
|
+
"@peculiar/asn1-rsa": "^2.6.0",
|
|
256
|
+
"@peculiar/asn1-schema": "^2.6.0",
|
|
257
|
+
"@peculiar/asn1-x509": "^2.6.0",
|
|
258
|
+
"pvtsutils": "^1.3.6",
|
|
259
|
+
"reflect-metadata": "^0.2.2",
|
|
260
|
+
"tslib": "^2.8.1",
|
|
261
|
+
"tsyringe": "^4.10.0"
|
|
262
|
+
},
|
|
263
|
+
"engines": {
|
|
264
|
+
"node": ">=20.0.0"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"node_modules/@rolldown/binding-android-arm64": {
|
|
268
|
+
"version": "1.1.5",
|
|
269
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.1.5.tgz",
|
|
270
|
+
"integrity": "sha512-lZg8fqIv2v7FF237bwMgzGZEJvGL79/s5knJ/i6FmsGF4XXlzccZ4jb+TrFIxtSSxFtIpdsgrPZeMk1I9AFcyQ==",
|
|
271
|
+
"cpu": [
|
|
272
|
+
"arm64"
|
|
273
|
+
],
|
|
274
|
+
"dev": true,
|
|
275
|
+
"license": "MIT",
|
|
276
|
+
"optional": true,
|
|
277
|
+
"os": [
|
|
278
|
+
"android"
|
|
279
|
+
],
|
|
280
|
+
"engines": {
|
|
281
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"node_modules/@rolldown/binding-darwin-arm64": {
|
|
285
|
+
"version": "1.1.5",
|
|
286
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.1.5.tgz",
|
|
287
|
+
"integrity": "sha512-51Bnx9pNiMRKSUNtBfySkNJ9vMU9Hh3I1ozDd6gyPPYzaXCfnptUcEZxXGYFn+ul2dtcMUiqGR1Yai2K10uoTw==",
|
|
288
|
+
"cpu": [
|
|
289
|
+
"arm64"
|
|
290
|
+
],
|
|
291
|
+
"dev": true,
|
|
292
|
+
"license": "MIT",
|
|
293
|
+
"optional": true,
|
|
294
|
+
"os": [
|
|
295
|
+
"darwin"
|
|
296
|
+
],
|
|
297
|
+
"engines": {
|
|
298
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"node_modules/@rolldown/binding-darwin-x64": {
|
|
302
|
+
"version": "1.1.5",
|
|
303
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.1.5.tgz",
|
|
304
|
+
"integrity": "sha512-Tm+gbfC0aHu1tBA/JvKQh32S0K6YgCHkiAF4/W6xX0K0RmNuc94VeK419dJoE65R5aRxmo+noZQSWrAMF6yb6g==",
|
|
305
|
+
"cpu": [
|
|
306
|
+
"x64"
|
|
307
|
+
],
|
|
308
|
+
"dev": true,
|
|
309
|
+
"license": "MIT",
|
|
310
|
+
"optional": true,
|
|
311
|
+
"os": [
|
|
312
|
+
"darwin"
|
|
313
|
+
],
|
|
314
|
+
"engines": {
|
|
315
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"node_modules/@rolldown/binding-freebsd-x64": {
|
|
319
|
+
"version": "1.1.5",
|
|
320
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.1.5.tgz",
|
|
321
|
+
"integrity": "sha512-JMzDKCCXq93YccG5gz3hvOs1oXRKAf0XYpfOS88e+wZrC8Iugj6j68867vrYZkvpDDpKn/KoKORThmchMpF6TA==",
|
|
322
|
+
"cpu": [
|
|
323
|
+
"x64"
|
|
324
|
+
],
|
|
325
|
+
"dev": true,
|
|
326
|
+
"license": "MIT",
|
|
327
|
+
"optional": true,
|
|
328
|
+
"os": [
|
|
329
|
+
"freebsd"
|
|
330
|
+
],
|
|
331
|
+
"engines": {
|
|
332
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
|
|
336
|
+
"version": "1.1.5",
|
|
337
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.1.5.tgz",
|
|
338
|
+
"integrity": "sha512-uML21j2K5TfPGutKxub+M+nLjZIrWjXQ5Grx4lCe/nimTj9B4L63zHpjXLl4y0L3mcm2htEQIb06oCG/szerNw==",
|
|
339
|
+
"cpu": [
|
|
340
|
+
"arm"
|
|
341
|
+
],
|
|
342
|
+
"dev": true,
|
|
343
|
+
"license": "MIT",
|
|
344
|
+
"optional": true,
|
|
345
|
+
"os": [
|
|
346
|
+
"linux"
|
|
347
|
+
],
|
|
348
|
+
"engines": {
|
|
349
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"node_modules/@rolldown/binding-linux-arm64-gnu": {
|
|
353
|
+
"version": "1.1.5",
|
|
354
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.1.5.tgz",
|
|
355
|
+
"integrity": "sha512-navSiuTMogvnQoZoM/v+l3ZWo50/NTwSHSzheABx/RCnmUPaKwq9qSo4Br2OYRs21+Fz8uFqITZM3H4opOB0/Q==",
|
|
356
|
+
"cpu": [
|
|
357
|
+
"arm64"
|
|
358
|
+
],
|
|
359
|
+
"dev": true,
|
|
360
|
+
"license": "MIT",
|
|
361
|
+
"optional": true,
|
|
362
|
+
"os": [
|
|
363
|
+
"linux"
|
|
364
|
+
],
|
|
365
|
+
"engines": {
|
|
366
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
"node_modules/@rolldown/binding-linux-arm64-musl": {
|
|
370
|
+
"version": "1.1.5",
|
|
371
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.1.5.tgz",
|
|
372
|
+
"integrity": "sha512-lAryqH7IteztmCXQXk0etKj4wBQ7Gx5S6LjKhsgp9zb8I5bsuvU/2llH1hDQcjsFeqIsovMVN339/8pUDDBXxA==",
|
|
373
|
+
"cpu": [
|
|
374
|
+
"arm64"
|
|
375
|
+
],
|
|
376
|
+
"dev": true,
|
|
377
|
+
"license": "MIT",
|
|
378
|
+
"optional": true,
|
|
379
|
+
"os": [
|
|
380
|
+
"linux"
|
|
381
|
+
],
|
|
382
|
+
"engines": {
|
|
383
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
"node_modules/@rolldown/binding-linux-ppc64-gnu": {
|
|
387
|
+
"version": "1.1.5",
|
|
388
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.1.5.tgz",
|
|
389
|
+
"integrity": "sha512-fsK/sNBnxzBlL4O1JNrZakVQxPspqpED5dLtNsZS9oOKmtSpdNIzxH2kkol5HYTWJN47sE20ztMJPxfZ89qGOg==",
|
|
390
|
+
"cpu": [
|
|
391
|
+
"ppc64"
|
|
392
|
+
],
|
|
393
|
+
"dev": true,
|
|
394
|
+
"license": "MIT",
|
|
395
|
+
"optional": true,
|
|
396
|
+
"os": [
|
|
397
|
+
"linux"
|
|
398
|
+
],
|
|
399
|
+
"engines": {
|
|
400
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"node_modules/@rolldown/binding-linux-s390x-gnu": {
|
|
404
|
+
"version": "1.1.5",
|
|
405
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.1.5.tgz",
|
|
406
|
+
"integrity": "sha512-gLYb4BIadlfTOYT5gO503n8zQjXflgzpD0FcyKh0Mzx3rqCZKnHoJWV9xe1KXUJ5lx2JfcSHr/mhzS0PC/McAA==",
|
|
407
|
+
"cpu": [
|
|
408
|
+
"s390x"
|
|
409
|
+
],
|
|
410
|
+
"dev": true,
|
|
411
|
+
"license": "MIT",
|
|
412
|
+
"optional": true,
|
|
413
|
+
"os": [
|
|
414
|
+
"linux"
|
|
415
|
+
],
|
|
416
|
+
"engines": {
|
|
417
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"node_modules/@rolldown/binding-linux-x64-gnu": {
|
|
421
|
+
"version": "1.1.5",
|
|
422
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.1.5.tgz",
|
|
423
|
+
"integrity": "sha512-FjcpEKUyJygHgs1o50VYNvkt5+7Le/VEdYt0AkRpkL33MnyQfwr8l5mXwMmfmTbyMPr5vJLC+8/Gd9gXnwU1QQ==",
|
|
424
|
+
"cpu": [
|
|
425
|
+
"x64"
|
|
426
|
+
],
|
|
427
|
+
"dev": true,
|
|
428
|
+
"license": "MIT",
|
|
429
|
+
"optional": true,
|
|
430
|
+
"os": [
|
|
431
|
+
"linux"
|
|
432
|
+
],
|
|
433
|
+
"engines": {
|
|
434
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"node_modules/@rolldown/binding-linux-x64-musl": {
|
|
438
|
+
"version": "1.1.5",
|
|
439
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.1.5.tgz",
|
|
440
|
+
"integrity": "sha512-Me+PfPI2TMeOQk0gYWfLQZtTktrmzbr8cDboqX83XKc7UrgAi55gF+2dUkWdxd19n55Essp2yeca+O9N5rBxHg==",
|
|
441
|
+
"cpu": [
|
|
442
|
+
"x64"
|
|
443
|
+
],
|
|
444
|
+
"dev": true,
|
|
445
|
+
"license": "MIT",
|
|
446
|
+
"optional": true,
|
|
447
|
+
"os": [
|
|
448
|
+
"linux"
|
|
449
|
+
],
|
|
450
|
+
"engines": {
|
|
451
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
"node_modules/@rolldown/binding-openharmony-arm64": {
|
|
455
|
+
"version": "1.1.5",
|
|
456
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.1.5.tgz",
|
|
457
|
+
"integrity": "sha512-yc5WrLzXks6zCQfn9Oxr8pORKyl/pF+QjHmW/Qx3qu0oyrrNC+y2JLTU1E2rcWYAmzlnqngWXHQjy51VzW70Vw==",
|
|
458
|
+
"cpu": [
|
|
459
|
+
"arm64"
|
|
460
|
+
],
|
|
461
|
+
"dev": true,
|
|
462
|
+
"license": "MIT",
|
|
463
|
+
"optional": true,
|
|
464
|
+
"os": [
|
|
465
|
+
"openharmony"
|
|
466
|
+
],
|
|
467
|
+
"engines": {
|
|
468
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
"node_modules/@rolldown/binding-wasm32-wasi": {
|
|
472
|
+
"version": "1.1.5",
|
|
473
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.1.5.tgz",
|
|
474
|
+
"integrity": "sha512-VbQGPX2b4r48TAMIM2cjgluIM1HYutm4pcTEJsle7iEP7sB1dFqtPLBVbdLAZCxy1txCcPxf4QFf4v8uvltPqA==",
|
|
475
|
+
"cpu": [
|
|
476
|
+
"wasm32"
|
|
477
|
+
],
|
|
478
|
+
"dev": true,
|
|
479
|
+
"license": "MIT",
|
|
480
|
+
"optional": true,
|
|
481
|
+
"dependencies": {
|
|
482
|
+
"@emnapi/core": "1.11.1",
|
|
483
|
+
"@emnapi/runtime": "1.11.1",
|
|
484
|
+
"@napi-rs/wasm-runtime": "^1.1.6"
|
|
485
|
+
},
|
|
486
|
+
"engines": {
|
|
487
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"node_modules/@rolldown/binding-win32-arm64-msvc": {
|
|
491
|
+
"version": "1.1.5",
|
|
492
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.1.5.tgz",
|
|
493
|
+
"integrity": "sha512-gHv82k63z4qpV5+Q1y/12KrK0ltWBukVDI8nZcbT7Tt/ZlOIVwppazneq0F93oDxTo3IgAMEDIoQh3E2n6mVsw==",
|
|
494
|
+
"cpu": [
|
|
495
|
+
"arm64"
|
|
496
|
+
],
|
|
497
|
+
"dev": true,
|
|
498
|
+
"license": "MIT",
|
|
499
|
+
"optional": true,
|
|
500
|
+
"os": [
|
|
501
|
+
"win32"
|
|
502
|
+
],
|
|
503
|
+
"engines": {
|
|
504
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"node_modules/@rolldown/binding-win32-x64-msvc": {
|
|
508
|
+
"version": "1.1.5",
|
|
509
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.1.5.tgz",
|
|
510
|
+
"integrity": "sha512-tTZuDBPw85tEN5PQi1pnEBzDy0Z49HtScLAbD5t6hyeU92A95pRWaSMw1GZZi/RwgSgUIl0xrSlXIT/9QzvYSA==",
|
|
511
|
+
"cpu": [
|
|
512
|
+
"x64"
|
|
513
|
+
],
|
|
514
|
+
"dev": true,
|
|
515
|
+
"license": "MIT",
|
|
516
|
+
"optional": true,
|
|
517
|
+
"os": [
|
|
518
|
+
"win32"
|
|
519
|
+
],
|
|
520
|
+
"engines": {
|
|
521
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"node_modules/@rolldown/pluginutils": {
|
|
525
|
+
"version": "1.0.1",
|
|
526
|
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
|
|
527
|
+
"integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
|
|
528
|
+
"dev": true,
|
|
529
|
+
"license": "MIT"
|
|
530
|
+
},
|
|
531
|
+
"node_modules/@standard-schema/spec": {
|
|
532
|
+
"version": "1.1.0",
|
|
533
|
+
"resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
|
|
534
|
+
"integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
|
|
535
|
+
"dev": true,
|
|
536
|
+
"license": "MIT"
|
|
537
|
+
},
|
|
538
|
+
"node_modules/@tybys/wasm-util": {
|
|
539
|
+
"version": "0.10.3",
|
|
540
|
+
"resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
|
|
541
|
+
"integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
|
|
542
|
+
"dev": true,
|
|
543
|
+
"license": "MIT",
|
|
544
|
+
"optional": true,
|
|
545
|
+
"dependencies": {
|
|
546
|
+
"tslib": "^2.4.0"
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
"node_modules/@types/chai": {
|
|
550
|
+
"version": "5.2.3",
|
|
551
|
+
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
|
|
552
|
+
"integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
|
|
553
|
+
"dev": true,
|
|
554
|
+
"license": "MIT",
|
|
555
|
+
"dependencies": {
|
|
556
|
+
"@types/deep-eql": "*",
|
|
557
|
+
"assertion-error": "^2.0.1"
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"node_modules/@types/deep-eql": {
|
|
561
|
+
"version": "4.0.2",
|
|
562
|
+
"resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
|
|
563
|
+
"integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
|
|
564
|
+
"dev": true,
|
|
565
|
+
"license": "MIT"
|
|
566
|
+
},
|
|
567
|
+
"node_modules/@types/estree": {
|
|
568
|
+
"version": "1.0.9",
|
|
569
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
|
|
570
|
+
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
571
|
+
"dev": true,
|
|
572
|
+
"license": "MIT"
|
|
573
|
+
},
|
|
574
|
+
"node_modules/@types/node": {
|
|
575
|
+
"version": "22.20.1",
|
|
576
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.1.tgz",
|
|
577
|
+
"integrity": "sha512-EANqOCF9QFyra+4pfxUcX9STKJpCLjMbObVzljIJomAWSnuSIEAvyzEU53GaajbXJEgdh0iEcPL+DGvpUd4k1Q==",
|
|
578
|
+
"dev": true,
|
|
579
|
+
"license": "MIT",
|
|
580
|
+
"dependencies": {
|
|
581
|
+
"undici-types": "~6.21.0"
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
"node_modules/@typescript/typescript-aix-ppc64": {
|
|
585
|
+
"version": "7.0.2",
|
|
586
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
|
|
587
|
+
"integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
|
|
588
|
+
"cpu": [
|
|
589
|
+
"ppc64"
|
|
590
|
+
],
|
|
591
|
+
"dev": true,
|
|
592
|
+
"license": "Apache-2.0",
|
|
593
|
+
"optional": true,
|
|
594
|
+
"os": [
|
|
595
|
+
"aix"
|
|
596
|
+
],
|
|
597
|
+
"engines": {
|
|
598
|
+
"node": ">=16.20.0"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"node_modules/@typescript/typescript-darwin-arm64": {
|
|
602
|
+
"version": "7.0.2",
|
|
603
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
|
|
604
|
+
"integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
|
|
605
|
+
"cpu": [
|
|
606
|
+
"arm64"
|
|
607
|
+
],
|
|
608
|
+
"dev": true,
|
|
609
|
+
"license": "Apache-2.0",
|
|
610
|
+
"optional": true,
|
|
611
|
+
"os": [
|
|
612
|
+
"darwin"
|
|
613
|
+
],
|
|
614
|
+
"engines": {
|
|
615
|
+
"node": ">=16.20.0"
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
"node_modules/@typescript/typescript-darwin-x64": {
|
|
619
|
+
"version": "7.0.2",
|
|
620
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
|
|
621
|
+
"integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
|
|
622
|
+
"cpu": [
|
|
623
|
+
"x64"
|
|
624
|
+
],
|
|
625
|
+
"dev": true,
|
|
626
|
+
"license": "Apache-2.0",
|
|
627
|
+
"optional": true,
|
|
628
|
+
"os": [
|
|
629
|
+
"darwin"
|
|
630
|
+
],
|
|
631
|
+
"engines": {
|
|
632
|
+
"node": ">=16.20.0"
|
|
633
|
+
}
|
|
634
|
+
},
|
|
635
|
+
"node_modules/@typescript/typescript-freebsd-arm64": {
|
|
636
|
+
"version": "7.0.2",
|
|
637
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
|
|
638
|
+
"integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
|
|
639
|
+
"cpu": [
|
|
640
|
+
"arm64"
|
|
641
|
+
],
|
|
642
|
+
"dev": true,
|
|
643
|
+
"license": "Apache-2.0",
|
|
644
|
+
"optional": true,
|
|
645
|
+
"os": [
|
|
646
|
+
"freebsd"
|
|
647
|
+
],
|
|
648
|
+
"engines": {
|
|
649
|
+
"node": ">=16.20.0"
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
"node_modules/@typescript/typescript-freebsd-x64": {
|
|
653
|
+
"version": "7.0.2",
|
|
654
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
|
|
655
|
+
"integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
|
|
656
|
+
"cpu": [
|
|
657
|
+
"x64"
|
|
658
|
+
],
|
|
659
|
+
"dev": true,
|
|
660
|
+
"license": "Apache-2.0",
|
|
661
|
+
"optional": true,
|
|
662
|
+
"os": [
|
|
663
|
+
"freebsd"
|
|
664
|
+
],
|
|
665
|
+
"engines": {
|
|
666
|
+
"node": ">=16.20.0"
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"node_modules/@typescript/typescript-linux-arm": {
|
|
670
|
+
"version": "7.0.2",
|
|
671
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
|
|
672
|
+
"integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
|
|
673
|
+
"cpu": [
|
|
674
|
+
"arm"
|
|
675
|
+
],
|
|
676
|
+
"dev": true,
|
|
677
|
+
"license": "Apache-2.0",
|
|
678
|
+
"optional": true,
|
|
679
|
+
"os": [
|
|
680
|
+
"linux"
|
|
681
|
+
],
|
|
682
|
+
"engines": {
|
|
683
|
+
"node": ">=16.20.0"
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
"node_modules/@typescript/typescript-linux-arm64": {
|
|
687
|
+
"version": "7.0.2",
|
|
688
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
|
|
689
|
+
"integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
|
|
690
|
+
"cpu": [
|
|
691
|
+
"arm64"
|
|
692
|
+
],
|
|
693
|
+
"dev": true,
|
|
694
|
+
"license": "Apache-2.0",
|
|
695
|
+
"optional": true,
|
|
696
|
+
"os": [
|
|
697
|
+
"linux"
|
|
698
|
+
],
|
|
699
|
+
"engines": {
|
|
700
|
+
"node": ">=16.20.0"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"node_modules/@typescript/typescript-linux-loong64": {
|
|
704
|
+
"version": "7.0.2",
|
|
705
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
|
|
706
|
+
"integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
|
|
707
|
+
"cpu": [
|
|
708
|
+
"loong64"
|
|
709
|
+
],
|
|
710
|
+
"dev": true,
|
|
711
|
+
"license": "Apache-2.0",
|
|
712
|
+
"optional": true,
|
|
713
|
+
"os": [
|
|
714
|
+
"linux"
|
|
715
|
+
],
|
|
716
|
+
"engines": {
|
|
717
|
+
"node": ">=16.20.0"
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"node_modules/@typescript/typescript-linux-mips64el": {
|
|
721
|
+
"version": "7.0.2",
|
|
722
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
|
|
723
|
+
"integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
|
|
724
|
+
"cpu": [
|
|
725
|
+
"mips64el"
|
|
726
|
+
],
|
|
727
|
+
"dev": true,
|
|
728
|
+
"license": "Apache-2.0",
|
|
729
|
+
"optional": true,
|
|
730
|
+
"os": [
|
|
731
|
+
"linux"
|
|
732
|
+
],
|
|
733
|
+
"engines": {
|
|
734
|
+
"node": ">=16.20.0"
|
|
735
|
+
}
|
|
736
|
+
},
|
|
737
|
+
"node_modules/@typescript/typescript-linux-ppc64": {
|
|
738
|
+
"version": "7.0.2",
|
|
739
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
|
|
740
|
+
"integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
|
|
741
|
+
"cpu": [
|
|
742
|
+
"ppc64"
|
|
743
|
+
],
|
|
744
|
+
"dev": true,
|
|
745
|
+
"license": "Apache-2.0",
|
|
746
|
+
"optional": true,
|
|
747
|
+
"os": [
|
|
748
|
+
"linux"
|
|
749
|
+
],
|
|
750
|
+
"engines": {
|
|
751
|
+
"node": ">=16.20.0"
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
"node_modules/@typescript/typescript-linux-riscv64": {
|
|
755
|
+
"version": "7.0.2",
|
|
756
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
|
|
757
|
+
"integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
|
|
758
|
+
"cpu": [
|
|
759
|
+
"riscv64"
|
|
760
|
+
],
|
|
761
|
+
"dev": true,
|
|
762
|
+
"license": "Apache-2.0",
|
|
763
|
+
"optional": true,
|
|
764
|
+
"os": [
|
|
765
|
+
"linux"
|
|
766
|
+
],
|
|
767
|
+
"engines": {
|
|
768
|
+
"node": ">=16.20.0"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
"node_modules/@typescript/typescript-linux-s390x": {
|
|
772
|
+
"version": "7.0.2",
|
|
773
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
|
|
774
|
+
"integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
|
|
775
|
+
"cpu": [
|
|
776
|
+
"s390x"
|
|
777
|
+
],
|
|
778
|
+
"dev": true,
|
|
779
|
+
"license": "Apache-2.0",
|
|
780
|
+
"optional": true,
|
|
781
|
+
"os": [
|
|
782
|
+
"linux"
|
|
783
|
+
],
|
|
784
|
+
"engines": {
|
|
785
|
+
"node": ">=16.20.0"
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
"node_modules/@typescript/typescript-linux-x64": {
|
|
789
|
+
"version": "7.0.2",
|
|
790
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
|
|
791
|
+
"integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
|
|
792
|
+
"cpu": [
|
|
793
|
+
"x64"
|
|
794
|
+
],
|
|
795
|
+
"dev": true,
|
|
796
|
+
"license": "Apache-2.0",
|
|
797
|
+
"optional": true,
|
|
798
|
+
"os": [
|
|
799
|
+
"linux"
|
|
800
|
+
],
|
|
801
|
+
"engines": {
|
|
802
|
+
"node": ">=16.20.0"
|
|
803
|
+
}
|
|
804
|
+
},
|
|
805
|
+
"node_modules/@typescript/typescript-netbsd-arm64": {
|
|
806
|
+
"version": "7.0.2",
|
|
807
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
|
|
808
|
+
"integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
|
|
809
|
+
"cpu": [
|
|
810
|
+
"arm64"
|
|
811
|
+
],
|
|
812
|
+
"dev": true,
|
|
813
|
+
"license": "Apache-2.0",
|
|
814
|
+
"optional": true,
|
|
815
|
+
"os": [
|
|
816
|
+
"netbsd"
|
|
817
|
+
],
|
|
818
|
+
"engines": {
|
|
819
|
+
"node": ">=16.20.0"
|
|
820
|
+
}
|
|
821
|
+
},
|
|
822
|
+
"node_modules/@typescript/typescript-netbsd-x64": {
|
|
823
|
+
"version": "7.0.2",
|
|
824
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
|
|
825
|
+
"integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
|
|
826
|
+
"cpu": [
|
|
827
|
+
"x64"
|
|
828
|
+
],
|
|
829
|
+
"dev": true,
|
|
830
|
+
"license": "Apache-2.0",
|
|
831
|
+
"optional": true,
|
|
832
|
+
"os": [
|
|
833
|
+
"netbsd"
|
|
834
|
+
],
|
|
835
|
+
"engines": {
|
|
836
|
+
"node": ">=16.20.0"
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
"node_modules/@typescript/typescript-openbsd-arm64": {
|
|
840
|
+
"version": "7.0.2",
|
|
841
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
|
|
842
|
+
"integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
|
|
843
|
+
"cpu": [
|
|
844
|
+
"arm64"
|
|
845
|
+
],
|
|
846
|
+
"dev": true,
|
|
847
|
+
"license": "Apache-2.0",
|
|
848
|
+
"optional": true,
|
|
849
|
+
"os": [
|
|
850
|
+
"openbsd"
|
|
851
|
+
],
|
|
852
|
+
"engines": {
|
|
853
|
+
"node": ">=16.20.0"
|
|
854
|
+
}
|
|
855
|
+
},
|
|
856
|
+
"node_modules/@typescript/typescript-openbsd-x64": {
|
|
857
|
+
"version": "7.0.2",
|
|
858
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
|
|
859
|
+
"integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
|
|
860
|
+
"cpu": [
|
|
861
|
+
"x64"
|
|
862
|
+
],
|
|
863
|
+
"dev": true,
|
|
864
|
+
"license": "Apache-2.0",
|
|
865
|
+
"optional": true,
|
|
866
|
+
"os": [
|
|
867
|
+
"openbsd"
|
|
868
|
+
],
|
|
869
|
+
"engines": {
|
|
870
|
+
"node": ">=16.20.0"
|
|
871
|
+
}
|
|
872
|
+
},
|
|
873
|
+
"node_modules/@typescript/typescript-sunos-x64": {
|
|
874
|
+
"version": "7.0.2",
|
|
875
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
|
|
876
|
+
"integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
|
|
877
|
+
"cpu": [
|
|
878
|
+
"x64"
|
|
879
|
+
],
|
|
880
|
+
"dev": true,
|
|
881
|
+
"license": "Apache-2.0",
|
|
882
|
+
"optional": true,
|
|
883
|
+
"os": [
|
|
884
|
+
"sunos"
|
|
885
|
+
],
|
|
886
|
+
"engines": {
|
|
887
|
+
"node": ">=16.20.0"
|
|
888
|
+
}
|
|
889
|
+
},
|
|
890
|
+
"node_modules/@typescript/typescript-win32-arm64": {
|
|
891
|
+
"version": "7.0.2",
|
|
892
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
|
|
893
|
+
"integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
|
|
894
|
+
"cpu": [
|
|
895
|
+
"arm64"
|
|
896
|
+
],
|
|
897
|
+
"dev": true,
|
|
898
|
+
"license": "Apache-2.0",
|
|
899
|
+
"optional": true,
|
|
900
|
+
"os": [
|
|
901
|
+
"win32"
|
|
902
|
+
],
|
|
903
|
+
"engines": {
|
|
904
|
+
"node": ">=16.20.0"
|
|
905
|
+
}
|
|
906
|
+
},
|
|
907
|
+
"node_modules/@typescript/typescript-win32-x64": {
|
|
908
|
+
"version": "7.0.2",
|
|
909
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
|
|
910
|
+
"integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
|
|
911
|
+
"cpu": [
|
|
912
|
+
"x64"
|
|
913
|
+
],
|
|
914
|
+
"dev": true,
|
|
915
|
+
"license": "Apache-2.0",
|
|
916
|
+
"optional": true,
|
|
917
|
+
"os": [
|
|
918
|
+
"win32"
|
|
919
|
+
],
|
|
920
|
+
"engines": {
|
|
921
|
+
"node": ">=16.20.0"
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
"node_modules/@vitest/expect": {
|
|
925
|
+
"version": "4.1.10",
|
|
926
|
+
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.10.tgz",
|
|
927
|
+
"integrity": "sha512-YsCn+qAk1GWjQOWFEsEcL2gNQ0zmVmQu3T03qP6UyjhtmdtwtbuI+DASn/7iQB3HGTXkdBwGddzxPlmiql5vlA==",
|
|
928
|
+
"dev": true,
|
|
929
|
+
"license": "MIT",
|
|
930
|
+
"dependencies": {
|
|
931
|
+
"@standard-schema/spec": "^1.1.0",
|
|
932
|
+
"@types/chai": "^5.2.2",
|
|
933
|
+
"@vitest/spy": "4.1.10",
|
|
934
|
+
"@vitest/utils": "4.1.10",
|
|
935
|
+
"chai": "^6.2.2",
|
|
936
|
+
"tinyrainbow": "^3.1.0"
|
|
937
|
+
},
|
|
938
|
+
"funding": {
|
|
939
|
+
"url": "https://opencollective.com/vitest"
|
|
940
|
+
}
|
|
941
|
+
},
|
|
942
|
+
"node_modules/@vitest/mocker": {
|
|
943
|
+
"version": "4.1.10",
|
|
944
|
+
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.10.tgz",
|
|
945
|
+
"integrity": "sha512-v0xaezt+DKEmKfaxg133ldzADrwLGd7Ze1MfQQTYfvs8OqZIwbxyxaYURivwV7sWy5fqn3rH5uOrSp07bp44Ow==",
|
|
946
|
+
"dev": true,
|
|
947
|
+
"license": "MIT",
|
|
948
|
+
"dependencies": {
|
|
949
|
+
"@vitest/spy": "4.1.10",
|
|
950
|
+
"estree-walker": "^3.0.3",
|
|
951
|
+
"magic-string": "^0.30.21"
|
|
952
|
+
},
|
|
953
|
+
"funding": {
|
|
954
|
+
"url": "https://opencollective.com/vitest"
|
|
955
|
+
},
|
|
956
|
+
"peerDependencies": {
|
|
957
|
+
"msw": "^2.4.9",
|
|
958
|
+
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
959
|
+
},
|
|
960
|
+
"peerDependenciesMeta": {
|
|
961
|
+
"msw": {
|
|
962
|
+
"optional": true
|
|
963
|
+
},
|
|
964
|
+
"vite": {
|
|
965
|
+
"optional": true
|
|
966
|
+
}
|
|
967
|
+
}
|
|
968
|
+
},
|
|
969
|
+
"node_modules/@vitest/pretty-format": {
|
|
970
|
+
"version": "4.1.10",
|
|
971
|
+
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.10.tgz",
|
|
972
|
+
"integrity": "sha512-W1HsjSH4MXQ9YfmmhLAoIYf1HRfekQCGngeIgcei6MP5QQGWUe0gkopdZQaVCFO+JDJMrAJGwa5pRpNpvy4P8Q==",
|
|
973
|
+
"dev": true,
|
|
974
|
+
"license": "MIT",
|
|
975
|
+
"dependencies": {
|
|
976
|
+
"tinyrainbow": "^3.1.0"
|
|
977
|
+
},
|
|
978
|
+
"funding": {
|
|
979
|
+
"url": "https://opencollective.com/vitest"
|
|
980
|
+
}
|
|
981
|
+
},
|
|
982
|
+
"node_modules/@vitest/runner": {
|
|
983
|
+
"version": "4.1.10",
|
|
984
|
+
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.10.tgz",
|
|
985
|
+
"integrity": "sha512-IKI6kpIH+LmpROplyLwBBaCfMgOZOMsygVa6BARD6ahA04VRuJSa6OaVG7kRvSEMD870Vd91rSSw0eegtWyLGg==",
|
|
986
|
+
"dev": true,
|
|
987
|
+
"license": "MIT",
|
|
988
|
+
"dependencies": {
|
|
989
|
+
"@vitest/utils": "4.1.10",
|
|
990
|
+
"pathe": "^2.0.3"
|
|
991
|
+
},
|
|
992
|
+
"funding": {
|
|
993
|
+
"url": "https://opencollective.com/vitest"
|
|
994
|
+
}
|
|
995
|
+
},
|
|
996
|
+
"node_modules/@vitest/snapshot": {
|
|
997
|
+
"version": "4.1.10",
|
|
998
|
+
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.10.tgz",
|
|
999
|
+
"integrity": "sha512-xRkfOT1qpTAi/Ti4Y1LtfRc3kEuqxGw59eN2jN9pRWMtS/XDevekhcFSqvQqjUNGksfjMJu3Y+oJ+4Ypn2OaJw==",
|
|
1000
|
+
"dev": true,
|
|
1001
|
+
"license": "MIT",
|
|
1002
|
+
"dependencies": {
|
|
1003
|
+
"@vitest/pretty-format": "4.1.10",
|
|
1004
|
+
"@vitest/utils": "4.1.10",
|
|
1005
|
+
"magic-string": "^0.30.21",
|
|
1006
|
+
"pathe": "^2.0.3"
|
|
1007
|
+
},
|
|
1008
|
+
"funding": {
|
|
1009
|
+
"url": "https://opencollective.com/vitest"
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
"node_modules/@vitest/spy": {
|
|
1013
|
+
"version": "4.1.10",
|
|
1014
|
+
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.10.tgz",
|
|
1015
|
+
"integrity": "sha512-PLf/Ugvoq5wO/b4rwYCR1h2PSIdXz7wnkQFMiUpLdtM7l6pqVFcQIBEHyT1+l+cj7mNwAfZHzqXqDyjvOuwbDw==",
|
|
1016
|
+
"dev": true,
|
|
1017
|
+
"license": "MIT",
|
|
1018
|
+
"funding": {
|
|
1019
|
+
"url": "https://opencollective.com/vitest"
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
"node_modules/@vitest/utils": {
|
|
1023
|
+
"version": "4.1.10",
|
|
1024
|
+
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.10.tgz",
|
|
1025
|
+
"integrity": "sha512-fy9am/HWxbaGt/Sawrp90vt6Y6jQwf1RX77cz3uwoJwJVMli/e1IEwRPnMNJ7vKfPTwo0diXifkpPvwH9v7nGA==",
|
|
1026
|
+
"dev": true,
|
|
1027
|
+
"license": "MIT",
|
|
1028
|
+
"dependencies": {
|
|
1029
|
+
"@vitest/pretty-format": "4.1.10",
|
|
1030
|
+
"convert-source-map": "^2.0.0",
|
|
1031
|
+
"tinyrainbow": "^3.1.0"
|
|
1032
|
+
},
|
|
1033
|
+
"funding": {
|
|
1034
|
+
"url": "https://opencollective.com/vitest"
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
"node_modules/asn1js": {
|
|
1038
|
+
"version": "3.0.10",
|
|
1039
|
+
"resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.10.tgz",
|
|
1040
|
+
"integrity": "sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==",
|
|
1041
|
+
"license": "BSD-3-Clause",
|
|
1042
|
+
"dependencies": {
|
|
1043
|
+
"pvtsutils": "^1.3.6",
|
|
1044
|
+
"pvutils": "^1.1.5",
|
|
1045
|
+
"tslib": "^2.8.1"
|
|
1046
|
+
},
|
|
1047
|
+
"engines": {
|
|
1048
|
+
"node": ">=12.0.0"
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
"node_modules/assertion-error": {
|
|
1052
|
+
"version": "2.0.1",
|
|
1053
|
+
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
|
|
1054
|
+
"integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
|
|
1055
|
+
"dev": true,
|
|
1056
|
+
"license": "MIT",
|
|
1057
|
+
"engines": {
|
|
1058
|
+
"node": ">=12"
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"node_modules/borgmcp-shared": {
|
|
1062
|
+
"version": "0.3.0",
|
|
1063
|
+
"resolved": "https://registry.npmjs.org/borgmcp-shared/-/borgmcp-shared-0.3.0.tgz",
|
|
1064
|
+
"integrity": "sha512-vXY4kZLBlyS0nqnveLAiAhbkc4pzP2C/V9nDRZ80lmv1z389A3yGLLSKx+ZHBb3qI17bTuDg1ILYN2qIVLWIIw==",
|
|
1065
|
+
"dev": true,
|
|
1066
|
+
"license": "Apache-2.0",
|
|
1067
|
+
"engines": {
|
|
1068
|
+
"node": ">=20"
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
"node_modules/bytestreamjs": {
|
|
1072
|
+
"version": "2.0.1",
|
|
1073
|
+
"resolved": "https://registry.npmjs.org/bytestreamjs/-/bytestreamjs-2.0.1.tgz",
|
|
1074
|
+
"integrity": "sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ==",
|
|
1075
|
+
"license": "BSD-3-Clause",
|
|
1076
|
+
"engines": {
|
|
1077
|
+
"node": ">=6.0.0"
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
"node_modules/chai": {
|
|
1081
|
+
"version": "6.2.2",
|
|
1082
|
+
"resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz",
|
|
1083
|
+
"integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==",
|
|
1084
|
+
"dev": true,
|
|
1085
|
+
"license": "MIT",
|
|
1086
|
+
"engines": {
|
|
1087
|
+
"node": ">=18"
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
"node_modules/convert-source-map": {
|
|
1091
|
+
"version": "2.0.0",
|
|
1092
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
|
1093
|
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
|
1094
|
+
"dev": true,
|
|
1095
|
+
"license": "MIT"
|
|
1096
|
+
},
|
|
1097
|
+
"node_modules/detect-libc": {
|
|
1098
|
+
"version": "2.1.2",
|
|
1099
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
1100
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
1101
|
+
"dev": true,
|
|
1102
|
+
"license": "Apache-2.0",
|
|
1103
|
+
"engines": {
|
|
1104
|
+
"node": ">=8"
|
|
1105
|
+
}
|
|
1106
|
+
},
|
|
1107
|
+
"node_modules/es-module-lexer": {
|
|
1108
|
+
"version": "2.3.1",
|
|
1109
|
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.1.tgz",
|
|
1110
|
+
"integrity": "sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==",
|
|
1111
|
+
"dev": true,
|
|
1112
|
+
"license": "MIT"
|
|
1113
|
+
},
|
|
1114
|
+
"node_modules/estree-walker": {
|
|
1115
|
+
"version": "3.0.3",
|
|
1116
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
|
|
1117
|
+
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
|
|
1118
|
+
"dev": true,
|
|
1119
|
+
"license": "MIT",
|
|
1120
|
+
"dependencies": {
|
|
1121
|
+
"@types/estree": "^1.0.0"
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
"node_modules/expect-type": {
|
|
1125
|
+
"version": "1.4.0",
|
|
1126
|
+
"resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.4.0.tgz",
|
|
1127
|
+
"integrity": "sha512-KfYbmpRm0VbLjEvVa9yGwCi9GI34xvi7A/HXYWQO65CSD2u3MczUJSuwXKFIxlGsgBQizV9q5J9NHj4VG0n+pA==",
|
|
1128
|
+
"dev": true,
|
|
1129
|
+
"license": "Apache-2.0",
|
|
1130
|
+
"engines": {
|
|
1131
|
+
"node": ">=12.0.0"
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
"node_modules/fdir": {
|
|
1135
|
+
"version": "6.5.0",
|
|
1136
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
1137
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
1138
|
+
"dev": true,
|
|
1139
|
+
"license": "MIT",
|
|
1140
|
+
"engines": {
|
|
1141
|
+
"node": ">=12.0.0"
|
|
1142
|
+
},
|
|
1143
|
+
"peerDependencies": {
|
|
1144
|
+
"picomatch": "^3 || ^4"
|
|
1145
|
+
},
|
|
1146
|
+
"peerDependenciesMeta": {
|
|
1147
|
+
"picomatch": {
|
|
1148
|
+
"optional": true
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
"node_modules/fsevents": {
|
|
1153
|
+
"version": "2.3.3",
|
|
1154
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
1155
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
1156
|
+
"dev": true,
|
|
1157
|
+
"hasInstallScript": true,
|
|
1158
|
+
"license": "MIT",
|
|
1159
|
+
"optional": true,
|
|
1160
|
+
"os": [
|
|
1161
|
+
"darwin"
|
|
1162
|
+
],
|
|
1163
|
+
"engines": {
|
|
1164
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1167
|
+
"node_modules/lightningcss": {
|
|
1168
|
+
"version": "1.32.0",
|
|
1169
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
|
1170
|
+
"integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
|
|
1171
|
+
"dev": true,
|
|
1172
|
+
"license": "MPL-2.0",
|
|
1173
|
+
"dependencies": {
|
|
1174
|
+
"detect-libc": "^2.0.3"
|
|
1175
|
+
},
|
|
1176
|
+
"engines": {
|
|
1177
|
+
"node": ">= 12.0.0"
|
|
1178
|
+
},
|
|
1179
|
+
"funding": {
|
|
1180
|
+
"type": "opencollective",
|
|
1181
|
+
"url": "https://opencollective.com/parcel"
|
|
1182
|
+
},
|
|
1183
|
+
"optionalDependencies": {
|
|
1184
|
+
"lightningcss-android-arm64": "1.32.0",
|
|
1185
|
+
"lightningcss-darwin-arm64": "1.32.0",
|
|
1186
|
+
"lightningcss-darwin-x64": "1.32.0",
|
|
1187
|
+
"lightningcss-freebsd-x64": "1.32.0",
|
|
1188
|
+
"lightningcss-linux-arm-gnueabihf": "1.32.0",
|
|
1189
|
+
"lightningcss-linux-arm64-gnu": "1.32.0",
|
|
1190
|
+
"lightningcss-linux-arm64-musl": "1.32.0",
|
|
1191
|
+
"lightningcss-linux-x64-gnu": "1.32.0",
|
|
1192
|
+
"lightningcss-linux-x64-musl": "1.32.0",
|
|
1193
|
+
"lightningcss-win32-arm64-msvc": "1.32.0",
|
|
1194
|
+
"lightningcss-win32-x64-msvc": "1.32.0"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"node_modules/lightningcss-android-arm64": {
|
|
1198
|
+
"version": "1.32.0",
|
|
1199
|
+
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
|
|
1200
|
+
"integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
|
|
1201
|
+
"cpu": [
|
|
1202
|
+
"arm64"
|
|
1203
|
+
],
|
|
1204
|
+
"dev": true,
|
|
1205
|
+
"license": "MPL-2.0",
|
|
1206
|
+
"optional": true,
|
|
1207
|
+
"os": [
|
|
1208
|
+
"android"
|
|
1209
|
+
],
|
|
1210
|
+
"engines": {
|
|
1211
|
+
"node": ">= 12.0.0"
|
|
1212
|
+
},
|
|
1213
|
+
"funding": {
|
|
1214
|
+
"type": "opencollective",
|
|
1215
|
+
"url": "https://opencollective.com/parcel"
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"node_modules/lightningcss-darwin-arm64": {
|
|
1219
|
+
"version": "1.32.0",
|
|
1220
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
|
|
1221
|
+
"integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
|
|
1222
|
+
"cpu": [
|
|
1223
|
+
"arm64"
|
|
1224
|
+
],
|
|
1225
|
+
"dev": true,
|
|
1226
|
+
"license": "MPL-2.0",
|
|
1227
|
+
"optional": true,
|
|
1228
|
+
"os": [
|
|
1229
|
+
"darwin"
|
|
1230
|
+
],
|
|
1231
|
+
"engines": {
|
|
1232
|
+
"node": ">= 12.0.0"
|
|
1233
|
+
},
|
|
1234
|
+
"funding": {
|
|
1235
|
+
"type": "opencollective",
|
|
1236
|
+
"url": "https://opencollective.com/parcel"
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"node_modules/lightningcss-darwin-x64": {
|
|
1240
|
+
"version": "1.32.0",
|
|
1241
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
|
|
1242
|
+
"integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
|
|
1243
|
+
"cpu": [
|
|
1244
|
+
"x64"
|
|
1245
|
+
],
|
|
1246
|
+
"dev": true,
|
|
1247
|
+
"license": "MPL-2.0",
|
|
1248
|
+
"optional": true,
|
|
1249
|
+
"os": [
|
|
1250
|
+
"darwin"
|
|
1251
|
+
],
|
|
1252
|
+
"engines": {
|
|
1253
|
+
"node": ">= 12.0.0"
|
|
1254
|
+
},
|
|
1255
|
+
"funding": {
|
|
1256
|
+
"type": "opencollective",
|
|
1257
|
+
"url": "https://opencollective.com/parcel"
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
"node_modules/lightningcss-freebsd-x64": {
|
|
1261
|
+
"version": "1.32.0",
|
|
1262
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
|
|
1263
|
+
"integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
|
|
1264
|
+
"cpu": [
|
|
1265
|
+
"x64"
|
|
1266
|
+
],
|
|
1267
|
+
"dev": true,
|
|
1268
|
+
"license": "MPL-2.0",
|
|
1269
|
+
"optional": true,
|
|
1270
|
+
"os": [
|
|
1271
|
+
"freebsd"
|
|
1272
|
+
],
|
|
1273
|
+
"engines": {
|
|
1274
|
+
"node": ">= 12.0.0"
|
|
1275
|
+
},
|
|
1276
|
+
"funding": {
|
|
1277
|
+
"type": "opencollective",
|
|
1278
|
+
"url": "https://opencollective.com/parcel"
|
|
1279
|
+
}
|
|
1280
|
+
},
|
|
1281
|
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
1282
|
+
"version": "1.32.0",
|
|
1283
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
|
|
1284
|
+
"integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
|
|
1285
|
+
"cpu": [
|
|
1286
|
+
"arm"
|
|
1287
|
+
],
|
|
1288
|
+
"dev": true,
|
|
1289
|
+
"license": "MPL-2.0",
|
|
1290
|
+
"optional": true,
|
|
1291
|
+
"os": [
|
|
1292
|
+
"linux"
|
|
1293
|
+
],
|
|
1294
|
+
"engines": {
|
|
1295
|
+
"node": ">= 12.0.0"
|
|
1296
|
+
},
|
|
1297
|
+
"funding": {
|
|
1298
|
+
"type": "opencollective",
|
|
1299
|
+
"url": "https://opencollective.com/parcel"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
1303
|
+
"version": "1.32.0",
|
|
1304
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
|
|
1305
|
+
"integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
|
|
1306
|
+
"cpu": [
|
|
1307
|
+
"arm64"
|
|
1308
|
+
],
|
|
1309
|
+
"dev": true,
|
|
1310
|
+
"license": "MPL-2.0",
|
|
1311
|
+
"optional": true,
|
|
1312
|
+
"os": [
|
|
1313
|
+
"linux"
|
|
1314
|
+
],
|
|
1315
|
+
"engines": {
|
|
1316
|
+
"node": ">= 12.0.0"
|
|
1317
|
+
},
|
|
1318
|
+
"funding": {
|
|
1319
|
+
"type": "opencollective",
|
|
1320
|
+
"url": "https://opencollective.com/parcel"
|
|
1321
|
+
}
|
|
1322
|
+
},
|
|
1323
|
+
"node_modules/lightningcss-linux-arm64-musl": {
|
|
1324
|
+
"version": "1.32.0",
|
|
1325
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
|
|
1326
|
+
"integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
|
|
1327
|
+
"cpu": [
|
|
1328
|
+
"arm64"
|
|
1329
|
+
],
|
|
1330
|
+
"dev": true,
|
|
1331
|
+
"license": "MPL-2.0",
|
|
1332
|
+
"optional": true,
|
|
1333
|
+
"os": [
|
|
1334
|
+
"linux"
|
|
1335
|
+
],
|
|
1336
|
+
"engines": {
|
|
1337
|
+
"node": ">= 12.0.0"
|
|
1338
|
+
},
|
|
1339
|
+
"funding": {
|
|
1340
|
+
"type": "opencollective",
|
|
1341
|
+
"url": "https://opencollective.com/parcel"
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
"node_modules/lightningcss-linux-x64-gnu": {
|
|
1345
|
+
"version": "1.32.0",
|
|
1346
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
|
|
1347
|
+
"integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
|
|
1348
|
+
"cpu": [
|
|
1349
|
+
"x64"
|
|
1350
|
+
],
|
|
1351
|
+
"dev": true,
|
|
1352
|
+
"license": "MPL-2.0",
|
|
1353
|
+
"optional": true,
|
|
1354
|
+
"os": [
|
|
1355
|
+
"linux"
|
|
1356
|
+
],
|
|
1357
|
+
"engines": {
|
|
1358
|
+
"node": ">= 12.0.0"
|
|
1359
|
+
},
|
|
1360
|
+
"funding": {
|
|
1361
|
+
"type": "opencollective",
|
|
1362
|
+
"url": "https://opencollective.com/parcel"
|
|
1363
|
+
}
|
|
1364
|
+
},
|
|
1365
|
+
"node_modules/lightningcss-linux-x64-musl": {
|
|
1366
|
+
"version": "1.32.0",
|
|
1367
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
|
|
1368
|
+
"integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
|
|
1369
|
+
"cpu": [
|
|
1370
|
+
"x64"
|
|
1371
|
+
],
|
|
1372
|
+
"dev": true,
|
|
1373
|
+
"license": "MPL-2.0",
|
|
1374
|
+
"optional": true,
|
|
1375
|
+
"os": [
|
|
1376
|
+
"linux"
|
|
1377
|
+
],
|
|
1378
|
+
"engines": {
|
|
1379
|
+
"node": ">= 12.0.0"
|
|
1380
|
+
},
|
|
1381
|
+
"funding": {
|
|
1382
|
+
"type": "opencollective",
|
|
1383
|
+
"url": "https://opencollective.com/parcel"
|
|
1384
|
+
}
|
|
1385
|
+
},
|
|
1386
|
+
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
1387
|
+
"version": "1.32.0",
|
|
1388
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
|
|
1389
|
+
"integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
|
|
1390
|
+
"cpu": [
|
|
1391
|
+
"arm64"
|
|
1392
|
+
],
|
|
1393
|
+
"dev": true,
|
|
1394
|
+
"license": "MPL-2.0",
|
|
1395
|
+
"optional": true,
|
|
1396
|
+
"os": [
|
|
1397
|
+
"win32"
|
|
1398
|
+
],
|
|
1399
|
+
"engines": {
|
|
1400
|
+
"node": ">= 12.0.0"
|
|
1401
|
+
},
|
|
1402
|
+
"funding": {
|
|
1403
|
+
"type": "opencollective",
|
|
1404
|
+
"url": "https://opencollective.com/parcel"
|
|
1405
|
+
}
|
|
1406
|
+
},
|
|
1407
|
+
"node_modules/lightningcss-win32-x64-msvc": {
|
|
1408
|
+
"version": "1.32.0",
|
|
1409
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
|
|
1410
|
+
"integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
|
|
1411
|
+
"cpu": [
|
|
1412
|
+
"x64"
|
|
1413
|
+
],
|
|
1414
|
+
"dev": true,
|
|
1415
|
+
"license": "MPL-2.0",
|
|
1416
|
+
"optional": true,
|
|
1417
|
+
"os": [
|
|
1418
|
+
"win32"
|
|
1419
|
+
],
|
|
1420
|
+
"engines": {
|
|
1421
|
+
"node": ">= 12.0.0"
|
|
1422
|
+
},
|
|
1423
|
+
"funding": {
|
|
1424
|
+
"type": "opencollective",
|
|
1425
|
+
"url": "https://opencollective.com/parcel"
|
|
1426
|
+
}
|
|
1427
|
+
},
|
|
1428
|
+
"node_modules/magic-string": {
|
|
1429
|
+
"version": "0.30.21",
|
|
1430
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
1431
|
+
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
1432
|
+
"dev": true,
|
|
1433
|
+
"license": "MIT",
|
|
1434
|
+
"dependencies": {
|
|
1435
|
+
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
1436
|
+
}
|
|
1437
|
+
},
|
|
1438
|
+
"node_modules/nanoid": {
|
|
1439
|
+
"version": "3.3.16",
|
|
1440
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
|
|
1441
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
1442
|
+
"dev": true,
|
|
1443
|
+
"funding": [
|
|
1444
|
+
{
|
|
1445
|
+
"type": "github",
|
|
1446
|
+
"url": "https://github.com/sponsors/ai"
|
|
1447
|
+
}
|
|
1448
|
+
],
|
|
1449
|
+
"license": "MIT",
|
|
1450
|
+
"bin": {
|
|
1451
|
+
"nanoid": "bin/nanoid.cjs"
|
|
1452
|
+
},
|
|
1453
|
+
"engines": {
|
|
1454
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1455
|
+
}
|
|
1456
|
+
},
|
|
1457
|
+
"node_modules/obug": {
|
|
1458
|
+
"version": "2.1.3",
|
|
1459
|
+
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.3.tgz",
|
|
1460
|
+
"integrity": "sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==",
|
|
1461
|
+
"dev": true,
|
|
1462
|
+
"funding": [
|
|
1463
|
+
"https://github.com/sponsors/sxzz",
|
|
1464
|
+
"https://opencollective.com/debug"
|
|
1465
|
+
],
|
|
1466
|
+
"license": "MIT",
|
|
1467
|
+
"engines": {
|
|
1468
|
+
"node": ">=12.20.0"
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"node_modules/pathe": {
|
|
1472
|
+
"version": "2.0.3",
|
|
1473
|
+
"resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
|
|
1474
|
+
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
|
|
1475
|
+
"dev": true,
|
|
1476
|
+
"license": "MIT"
|
|
1477
|
+
},
|
|
1478
|
+
"node_modules/picocolors": {
|
|
1479
|
+
"version": "1.1.1",
|
|
1480
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
1481
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1482
|
+
"dev": true,
|
|
1483
|
+
"license": "ISC"
|
|
1484
|
+
},
|
|
1485
|
+
"node_modules/picomatch": {
|
|
1486
|
+
"version": "4.0.5",
|
|
1487
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
|
|
1488
|
+
"integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
|
|
1489
|
+
"dev": true,
|
|
1490
|
+
"license": "MIT",
|
|
1491
|
+
"engines": {
|
|
1492
|
+
"node": ">=12"
|
|
1493
|
+
},
|
|
1494
|
+
"funding": {
|
|
1495
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
1496
|
+
}
|
|
1497
|
+
},
|
|
1498
|
+
"node_modules/pkijs": {
|
|
1499
|
+
"version": "3.4.0",
|
|
1500
|
+
"resolved": "https://registry.npmjs.org/pkijs/-/pkijs-3.4.0.tgz",
|
|
1501
|
+
"integrity": "sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==",
|
|
1502
|
+
"license": "BSD-3-Clause",
|
|
1503
|
+
"dependencies": {
|
|
1504
|
+
"@noble/hashes": "1.4.0",
|
|
1505
|
+
"asn1js": "^3.0.6",
|
|
1506
|
+
"bytestreamjs": "^2.0.1",
|
|
1507
|
+
"pvtsutils": "^1.3.6",
|
|
1508
|
+
"pvutils": "^1.1.3",
|
|
1509
|
+
"tslib": "^2.8.1"
|
|
1510
|
+
},
|
|
1511
|
+
"engines": {
|
|
1512
|
+
"node": ">=16.0.0"
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1515
|
+
"node_modules/postcss": {
|
|
1516
|
+
"version": "8.5.19",
|
|
1517
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.19.tgz",
|
|
1518
|
+
"integrity": "sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==",
|
|
1519
|
+
"dev": true,
|
|
1520
|
+
"funding": [
|
|
1521
|
+
{
|
|
1522
|
+
"type": "opencollective",
|
|
1523
|
+
"url": "https://opencollective.com/postcss/"
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"type": "tidelift",
|
|
1527
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
"type": "github",
|
|
1531
|
+
"url": "https://github.com/sponsors/ai"
|
|
1532
|
+
}
|
|
1533
|
+
],
|
|
1534
|
+
"license": "MIT",
|
|
1535
|
+
"dependencies": {
|
|
1536
|
+
"nanoid": "^3.3.12",
|
|
1537
|
+
"picocolors": "^1.1.1",
|
|
1538
|
+
"source-map-js": "^1.2.1"
|
|
1539
|
+
},
|
|
1540
|
+
"engines": {
|
|
1541
|
+
"node": "^10 || ^12 || >=14"
|
|
1542
|
+
}
|
|
1543
|
+
},
|
|
1544
|
+
"node_modules/pvtsutils": {
|
|
1545
|
+
"version": "1.3.6",
|
|
1546
|
+
"resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.6.tgz",
|
|
1547
|
+
"integrity": "sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==",
|
|
1548
|
+
"license": "MIT",
|
|
1549
|
+
"dependencies": {
|
|
1550
|
+
"tslib": "^2.8.1"
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1553
|
+
"node_modules/pvutils": {
|
|
1554
|
+
"version": "1.1.5",
|
|
1555
|
+
"resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.5.tgz",
|
|
1556
|
+
"integrity": "sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==",
|
|
1557
|
+
"license": "MIT",
|
|
1558
|
+
"engines": {
|
|
1559
|
+
"node": ">=16.0.0"
|
|
1560
|
+
}
|
|
1561
|
+
},
|
|
1562
|
+
"node_modules/reflect-metadata": {
|
|
1563
|
+
"version": "0.2.2",
|
|
1564
|
+
"resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz",
|
|
1565
|
+
"integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==",
|
|
1566
|
+
"license": "Apache-2.0"
|
|
1567
|
+
},
|
|
1568
|
+
"node_modules/rolldown": {
|
|
1569
|
+
"version": "1.1.5",
|
|
1570
|
+
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.1.5.tgz",
|
|
1571
|
+
"integrity": "sha512-t9z29cJjXf/vxQ8dyhCSpt6H6aSwHTk8cT5I3iy6SMXuFpk5mB6PL6XfC8PCwrPTx93udwKUm9HRteAlTGBLiA==",
|
|
1572
|
+
"dev": true,
|
|
1573
|
+
"license": "MIT",
|
|
1574
|
+
"dependencies": {
|
|
1575
|
+
"@oxc-project/types": "=0.139.0",
|
|
1576
|
+
"@rolldown/pluginutils": "^1.0.0"
|
|
1577
|
+
},
|
|
1578
|
+
"bin": {
|
|
1579
|
+
"rolldown": "bin/cli.mjs"
|
|
1580
|
+
},
|
|
1581
|
+
"engines": {
|
|
1582
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
1583
|
+
},
|
|
1584
|
+
"optionalDependencies": {
|
|
1585
|
+
"@rolldown/binding-android-arm64": "1.1.5",
|
|
1586
|
+
"@rolldown/binding-darwin-arm64": "1.1.5",
|
|
1587
|
+
"@rolldown/binding-darwin-x64": "1.1.5",
|
|
1588
|
+
"@rolldown/binding-freebsd-x64": "1.1.5",
|
|
1589
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.1.5",
|
|
1590
|
+
"@rolldown/binding-linux-arm64-gnu": "1.1.5",
|
|
1591
|
+
"@rolldown/binding-linux-arm64-musl": "1.1.5",
|
|
1592
|
+
"@rolldown/binding-linux-ppc64-gnu": "1.1.5",
|
|
1593
|
+
"@rolldown/binding-linux-s390x-gnu": "1.1.5",
|
|
1594
|
+
"@rolldown/binding-linux-x64-gnu": "1.1.5",
|
|
1595
|
+
"@rolldown/binding-linux-x64-musl": "1.1.5",
|
|
1596
|
+
"@rolldown/binding-openharmony-arm64": "1.1.5",
|
|
1597
|
+
"@rolldown/binding-wasm32-wasi": "1.1.5",
|
|
1598
|
+
"@rolldown/binding-win32-arm64-msvc": "1.1.5",
|
|
1599
|
+
"@rolldown/binding-win32-x64-msvc": "1.1.5"
|
|
1600
|
+
}
|
|
1601
|
+
},
|
|
1602
|
+
"node_modules/selfsigned": {
|
|
1603
|
+
"version": "5.5.0",
|
|
1604
|
+
"resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-5.5.0.tgz",
|
|
1605
|
+
"integrity": "sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew==",
|
|
1606
|
+
"license": "MIT",
|
|
1607
|
+
"dependencies": {
|
|
1608
|
+
"@peculiar/x509": "^1.14.2",
|
|
1609
|
+
"pkijs": "^3.3.3"
|
|
1610
|
+
},
|
|
1611
|
+
"engines": {
|
|
1612
|
+
"node": ">=18"
|
|
1613
|
+
}
|
|
1614
|
+
},
|
|
1615
|
+
"node_modules/siginfo": {
|
|
1616
|
+
"version": "2.0.0",
|
|
1617
|
+
"resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
|
|
1618
|
+
"integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==",
|
|
1619
|
+
"dev": true,
|
|
1620
|
+
"license": "ISC"
|
|
1621
|
+
},
|
|
1622
|
+
"node_modules/source-map-js": {
|
|
1623
|
+
"version": "1.2.1",
|
|
1624
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1625
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1626
|
+
"dev": true,
|
|
1627
|
+
"license": "BSD-3-Clause",
|
|
1628
|
+
"engines": {
|
|
1629
|
+
"node": ">=0.10.0"
|
|
1630
|
+
}
|
|
1631
|
+
},
|
|
1632
|
+
"node_modules/stackback": {
|
|
1633
|
+
"version": "0.0.2",
|
|
1634
|
+
"resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
|
|
1635
|
+
"integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==",
|
|
1636
|
+
"dev": true,
|
|
1637
|
+
"license": "MIT"
|
|
1638
|
+
},
|
|
1639
|
+
"node_modules/std-env": {
|
|
1640
|
+
"version": "4.2.0",
|
|
1641
|
+
"resolved": "https://registry.npmjs.org/std-env/-/std-env-4.2.0.tgz",
|
|
1642
|
+
"integrity": "sha512-oCUKSupKTHX53EyjDtuZQ64pjLJ6yYCtpmEw0goYxtjG9KpbRe8KAsl2tBUGU9DyMcJ0RwJ8GqJAFzMXcXW1Rw==",
|
|
1643
|
+
"dev": true,
|
|
1644
|
+
"license": "MIT"
|
|
1645
|
+
},
|
|
1646
|
+
"node_modules/tinybench": {
|
|
1647
|
+
"version": "2.9.0",
|
|
1648
|
+
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
|
|
1649
|
+
"integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==",
|
|
1650
|
+
"dev": true,
|
|
1651
|
+
"license": "MIT"
|
|
1652
|
+
},
|
|
1653
|
+
"node_modules/tinyexec": {
|
|
1654
|
+
"version": "1.2.4",
|
|
1655
|
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.4.tgz",
|
|
1656
|
+
"integrity": "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==",
|
|
1657
|
+
"dev": true,
|
|
1658
|
+
"license": "MIT",
|
|
1659
|
+
"engines": {
|
|
1660
|
+
"node": ">=18"
|
|
1661
|
+
}
|
|
1662
|
+
},
|
|
1663
|
+
"node_modules/tinyglobby": {
|
|
1664
|
+
"version": "0.2.17",
|
|
1665
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
1666
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
1667
|
+
"dev": true,
|
|
1668
|
+
"license": "MIT",
|
|
1669
|
+
"dependencies": {
|
|
1670
|
+
"fdir": "^6.5.0",
|
|
1671
|
+
"picomatch": "^4.0.4"
|
|
1672
|
+
},
|
|
1673
|
+
"engines": {
|
|
1674
|
+
"node": ">=12.0.0"
|
|
1675
|
+
},
|
|
1676
|
+
"funding": {
|
|
1677
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
1678
|
+
}
|
|
1679
|
+
},
|
|
1680
|
+
"node_modules/tinyrainbow": {
|
|
1681
|
+
"version": "3.1.0",
|
|
1682
|
+
"resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz",
|
|
1683
|
+
"integrity": "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==",
|
|
1684
|
+
"dev": true,
|
|
1685
|
+
"license": "MIT",
|
|
1686
|
+
"engines": {
|
|
1687
|
+
"node": ">=14.0.0"
|
|
1688
|
+
}
|
|
1689
|
+
},
|
|
1690
|
+
"node_modules/tslib": {
|
|
1691
|
+
"version": "2.8.1",
|
|
1692
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
1693
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
1694
|
+
"license": "0BSD"
|
|
1695
|
+
},
|
|
1696
|
+
"node_modules/tsyringe": {
|
|
1697
|
+
"version": "4.10.0",
|
|
1698
|
+
"resolved": "https://registry.npmjs.org/tsyringe/-/tsyringe-4.10.0.tgz",
|
|
1699
|
+
"integrity": "sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==",
|
|
1700
|
+
"license": "MIT",
|
|
1701
|
+
"dependencies": {
|
|
1702
|
+
"tslib": "^1.9.3"
|
|
1703
|
+
},
|
|
1704
|
+
"engines": {
|
|
1705
|
+
"node": ">= 6.0.0"
|
|
1706
|
+
}
|
|
1707
|
+
},
|
|
1708
|
+
"node_modules/tsyringe/node_modules/tslib": {
|
|
1709
|
+
"version": "1.14.1",
|
|
1710
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
|
|
1711
|
+
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
|
|
1712
|
+
"license": "0BSD"
|
|
1713
|
+
},
|
|
1714
|
+
"node_modules/typescript": {
|
|
1715
|
+
"version": "7.0.2",
|
|
1716
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
|
|
1717
|
+
"integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
|
|
1718
|
+
"dev": true,
|
|
1719
|
+
"license": "Apache-2.0",
|
|
1720
|
+
"bin": {
|
|
1721
|
+
"tsc": "bin/tsc"
|
|
1722
|
+
},
|
|
1723
|
+
"engines": {
|
|
1724
|
+
"node": ">=16.20.0"
|
|
1725
|
+
},
|
|
1726
|
+
"optionalDependencies": {
|
|
1727
|
+
"@typescript/typescript-aix-ppc64": "7.0.2",
|
|
1728
|
+
"@typescript/typescript-darwin-arm64": "7.0.2",
|
|
1729
|
+
"@typescript/typescript-darwin-x64": "7.0.2",
|
|
1730
|
+
"@typescript/typescript-freebsd-arm64": "7.0.2",
|
|
1731
|
+
"@typescript/typescript-freebsd-x64": "7.0.2",
|
|
1732
|
+
"@typescript/typescript-linux-arm": "7.0.2",
|
|
1733
|
+
"@typescript/typescript-linux-arm64": "7.0.2",
|
|
1734
|
+
"@typescript/typescript-linux-loong64": "7.0.2",
|
|
1735
|
+
"@typescript/typescript-linux-mips64el": "7.0.2",
|
|
1736
|
+
"@typescript/typescript-linux-ppc64": "7.0.2",
|
|
1737
|
+
"@typescript/typescript-linux-riscv64": "7.0.2",
|
|
1738
|
+
"@typescript/typescript-linux-s390x": "7.0.2",
|
|
1739
|
+
"@typescript/typescript-linux-x64": "7.0.2",
|
|
1740
|
+
"@typescript/typescript-netbsd-arm64": "7.0.2",
|
|
1741
|
+
"@typescript/typescript-netbsd-x64": "7.0.2",
|
|
1742
|
+
"@typescript/typescript-openbsd-arm64": "7.0.2",
|
|
1743
|
+
"@typescript/typescript-openbsd-x64": "7.0.2",
|
|
1744
|
+
"@typescript/typescript-sunos-x64": "7.0.2",
|
|
1745
|
+
"@typescript/typescript-win32-arm64": "7.0.2",
|
|
1746
|
+
"@typescript/typescript-win32-x64": "7.0.2"
|
|
1747
|
+
}
|
|
1748
|
+
},
|
|
1749
|
+
"node_modules/undici-types": {
|
|
1750
|
+
"version": "6.21.0",
|
|
1751
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
1752
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
1753
|
+
"dev": true,
|
|
1754
|
+
"license": "MIT"
|
|
1755
|
+
},
|
|
1756
|
+
"node_modules/vite": {
|
|
1757
|
+
"version": "8.1.4",
|
|
1758
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-8.1.4.tgz",
|
|
1759
|
+
"integrity": "sha512-bTT9PsdWO+MQMNG9ZXIP/qM9wGh37DFxTV/sPq9cFpHr3w4jkgef032PkAL9jAqhk3Nz8NQw3O8n6/xFkqO4QQ==",
|
|
1760
|
+
"dev": true,
|
|
1761
|
+
"license": "MIT",
|
|
1762
|
+
"dependencies": {
|
|
1763
|
+
"lightningcss": "^1.32.0",
|
|
1764
|
+
"picomatch": "^4.0.5",
|
|
1765
|
+
"postcss": "^8.5.16",
|
|
1766
|
+
"rolldown": "~1.1.4",
|
|
1767
|
+
"tinyglobby": "^0.2.17"
|
|
1768
|
+
},
|
|
1769
|
+
"bin": {
|
|
1770
|
+
"vite": "bin/vite.js"
|
|
1771
|
+
},
|
|
1772
|
+
"engines": {
|
|
1773
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
1774
|
+
},
|
|
1775
|
+
"funding": {
|
|
1776
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
1777
|
+
},
|
|
1778
|
+
"optionalDependencies": {
|
|
1779
|
+
"fsevents": "~2.3.3"
|
|
1780
|
+
},
|
|
1781
|
+
"peerDependencies": {
|
|
1782
|
+
"@types/node": "^20.19.0 || >=22.12.0",
|
|
1783
|
+
"@vitejs/devtools": "^0.3.0",
|
|
1784
|
+
"esbuild": "^0.27.0 || ^0.28.0",
|
|
1785
|
+
"jiti": ">=1.21.0",
|
|
1786
|
+
"less": "^4.0.0",
|
|
1787
|
+
"sass": "^1.70.0",
|
|
1788
|
+
"sass-embedded": "^1.70.0",
|
|
1789
|
+
"stylus": ">=0.54.8",
|
|
1790
|
+
"sugarss": "^5.0.0",
|
|
1791
|
+
"terser": "^5.16.0",
|
|
1792
|
+
"tsx": "^4.8.1",
|
|
1793
|
+
"yaml": "^2.4.2"
|
|
1794
|
+
},
|
|
1795
|
+
"peerDependenciesMeta": {
|
|
1796
|
+
"@types/node": {
|
|
1797
|
+
"optional": true
|
|
1798
|
+
},
|
|
1799
|
+
"@vitejs/devtools": {
|
|
1800
|
+
"optional": true
|
|
1801
|
+
},
|
|
1802
|
+
"esbuild": {
|
|
1803
|
+
"optional": true
|
|
1804
|
+
},
|
|
1805
|
+
"jiti": {
|
|
1806
|
+
"optional": true
|
|
1807
|
+
},
|
|
1808
|
+
"less": {
|
|
1809
|
+
"optional": true
|
|
1810
|
+
},
|
|
1811
|
+
"sass": {
|
|
1812
|
+
"optional": true
|
|
1813
|
+
},
|
|
1814
|
+
"sass-embedded": {
|
|
1815
|
+
"optional": true
|
|
1816
|
+
},
|
|
1817
|
+
"stylus": {
|
|
1818
|
+
"optional": true
|
|
1819
|
+
},
|
|
1820
|
+
"sugarss": {
|
|
1821
|
+
"optional": true
|
|
1822
|
+
},
|
|
1823
|
+
"terser": {
|
|
1824
|
+
"optional": true
|
|
1825
|
+
},
|
|
1826
|
+
"tsx": {
|
|
1827
|
+
"optional": true
|
|
1828
|
+
},
|
|
1829
|
+
"yaml": {
|
|
1830
|
+
"optional": true
|
|
1831
|
+
}
|
|
1832
|
+
}
|
|
1833
|
+
},
|
|
1834
|
+
"node_modules/vitest": {
|
|
1835
|
+
"version": "4.1.10",
|
|
1836
|
+
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.10.tgz",
|
|
1837
|
+
"integrity": "sha512-R9jUTe5S4Qb0HCd4TNqpC7oGcrMssMRGXLW80ubjWsW9VH5GF8y1Y0SFLY9AbqSk6nt0PnOx4H4WNJYZ13GUPw==",
|
|
1838
|
+
"dev": true,
|
|
1839
|
+
"license": "MIT",
|
|
1840
|
+
"dependencies": {
|
|
1841
|
+
"@vitest/expect": "4.1.10",
|
|
1842
|
+
"@vitest/mocker": "4.1.10",
|
|
1843
|
+
"@vitest/pretty-format": "4.1.10",
|
|
1844
|
+
"@vitest/runner": "4.1.10",
|
|
1845
|
+
"@vitest/snapshot": "4.1.10",
|
|
1846
|
+
"@vitest/spy": "4.1.10",
|
|
1847
|
+
"@vitest/utils": "4.1.10",
|
|
1848
|
+
"es-module-lexer": "^2.0.0",
|
|
1849
|
+
"expect-type": "^1.3.0",
|
|
1850
|
+
"magic-string": "^0.30.21",
|
|
1851
|
+
"obug": "^2.1.1",
|
|
1852
|
+
"pathe": "^2.0.3",
|
|
1853
|
+
"picomatch": "^4.0.3",
|
|
1854
|
+
"std-env": "^4.0.0-rc.1",
|
|
1855
|
+
"tinybench": "^2.9.0",
|
|
1856
|
+
"tinyexec": "^1.0.2",
|
|
1857
|
+
"tinyglobby": "^0.2.15",
|
|
1858
|
+
"tinyrainbow": "^3.1.0",
|
|
1859
|
+
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0",
|
|
1860
|
+
"why-is-node-running": "^2.3.0"
|
|
1861
|
+
},
|
|
1862
|
+
"bin": {
|
|
1863
|
+
"vitest": "vitest.mjs"
|
|
1864
|
+
},
|
|
1865
|
+
"engines": {
|
|
1866
|
+
"node": "^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
1867
|
+
},
|
|
1868
|
+
"funding": {
|
|
1869
|
+
"url": "https://opencollective.com/vitest"
|
|
1870
|
+
},
|
|
1871
|
+
"peerDependencies": {
|
|
1872
|
+
"@edge-runtime/vm": "*",
|
|
1873
|
+
"@opentelemetry/api": "^1.9.0",
|
|
1874
|
+
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
|
|
1875
|
+
"@vitest/browser-playwright": "4.1.10",
|
|
1876
|
+
"@vitest/browser-preview": "4.1.10",
|
|
1877
|
+
"@vitest/browser-webdriverio": "4.1.10",
|
|
1878
|
+
"@vitest/coverage-istanbul": "4.1.10",
|
|
1879
|
+
"@vitest/coverage-v8": "4.1.10",
|
|
1880
|
+
"@vitest/ui": "4.1.10",
|
|
1881
|
+
"happy-dom": "*",
|
|
1882
|
+
"jsdom": "*",
|
|
1883
|
+
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
1884
|
+
},
|
|
1885
|
+
"peerDependenciesMeta": {
|
|
1886
|
+
"@edge-runtime/vm": {
|
|
1887
|
+
"optional": true
|
|
1888
|
+
},
|
|
1889
|
+
"@opentelemetry/api": {
|
|
1890
|
+
"optional": true
|
|
1891
|
+
},
|
|
1892
|
+
"@types/node": {
|
|
1893
|
+
"optional": true
|
|
1894
|
+
},
|
|
1895
|
+
"@vitest/browser-playwright": {
|
|
1896
|
+
"optional": true
|
|
1897
|
+
},
|
|
1898
|
+
"@vitest/browser-preview": {
|
|
1899
|
+
"optional": true
|
|
1900
|
+
},
|
|
1901
|
+
"@vitest/browser-webdriverio": {
|
|
1902
|
+
"optional": true
|
|
1903
|
+
},
|
|
1904
|
+
"@vitest/coverage-istanbul": {
|
|
1905
|
+
"optional": true
|
|
1906
|
+
},
|
|
1907
|
+
"@vitest/coverage-v8": {
|
|
1908
|
+
"optional": true
|
|
1909
|
+
},
|
|
1910
|
+
"@vitest/ui": {
|
|
1911
|
+
"optional": true
|
|
1912
|
+
},
|
|
1913
|
+
"happy-dom": {
|
|
1914
|
+
"optional": true
|
|
1915
|
+
},
|
|
1916
|
+
"jsdom": {
|
|
1917
|
+
"optional": true
|
|
1918
|
+
},
|
|
1919
|
+
"vite": {
|
|
1920
|
+
"optional": false
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
},
|
|
1924
|
+
"node_modules/why-is-node-running": {
|
|
1925
|
+
"version": "2.3.0",
|
|
1926
|
+
"resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz",
|
|
1927
|
+
"integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==",
|
|
1928
|
+
"dev": true,
|
|
1929
|
+
"license": "MIT",
|
|
1930
|
+
"dependencies": {
|
|
1931
|
+
"siginfo": "^2.0.0",
|
|
1932
|
+
"stackback": "0.0.2"
|
|
1933
|
+
},
|
|
1934
|
+
"bin": {
|
|
1935
|
+
"why-is-node-running": "cli.js"
|
|
1936
|
+
},
|
|
1937
|
+
"engines": {
|
|
1938
|
+
"node": ">=8"
|
|
1939
|
+
}
|
|
1940
|
+
}
|
|
1941
|
+
}
|
|
1942
|
+
}
|