openclaw-node-harness 2.0.3 → 2.1.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/README.md +646 -3
- package/bin/hyperagent.mjs +419 -0
- package/bin/mesh-agent.js +603 -81
- package/bin/mesh-bridge.js +340 -11
- package/bin/mesh-deploy-listener.js +119 -97
- package/bin/mesh-deploy.js +8 -0
- package/bin/mesh-task-daemon.js +1005 -40
- package/bin/mesh.js +423 -6
- package/config/claude-settings.json +95 -0
- package/config/daemon.json.template +2 -1
- package/config/git-hooks/pre-commit +13 -0
- package/config/git-hooks/pre-push +12 -0
- package/config/harness-rules.json +174 -0
- package/config/plan-templates/team-bugfix.yaml +52 -0
- package/config/plan-templates/team-deploy.yaml +50 -0
- package/config/plan-templates/team-feature.yaml +71 -0
- package/config/roles/qa-engineer.yaml +36 -0
- package/config/roles/solidity-dev.yaml +51 -0
- package/config/roles/tech-architect.yaml +36 -0
- package/config/rules/framework/solidity.md +22 -0
- package/config/rules/framework/typescript.md +21 -0
- package/config/rules/framework/unity.md +21 -0
- package/config/rules/universal/design-docs.md +18 -0
- package/config/rules/universal/git-hygiene.md +18 -0
- package/config/rules/universal/security.md +19 -0
- package/config/rules/universal/test-standards.md +19 -0
- package/identity/DELEGATION.md +6 -6
- package/install.sh +300 -8
- package/lib/circling-parser.js +119 -0
- package/lib/hyperagent-store.mjs +652 -0
- package/lib/kanban-io.js +59 -10
- package/lib/mcp-knowledge/bench.mjs +118 -0
- package/lib/mcp-knowledge/core.mjs +528 -0
- package/lib/mcp-knowledge/package.json +25 -0
- package/lib/mcp-knowledge/server.mjs +245 -0
- package/lib/mcp-knowledge/test.mjs +802 -0
- package/lib/memory-budget.mjs +261 -0
- package/lib/mesh-collab.js +354 -4
- package/lib/mesh-harness.js +427 -0
- package/lib/mesh-plans.js +13 -5
- package/lib/mesh-registry.js +11 -2
- package/lib/mesh-tasks.js +67 -0
- package/lib/plan-templates.js +226 -0
- package/lib/pre-compression-flush.mjs +320 -0
- package/lib/role-loader.js +292 -0
- package/lib/rule-loader.js +358 -0
- package/lib/session-store.mjs +458 -0
- package/lib/transcript-parser.mjs +292 -0
- package/mission-control/drizzle/soul_schema_update.sql +29 -0
- package/mission-control/drizzle.config.ts +1 -4
- package/mission-control/package-lock.json +1571 -83
- package/mission-control/package.json +6 -2
- package/mission-control/scripts/gen-chronology.js +3 -3
- package/mission-control/scripts/import-pipeline-v2.js +0 -16
- package/mission-control/scripts/import-pipeline.js +0 -15
- package/mission-control/src/app/api/cowork/clusters/[id]/members/route.ts +117 -0
- package/mission-control/src/app/api/cowork/clusters/[id]/route.ts +84 -0
- package/mission-control/src/app/api/cowork/clusters/route.ts +141 -0
- package/mission-control/src/app/api/cowork/dispatch/route.ts +128 -0
- package/mission-control/src/app/api/cowork/events/route.ts +65 -0
- package/mission-control/src/app/api/cowork/intervene/route.ts +259 -0
- package/mission-control/src/app/api/cowork/sessions/[id]/route.ts +37 -0
- package/mission-control/src/app/api/cowork/sessions/route.ts +64 -0
- package/mission-control/src/app/api/diagnostics/route.ts +97 -0
- package/mission-control/src/app/api/diagnostics/test-runner/route.ts +990 -0
- package/mission-control/src/app/api/mesh/events/route.ts +95 -19
- package/mission-control/src/app/api/mesh/identity/route.ts +11 -0
- package/mission-control/src/app/api/mesh/tasks/[id]/route.ts +92 -0
- package/mission-control/src/app/api/mesh/tasks/route.ts +91 -0
- package/mission-control/src/app/api/tasks/[id]/handoff/route.ts +1 -1
- package/mission-control/src/app/api/tasks/[id]/route.ts +90 -4
- package/mission-control/src/app/api/tasks/route.ts +21 -30
- package/mission-control/src/app/cowork/page.tsx +261 -0
- package/mission-control/src/app/diagnostics/page.tsx +385 -0
- package/mission-control/src/app/graph/page.tsx +26 -0
- package/mission-control/src/app/memory/page.tsx +1 -1
- package/mission-control/src/app/obsidian/page.tsx +36 -6
- package/mission-control/src/app/roadmap/page.tsx +24 -0
- package/mission-control/src/app/souls/page.tsx +2 -2
- package/mission-control/src/components/board/execution-config.tsx +431 -0
- package/mission-control/src/components/board/kanban-board.tsx +75 -9
- package/mission-control/src/components/board/kanban-column.tsx +135 -19
- package/mission-control/src/components/board/task-card.tsx +55 -2
- package/mission-control/src/components/board/unified-task-dialog.tsx +82 -4
- package/mission-control/src/components/cowork/cluster-card.tsx +176 -0
- package/mission-control/src/components/cowork/create-cluster-dialog.tsx +251 -0
- package/mission-control/src/components/cowork/dispatch-form.tsx +423 -0
- package/mission-control/src/components/cowork/role-picker.tsx +102 -0
- package/mission-control/src/components/cowork/session-card.tsx +284 -0
- package/mission-control/src/components/layout/sidebar.tsx +39 -2
- package/mission-control/src/lib/__tests__/daily-log.test.ts +82 -0
- package/mission-control/src/lib/__tests__/memory-md.test.ts +87 -0
- package/mission-control/src/lib/__tests__/mesh-kv-sync.test.ts +465 -0
- package/mission-control/src/lib/__tests__/mocks/mock-kv.ts +131 -0
- package/mission-control/src/lib/__tests__/status-kanban.test.ts +46 -0
- package/mission-control/src/lib/__tests__/task-markdown.test.ts +188 -0
- package/mission-control/src/lib/__tests__/wikilinks.test.ts +175 -0
- package/mission-control/src/lib/config.ts +58 -0
- package/mission-control/src/lib/db/index.ts +69 -0
- package/mission-control/src/lib/db/schema.ts +61 -3
- package/mission-control/src/lib/hooks.ts +309 -0
- package/mission-control/src/lib/memory/entities.ts +3 -2
- package/mission-control/src/lib/nats.ts +66 -1
- package/mission-control/src/lib/parsers/task-markdown.ts +52 -2
- package/mission-control/src/lib/parsers/transcript.ts +4 -4
- package/mission-control/src/lib/scheduler.ts +12 -11
- package/mission-control/src/lib/sync/mesh-kv.ts +279 -0
- package/mission-control/src/lib/sync/tasks.ts +23 -1
- package/mission-control/src/lib/task-id.ts +32 -0
- package/mission-control/src/lib/tts/index.ts +33 -9
- package/mission-control/tsconfig.json +2 -1
- package/mission-control/vitest.config.ts +14 -0
- package/package.json +15 -2
- package/services/service-manifest.json +1 -1
- package/skills/cc-godmode/references/agents.md +8 -8
- package/workspace-bin/memory-daemon.mjs +199 -5
- package/workspace-bin/session-search.mjs +204 -0
- package/workspace-bin/web-fetch.mjs +65 -0
|
@@ -40,7 +40,11 @@
|
|
|
40
40
|
"eslint": "^9",
|
|
41
41
|
"eslint-config-next": "16.1.6",
|
|
42
42
|
"tailwindcss": "^4.2.1",
|
|
43
|
-
"typescript": "5.9.3"
|
|
43
|
+
"typescript": "5.9.3",
|
|
44
|
+
"vitest": "^4.1.0"
|
|
45
|
+
},
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=22"
|
|
44
48
|
}
|
|
45
49
|
},
|
|
46
50
|
"node_modules/@alloc/quick-lru": {
|
|
@@ -2217,6 +2221,295 @@
|
|
|
2217
2221
|
"node": ">=12.4.0"
|
|
2218
2222
|
}
|
|
2219
2223
|
},
|
|
2224
|
+
"node_modules/@oxc-project/types": {
|
|
2225
|
+
"version": "0.120.0",
|
|
2226
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.120.0.tgz",
|
|
2227
|
+
"integrity": "sha512-k1YNu55DuvAip/MGE1FTsIuU3FUCn6v/ujG9V7Nq5Df/kX2CWb13hhwD0lmJGMGqE+bE1MXvv9SZVnMzEXlWcg==",
|
|
2228
|
+
"dev": true,
|
|
2229
|
+
"license": "MIT",
|
|
2230
|
+
"funding": {
|
|
2231
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
2232
|
+
}
|
|
2233
|
+
},
|
|
2234
|
+
"node_modules/@rolldown/binding-android-arm64": {
|
|
2235
|
+
"version": "1.0.0-rc.10",
|
|
2236
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.10.tgz",
|
|
2237
|
+
"integrity": "sha512-jOHxwXhxmFKuXztiu1ORieJeTbx5vrTkcOkkkn2d35726+iwhrY1w/+nYY/AGgF12thg33qC3R1LMBF5tHTZHg==",
|
|
2238
|
+
"cpu": [
|
|
2239
|
+
"arm64"
|
|
2240
|
+
],
|
|
2241
|
+
"dev": true,
|
|
2242
|
+
"license": "MIT",
|
|
2243
|
+
"optional": true,
|
|
2244
|
+
"os": [
|
|
2245
|
+
"android"
|
|
2246
|
+
],
|
|
2247
|
+
"engines": {
|
|
2248
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2249
|
+
}
|
|
2250
|
+
},
|
|
2251
|
+
"node_modules/@rolldown/binding-darwin-arm64": {
|
|
2252
|
+
"version": "1.0.0-rc.10",
|
|
2253
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.10.tgz",
|
|
2254
|
+
"integrity": "sha512-gED05Teg/vtTZbIJBc4VNMAxAFDUPkuO/rAIyyxZjTj1a1/s6z5TII/5yMGZ0uLRCifEtwUQn8OlYzuYc0m70w==",
|
|
2255
|
+
"cpu": [
|
|
2256
|
+
"arm64"
|
|
2257
|
+
],
|
|
2258
|
+
"dev": true,
|
|
2259
|
+
"license": "MIT",
|
|
2260
|
+
"optional": true,
|
|
2261
|
+
"os": [
|
|
2262
|
+
"darwin"
|
|
2263
|
+
],
|
|
2264
|
+
"engines": {
|
|
2265
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2266
|
+
}
|
|
2267
|
+
},
|
|
2268
|
+
"node_modules/@rolldown/binding-darwin-x64": {
|
|
2269
|
+
"version": "1.0.0-rc.10",
|
|
2270
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.10.tgz",
|
|
2271
|
+
"integrity": "sha512-rI15NcM1mA48lqrIxVkHfAqcyFLcQwyXWThy+BQ5+mkKKPvSO26ir+ZDp36AgYoYVkqvMcdS8zOE6SeBsR9e8A==",
|
|
2272
|
+
"cpu": [
|
|
2273
|
+
"x64"
|
|
2274
|
+
],
|
|
2275
|
+
"dev": true,
|
|
2276
|
+
"license": "MIT",
|
|
2277
|
+
"optional": true,
|
|
2278
|
+
"os": [
|
|
2279
|
+
"darwin"
|
|
2280
|
+
],
|
|
2281
|
+
"engines": {
|
|
2282
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2283
|
+
}
|
|
2284
|
+
},
|
|
2285
|
+
"node_modules/@rolldown/binding-freebsd-x64": {
|
|
2286
|
+
"version": "1.0.0-rc.10",
|
|
2287
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.10.tgz",
|
|
2288
|
+
"integrity": "sha512-XZRXHdTa+4ME1MuDVp021+doQ+z6Ei4CCFmNc5/sKbqb8YmkiJdj8QKlV3rCI0AJtAeSB5n0WGPuJWNL9p/L2w==",
|
|
2289
|
+
"cpu": [
|
|
2290
|
+
"x64"
|
|
2291
|
+
],
|
|
2292
|
+
"dev": true,
|
|
2293
|
+
"license": "MIT",
|
|
2294
|
+
"optional": true,
|
|
2295
|
+
"os": [
|
|
2296
|
+
"freebsd"
|
|
2297
|
+
],
|
|
2298
|
+
"engines": {
|
|
2299
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2300
|
+
}
|
|
2301
|
+
},
|
|
2302
|
+
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
|
|
2303
|
+
"version": "1.0.0-rc.10",
|
|
2304
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.10.tgz",
|
|
2305
|
+
"integrity": "sha512-R0SQMRluISSLzFE20sPWYHVmJdDQnRyc/FzSCN72BqQmh2SOZUFG+N3/vBZpR4C6WpEUVYJLrYUXaj43sJsNLA==",
|
|
2306
|
+
"cpu": [
|
|
2307
|
+
"arm"
|
|
2308
|
+
],
|
|
2309
|
+
"dev": true,
|
|
2310
|
+
"license": "MIT",
|
|
2311
|
+
"optional": true,
|
|
2312
|
+
"os": [
|
|
2313
|
+
"linux"
|
|
2314
|
+
],
|
|
2315
|
+
"engines": {
|
|
2316
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2317
|
+
}
|
|
2318
|
+
},
|
|
2319
|
+
"node_modules/@rolldown/binding-linux-arm64-gnu": {
|
|
2320
|
+
"version": "1.0.0-rc.10",
|
|
2321
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.10.tgz",
|
|
2322
|
+
"integrity": "sha512-Y1reMrV/o+cwpduYhJuOE3OMKx32RMYCidf14y+HssARRmhDuWXJ4yVguDg2R/8SyyGNo+auzz64LnPK9Hq6jg==",
|
|
2323
|
+
"cpu": [
|
|
2324
|
+
"arm64"
|
|
2325
|
+
],
|
|
2326
|
+
"dev": true,
|
|
2327
|
+
"license": "MIT",
|
|
2328
|
+
"optional": true,
|
|
2329
|
+
"os": [
|
|
2330
|
+
"linux"
|
|
2331
|
+
],
|
|
2332
|
+
"engines": {
|
|
2333
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2334
|
+
}
|
|
2335
|
+
},
|
|
2336
|
+
"node_modules/@rolldown/binding-linux-arm64-musl": {
|
|
2337
|
+
"version": "1.0.0-rc.10",
|
|
2338
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.10.tgz",
|
|
2339
|
+
"integrity": "sha512-vELN+HNb2IzuzSBUOD4NHmP9yrGwl1DVM29wlQvx1OLSclL0NgVWnVDKl/8tEks79EFek/kebQKnNJkIAA4W2g==",
|
|
2340
|
+
"cpu": [
|
|
2341
|
+
"arm64"
|
|
2342
|
+
],
|
|
2343
|
+
"dev": true,
|
|
2344
|
+
"license": "MIT",
|
|
2345
|
+
"optional": true,
|
|
2346
|
+
"os": [
|
|
2347
|
+
"linux"
|
|
2348
|
+
],
|
|
2349
|
+
"engines": {
|
|
2350
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2351
|
+
}
|
|
2352
|
+
},
|
|
2353
|
+
"node_modules/@rolldown/binding-linux-ppc64-gnu": {
|
|
2354
|
+
"version": "1.0.0-rc.10",
|
|
2355
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.10.tgz",
|
|
2356
|
+
"integrity": "sha512-ZqrufYTgzxbHwpqOjzSsb0UV/aV2TFIY5rP8HdsiPTv/CuAgCRjM6s9cYFwQ4CNH+hf9Y4erHW1GjZuZ7WoI7w==",
|
|
2357
|
+
"cpu": [
|
|
2358
|
+
"ppc64"
|
|
2359
|
+
],
|
|
2360
|
+
"dev": true,
|
|
2361
|
+
"license": "MIT",
|
|
2362
|
+
"optional": true,
|
|
2363
|
+
"os": [
|
|
2364
|
+
"linux"
|
|
2365
|
+
],
|
|
2366
|
+
"engines": {
|
|
2367
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2368
|
+
}
|
|
2369
|
+
},
|
|
2370
|
+
"node_modules/@rolldown/binding-linux-s390x-gnu": {
|
|
2371
|
+
"version": "1.0.0-rc.10",
|
|
2372
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.10.tgz",
|
|
2373
|
+
"integrity": "sha512-gSlmVS1FZJSRicA6IyjoRoKAFK7IIHBs7xJuHRSmjImqk3mPPWbR7RhbnfH2G6bcmMEllCt2vQ/7u9e6bBnByg==",
|
|
2374
|
+
"cpu": [
|
|
2375
|
+
"s390x"
|
|
2376
|
+
],
|
|
2377
|
+
"dev": true,
|
|
2378
|
+
"license": "MIT",
|
|
2379
|
+
"optional": true,
|
|
2380
|
+
"os": [
|
|
2381
|
+
"linux"
|
|
2382
|
+
],
|
|
2383
|
+
"engines": {
|
|
2384
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2385
|
+
}
|
|
2386
|
+
},
|
|
2387
|
+
"node_modules/@rolldown/binding-linux-x64-gnu": {
|
|
2388
|
+
"version": "1.0.0-rc.10",
|
|
2389
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.10.tgz",
|
|
2390
|
+
"integrity": "sha512-eOCKUpluKgfObT2pHjztnaWEIbUabWzk3qPZ5PuacuPmr4+JtQG4k2vGTY0H15edaTnicgU428XW/IH6AimcQw==",
|
|
2391
|
+
"cpu": [
|
|
2392
|
+
"x64"
|
|
2393
|
+
],
|
|
2394
|
+
"dev": true,
|
|
2395
|
+
"license": "MIT",
|
|
2396
|
+
"optional": true,
|
|
2397
|
+
"os": [
|
|
2398
|
+
"linux"
|
|
2399
|
+
],
|
|
2400
|
+
"engines": {
|
|
2401
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2402
|
+
}
|
|
2403
|
+
},
|
|
2404
|
+
"node_modules/@rolldown/binding-linux-x64-musl": {
|
|
2405
|
+
"version": "1.0.0-rc.10",
|
|
2406
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.10.tgz",
|
|
2407
|
+
"integrity": "sha512-Xdf2jQbfQowJnLcgYfD/m0Uu0Qj5OdxKallD78/IPPfzaiaI4KRAwZzHcKQ4ig1gtg1SuzC7jovNiM2TzQsBXA==",
|
|
2408
|
+
"cpu": [
|
|
2409
|
+
"x64"
|
|
2410
|
+
],
|
|
2411
|
+
"dev": true,
|
|
2412
|
+
"license": "MIT",
|
|
2413
|
+
"optional": true,
|
|
2414
|
+
"os": [
|
|
2415
|
+
"linux"
|
|
2416
|
+
],
|
|
2417
|
+
"engines": {
|
|
2418
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2419
|
+
}
|
|
2420
|
+
},
|
|
2421
|
+
"node_modules/@rolldown/binding-openharmony-arm64": {
|
|
2422
|
+
"version": "1.0.0-rc.10",
|
|
2423
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.10.tgz",
|
|
2424
|
+
"integrity": "sha512-o1hYe8hLi1EY6jgPFyxQgQ1wcycX+qz8eEbVmot2hFkgUzPxy9+kF0u0NIQBeDq+Mko47AkaFFaChcvZa9UX9Q==",
|
|
2425
|
+
"cpu": [
|
|
2426
|
+
"arm64"
|
|
2427
|
+
],
|
|
2428
|
+
"dev": true,
|
|
2429
|
+
"license": "MIT",
|
|
2430
|
+
"optional": true,
|
|
2431
|
+
"os": [
|
|
2432
|
+
"openharmony"
|
|
2433
|
+
],
|
|
2434
|
+
"engines": {
|
|
2435
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2436
|
+
}
|
|
2437
|
+
},
|
|
2438
|
+
"node_modules/@rolldown/binding-wasm32-wasi": {
|
|
2439
|
+
"version": "1.0.0-rc.10",
|
|
2440
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.10.tgz",
|
|
2441
|
+
"integrity": "sha512-Ugv9o7qYJudqQO5Y5y2N2SOo6S4WiqiNOpuQyoPInnhVzCY+wi/GHltcLHypG9DEUYMB0iTB/huJrpadiAcNcA==",
|
|
2442
|
+
"cpu": [
|
|
2443
|
+
"wasm32"
|
|
2444
|
+
],
|
|
2445
|
+
"dev": true,
|
|
2446
|
+
"license": "MIT",
|
|
2447
|
+
"optional": true,
|
|
2448
|
+
"dependencies": {
|
|
2449
|
+
"@napi-rs/wasm-runtime": "^1.1.1"
|
|
2450
|
+
},
|
|
2451
|
+
"engines": {
|
|
2452
|
+
"node": ">=14.0.0"
|
|
2453
|
+
}
|
|
2454
|
+
},
|
|
2455
|
+
"node_modules/@rolldown/binding-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": {
|
|
2456
|
+
"version": "1.1.1",
|
|
2457
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz",
|
|
2458
|
+
"integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==",
|
|
2459
|
+
"dev": true,
|
|
2460
|
+
"license": "MIT",
|
|
2461
|
+
"optional": true,
|
|
2462
|
+
"dependencies": {
|
|
2463
|
+
"@emnapi/core": "^1.7.1",
|
|
2464
|
+
"@emnapi/runtime": "^1.7.1",
|
|
2465
|
+
"@tybys/wasm-util": "^0.10.1"
|
|
2466
|
+
},
|
|
2467
|
+
"funding": {
|
|
2468
|
+
"type": "github",
|
|
2469
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
2470
|
+
}
|
|
2471
|
+
},
|
|
2472
|
+
"node_modules/@rolldown/binding-win32-arm64-msvc": {
|
|
2473
|
+
"version": "1.0.0-rc.10",
|
|
2474
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.10.tgz",
|
|
2475
|
+
"integrity": "sha512-7UODQb4fQUNT/vmgDZBl3XOBAIOutP5R3O/rkxg0aLfEGQ4opbCgU5vOw/scPe4xOqBwL9fw7/RP1vAMZ6QlAQ==",
|
|
2476
|
+
"cpu": [
|
|
2477
|
+
"arm64"
|
|
2478
|
+
],
|
|
2479
|
+
"dev": true,
|
|
2480
|
+
"license": "MIT",
|
|
2481
|
+
"optional": true,
|
|
2482
|
+
"os": [
|
|
2483
|
+
"win32"
|
|
2484
|
+
],
|
|
2485
|
+
"engines": {
|
|
2486
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2487
|
+
}
|
|
2488
|
+
},
|
|
2489
|
+
"node_modules/@rolldown/binding-win32-x64-msvc": {
|
|
2490
|
+
"version": "1.0.0-rc.10",
|
|
2491
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.10.tgz",
|
|
2492
|
+
"integrity": "sha512-PYxKHMVHOb5NJuDL53vBUl1VwUjymDcYI6rzpIni0C9+9mTiJedvUxSk7/RPp7OOAm3v+EjgMu9bIy3N6b408w==",
|
|
2493
|
+
"cpu": [
|
|
2494
|
+
"x64"
|
|
2495
|
+
],
|
|
2496
|
+
"dev": true,
|
|
2497
|
+
"license": "MIT",
|
|
2498
|
+
"optional": true,
|
|
2499
|
+
"os": [
|
|
2500
|
+
"win32"
|
|
2501
|
+
],
|
|
2502
|
+
"engines": {
|
|
2503
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2506
|
+
"node_modules/@rolldown/pluginutils": {
|
|
2507
|
+
"version": "1.0.0-rc.10",
|
|
2508
|
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.10.tgz",
|
|
2509
|
+
"integrity": "sha512-UkVDEFk1w3mveXeKgaTuYfKWtPbvgck1dT8TUG3bnccrH0XtLTuAyfCoks4Q/M5ZGToSVJTIQYCzy2g/atAOeg==",
|
|
2510
|
+
"dev": true,
|
|
2511
|
+
"license": "MIT"
|
|
2512
|
+
},
|
|
2220
2513
|
"node_modules/@rtsao/scc": {
|
|
2221
2514
|
"version": "1.1.0",
|
|
2222
2515
|
"resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
|
|
@@ -2224,6 +2517,13 @@
|
|
|
2224
2517
|
"dev": true,
|
|
2225
2518
|
"license": "MIT"
|
|
2226
2519
|
},
|
|
2520
|
+
"node_modules/@standard-schema/spec": {
|
|
2521
|
+
"version": "1.1.0",
|
|
2522
|
+
"resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
|
|
2523
|
+
"integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
|
|
2524
|
+
"dev": true,
|
|
2525
|
+
"license": "MIT"
|
|
2526
|
+
},
|
|
2227
2527
|
"node_modules/@swc/helpers": {
|
|
2228
2528
|
"version": "0.5.15",
|
|
2229
2529
|
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
|
|
@@ -2532,6 +2832,17 @@
|
|
|
2532
2832
|
"@types/node": "*"
|
|
2533
2833
|
}
|
|
2534
2834
|
},
|
|
2835
|
+
"node_modules/@types/chai": {
|
|
2836
|
+
"version": "5.2.3",
|
|
2837
|
+
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
|
|
2838
|
+
"integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
|
|
2839
|
+
"dev": true,
|
|
2840
|
+
"license": "MIT",
|
|
2841
|
+
"dependencies": {
|
|
2842
|
+
"@types/deep-eql": "*",
|
|
2843
|
+
"assertion-error": "^2.0.1"
|
|
2844
|
+
}
|
|
2845
|
+
},
|
|
2535
2846
|
"node_modules/@types/debug": {
|
|
2536
2847
|
"version": "4.1.12",
|
|
2537
2848
|
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
|
|
@@ -2541,6 +2852,13 @@
|
|
|
2541
2852
|
"@types/ms": "*"
|
|
2542
2853
|
}
|
|
2543
2854
|
},
|
|
2855
|
+
"node_modules/@types/deep-eql": {
|
|
2856
|
+
"version": "4.0.2",
|
|
2857
|
+
"resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
|
|
2858
|
+
"integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
|
|
2859
|
+
"dev": true,
|
|
2860
|
+
"license": "MIT"
|
|
2861
|
+
},
|
|
2544
2862
|
"node_modules/@types/estree": {
|
|
2545
2863
|
"version": "1.0.8",
|
|
2546
2864
|
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
@@ -3207,52 +3525,138 @@
|
|
|
3207
3525
|
"win32"
|
|
3208
3526
|
]
|
|
3209
3527
|
},
|
|
3210
|
-
"node_modules/
|
|
3211
|
-
"version": "1.
|
|
3212
|
-
"resolved": "https://registry.npmjs.org/
|
|
3213
|
-
"integrity": "sha512-
|
|
3528
|
+
"node_modules/@vitest/expect": {
|
|
3529
|
+
"version": "4.1.0",
|
|
3530
|
+
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.0.tgz",
|
|
3531
|
+
"integrity": "sha512-EIxG7k4wlWweuCLG9Y5InKFwpMEOyrMb6ZJ1ihYu02LVj/bzUwn2VMU+13PinsjRW75XnITeFrQBMH5+dLvCDA==",
|
|
3532
|
+
"dev": true,
|
|
3214
3533
|
"license": "MIT",
|
|
3215
3534
|
"dependencies": {
|
|
3216
|
-
"
|
|
3217
|
-
"
|
|
3218
|
-
"
|
|
3219
|
-
"
|
|
3220
|
-
"
|
|
3535
|
+
"@standard-schema/spec": "^1.1.0",
|
|
3536
|
+
"@types/chai": "^5.2.2",
|
|
3537
|
+
"@vitest/spy": "4.1.0",
|
|
3538
|
+
"@vitest/utils": "4.1.0",
|
|
3539
|
+
"chai": "^6.2.2",
|
|
3540
|
+
"tinyrainbow": "^3.0.3"
|
|
3221
3541
|
},
|
|
3222
|
-
"
|
|
3223
|
-
"
|
|
3542
|
+
"funding": {
|
|
3543
|
+
"url": "https://opencollective.com/vitest"
|
|
3224
3544
|
}
|
|
3225
3545
|
},
|
|
3226
|
-
"node_modules/
|
|
3227
|
-
"version": "1.
|
|
3228
|
-
"resolved": "https://registry.npmjs.org/
|
|
3229
|
-
"integrity": "sha512-
|
|
3546
|
+
"node_modules/@vitest/pretty-format": {
|
|
3547
|
+
"version": "4.1.0",
|
|
3548
|
+
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.0.tgz",
|
|
3549
|
+
"integrity": "sha512-3RZLZlh88Ib0J7NQTRATfc/3ZPOnSUn2uDBUoGNn5T36+bALixmzphN26OUD3LRXWkJu4H0s5vvUeqBiw+kS0A==",
|
|
3550
|
+
"dev": true,
|
|
3230
3551
|
"license": "MIT",
|
|
3231
|
-
"
|
|
3232
|
-
"
|
|
3552
|
+
"dependencies": {
|
|
3553
|
+
"tinyrainbow": "^3.0.3"
|
|
3554
|
+
},
|
|
3555
|
+
"funding": {
|
|
3556
|
+
"url": "https://opencollective.com/vitest"
|
|
3233
3557
|
}
|
|
3234
3558
|
},
|
|
3235
|
-
"node_modules/
|
|
3236
|
-
"version": "
|
|
3237
|
-
"resolved": "https://registry.npmjs.org/
|
|
3238
|
-
"integrity": "sha512-
|
|
3559
|
+
"node_modules/@vitest/runner": {
|
|
3560
|
+
"version": "4.1.0",
|
|
3561
|
+
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.0.tgz",
|
|
3562
|
+
"integrity": "sha512-Duvx2OzQ7d6OjchL+trw+aSrb9idh7pnNfxrklo14p3zmNL4qPCDeIJAK+eBKYjkIwG96Bc6vYuxhqDXQOWpoQ==",
|
|
3239
3563
|
"dev": true,
|
|
3240
3564
|
"license": "MIT",
|
|
3241
|
-
"
|
|
3242
|
-
|
|
3243
|
-
"
|
|
3565
|
+
"dependencies": {
|
|
3566
|
+
"@vitest/utils": "4.1.0",
|
|
3567
|
+
"pathe": "^2.0.3"
|
|
3244
3568
|
},
|
|
3245
|
-
"
|
|
3246
|
-
"
|
|
3569
|
+
"funding": {
|
|
3570
|
+
"url": "https://opencollective.com/vitest"
|
|
3247
3571
|
}
|
|
3248
3572
|
},
|
|
3249
|
-
"node_modules/
|
|
3250
|
-
"version": "
|
|
3251
|
-
"resolved": "https://registry.npmjs.org/
|
|
3252
|
-
"integrity": "sha512-
|
|
3573
|
+
"node_modules/@vitest/snapshot": {
|
|
3574
|
+
"version": "4.1.0",
|
|
3575
|
+
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.0.tgz",
|
|
3576
|
+
"integrity": "sha512-0Vy9euT1kgsnj1CHttwi9i9o+4rRLEaPRSOJ5gyv579GJkNpgJK+B4HSv/rAWixx2wdAFci1X4CEPjiu2bXIMg==",
|
|
3253
3577
|
"dev": true,
|
|
3254
3578
|
"license": "MIT",
|
|
3255
|
-
"
|
|
3579
|
+
"dependencies": {
|
|
3580
|
+
"@vitest/pretty-format": "4.1.0",
|
|
3581
|
+
"@vitest/utils": "4.1.0",
|
|
3582
|
+
"magic-string": "^0.30.21",
|
|
3583
|
+
"pathe": "^2.0.3"
|
|
3584
|
+
},
|
|
3585
|
+
"funding": {
|
|
3586
|
+
"url": "https://opencollective.com/vitest"
|
|
3587
|
+
}
|
|
3588
|
+
},
|
|
3589
|
+
"node_modules/@vitest/spy": {
|
|
3590
|
+
"version": "4.1.0",
|
|
3591
|
+
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.0.tgz",
|
|
3592
|
+
"integrity": "sha512-pz77k+PgNpyMDv2FV6qmk5ZVau6c3R8HC8v342T2xlFxQKTrSeYw9waIJG8KgV9fFwAtTu4ceRzMivPTH6wSxw==",
|
|
3593
|
+
"dev": true,
|
|
3594
|
+
"license": "MIT",
|
|
3595
|
+
"funding": {
|
|
3596
|
+
"url": "https://opencollective.com/vitest"
|
|
3597
|
+
}
|
|
3598
|
+
},
|
|
3599
|
+
"node_modules/@vitest/utils": {
|
|
3600
|
+
"version": "4.1.0",
|
|
3601
|
+
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.0.tgz",
|
|
3602
|
+
"integrity": "sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==",
|
|
3603
|
+
"dev": true,
|
|
3604
|
+
"license": "MIT",
|
|
3605
|
+
"dependencies": {
|
|
3606
|
+
"@vitest/pretty-format": "4.1.0",
|
|
3607
|
+
"convert-source-map": "^2.0.0",
|
|
3608
|
+
"tinyrainbow": "^3.0.3"
|
|
3609
|
+
},
|
|
3610
|
+
"funding": {
|
|
3611
|
+
"url": "https://opencollective.com/vitest"
|
|
3612
|
+
}
|
|
3613
|
+
},
|
|
3614
|
+
"node_modules/3d-force-graph": {
|
|
3615
|
+
"version": "1.79.1",
|
|
3616
|
+
"resolved": "https://registry.npmjs.org/3d-force-graph/-/3d-force-graph-1.79.1.tgz",
|
|
3617
|
+
"integrity": "sha512-iscIVt4jWjJ11KEEswgOIOWk8Ew4EFKHRyERJXJ0ouycqzHCtWwb9E5imnxS5rYF1f1IESkFNAfB+h3EkU0Irw==",
|
|
3618
|
+
"license": "MIT",
|
|
3619
|
+
"dependencies": {
|
|
3620
|
+
"accessor-fn": "1",
|
|
3621
|
+
"kapsule": "^1.16",
|
|
3622
|
+
"three": ">=0.118 <1",
|
|
3623
|
+
"three-forcegraph": "1",
|
|
3624
|
+
"three-render-objects": "^1.35"
|
|
3625
|
+
},
|
|
3626
|
+
"engines": {
|
|
3627
|
+
"node": ">=12"
|
|
3628
|
+
}
|
|
3629
|
+
},
|
|
3630
|
+
"node_modules/accessor-fn": {
|
|
3631
|
+
"version": "1.5.3",
|
|
3632
|
+
"resolved": "https://registry.npmjs.org/accessor-fn/-/accessor-fn-1.5.3.tgz",
|
|
3633
|
+
"integrity": "sha512-rkAofCwe/FvYFUlMB0v0gWmhqtfAtV1IUkdPbfhTUyYniu5LrC0A0UJkTH0Jv3S8SvwkmfuAlY+mQIJATdocMA==",
|
|
3634
|
+
"license": "MIT",
|
|
3635
|
+
"engines": {
|
|
3636
|
+
"node": ">=12"
|
|
3637
|
+
}
|
|
3638
|
+
},
|
|
3639
|
+
"node_modules/acorn": {
|
|
3640
|
+
"version": "8.16.0",
|
|
3641
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
|
|
3642
|
+
"integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
|
|
3643
|
+
"dev": true,
|
|
3644
|
+
"license": "MIT",
|
|
3645
|
+
"peer": true,
|
|
3646
|
+
"bin": {
|
|
3647
|
+
"acorn": "bin/acorn"
|
|
3648
|
+
},
|
|
3649
|
+
"engines": {
|
|
3650
|
+
"node": ">=0.4.0"
|
|
3651
|
+
}
|
|
3652
|
+
},
|
|
3653
|
+
"node_modules/acorn-jsx": {
|
|
3654
|
+
"version": "5.3.2",
|
|
3655
|
+
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
|
|
3656
|
+
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
|
|
3657
|
+
"dev": true,
|
|
3658
|
+
"license": "MIT",
|
|
3659
|
+
"peerDependencies": {
|
|
3256
3660
|
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
3257
3661
|
}
|
|
3258
3662
|
},
|
|
@@ -3466,6 +3870,16 @@
|
|
|
3466
3870
|
"url": "https://github.com/sponsors/ljharb"
|
|
3467
3871
|
}
|
|
3468
3872
|
},
|
|
3873
|
+
"node_modules/assertion-error": {
|
|
3874
|
+
"version": "2.0.1",
|
|
3875
|
+
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
|
|
3876
|
+
"integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
|
|
3877
|
+
"dev": true,
|
|
3878
|
+
"license": "MIT",
|
|
3879
|
+
"engines": {
|
|
3880
|
+
"node": ">=12"
|
|
3881
|
+
}
|
|
3882
|
+
},
|
|
3469
3883
|
"node_modules/ast-types-flow": {
|
|
3470
3884
|
"version": "0.0.8",
|
|
3471
3885
|
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
|
|
@@ -3805,6 +4219,16 @@
|
|
|
3805
4219
|
"url": "https://github.com/sponsors/wooorm"
|
|
3806
4220
|
}
|
|
3807
4221
|
},
|
|
4222
|
+
"node_modules/chai": {
|
|
4223
|
+
"version": "6.2.2",
|
|
4224
|
+
"resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz",
|
|
4225
|
+
"integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==",
|
|
4226
|
+
"dev": true,
|
|
4227
|
+
"license": "MIT",
|
|
4228
|
+
"engines": {
|
|
4229
|
+
"node": ">=18"
|
|
4230
|
+
}
|
|
4231
|
+
},
|
|
3808
4232
|
"node_modules/chalk": {
|
|
3809
4233
|
"version": "4.1.2",
|
|
3810
4234
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
@@ -4712,6 +5136,13 @@
|
|
|
4712
5136
|
"node": ">= 0.4"
|
|
4713
5137
|
}
|
|
4714
5138
|
},
|
|
5139
|
+
"node_modules/es-module-lexer": {
|
|
5140
|
+
"version": "2.0.0",
|
|
5141
|
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.0.0.tgz",
|
|
5142
|
+
"integrity": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==",
|
|
5143
|
+
"dev": true,
|
|
5144
|
+
"license": "MIT"
|
|
5145
|
+
},
|
|
4715
5146
|
"node_modules/es-object-atoms": {
|
|
4716
5147
|
"version": "1.1.1",
|
|
4717
5148
|
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
@@ -5296,6 +5727,16 @@
|
|
|
5296
5727
|
"url": "https://opencollective.com/unified"
|
|
5297
5728
|
}
|
|
5298
5729
|
},
|
|
5730
|
+
"node_modules/estree-walker": {
|
|
5731
|
+
"version": "3.0.3",
|
|
5732
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
|
|
5733
|
+
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
|
|
5734
|
+
"dev": true,
|
|
5735
|
+
"license": "MIT",
|
|
5736
|
+
"dependencies": {
|
|
5737
|
+
"@types/estree": "^1.0.0"
|
|
5738
|
+
}
|
|
5739
|
+
},
|
|
5299
5740
|
"node_modules/esutils": {
|
|
5300
5741
|
"version": "2.0.3",
|
|
5301
5742
|
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
|
@@ -5324,6 +5765,16 @@
|
|
|
5324
5765
|
"node": ">=6"
|
|
5325
5766
|
}
|
|
5326
5767
|
},
|
|
5768
|
+
"node_modules/expect-type": {
|
|
5769
|
+
"version": "1.3.0",
|
|
5770
|
+
"resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz",
|
|
5771
|
+
"integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==",
|
|
5772
|
+
"dev": true,
|
|
5773
|
+
"license": "Apache-2.0",
|
|
5774
|
+
"engines": {
|
|
5775
|
+
"node": ">=12.0.0"
|
|
5776
|
+
}
|
|
5777
|
+
},
|
|
5327
5778
|
"node_modules/extend": {
|
|
5328
5779
|
"version": "3.0.2",
|
|
5329
5780
|
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
|
@@ -5541,6 +5992,21 @@
|
|
|
5541
5992
|
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
|
|
5542
5993
|
"license": "MIT"
|
|
5543
5994
|
},
|
|
5995
|
+
"node_modules/fsevents": {
|
|
5996
|
+
"version": "2.3.3",
|
|
5997
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
5998
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
5999
|
+
"dev": true,
|
|
6000
|
+
"hasInstallScript": true,
|
|
6001
|
+
"license": "MIT",
|
|
6002
|
+
"optional": true,
|
|
6003
|
+
"os": [
|
|
6004
|
+
"darwin"
|
|
6005
|
+
],
|
|
6006
|
+
"engines": {
|
|
6007
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
6008
|
+
}
|
|
6009
|
+
},
|
|
5544
6010
|
"node_modules/function-bind": {
|
|
5545
6011
|
"version": "1.1.2",
|
|
5546
6012
|
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
@@ -8372,6 +8838,17 @@
|
|
|
8372
8838
|
"url": "https://github.com/sponsors/ljharb"
|
|
8373
8839
|
}
|
|
8374
8840
|
},
|
|
8841
|
+
"node_modules/obug": {
|
|
8842
|
+
"version": "2.1.1",
|
|
8843
|
+
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz",
|
|
8844
|
+
"integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==",
|
|
8845
|
+
"dev": true,
|
|
8846
|
+
"funding": [
|
|
8847
|
+
"https://github.com/sponsors/sxzz",
|
|
8848
|
+
"https://opencollective.com/debug"
|
|
8849
|
+
],
|
|
8850
|
+
"license": "MIT"
|
|
8851
|
+
},
|
|
8375
8852
|
"node_modules/once": {
|
|
8376
8853
|
"version": "1.4.0",
|
|
8377
8854
|
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
@@ -8514,6 +8991,13 @@
|
|
|
8514
8991
|
"dev": true,
|
|
8515
8992
|
"license": "MIT"
|
|
8516
8993
|
},
|
|
8994
|
+
"node_modules/pathe": {
|
|
8995
|
+
"version": "2.0.3",
|
|
8996
|
+
"resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
|
|
8997
|
+
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
|
|
8998
|
+
"dev": true,
|
|
8999
|
+
"license": "MIT"
|
|
9000
|
+
},
|
|
8517
9001
|
"node_modules/picocolors": {
|
|
8518
9002
|
"version": "1.1.1",
|
|
8519
9003
|
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
@@ -8998,6 +9482,40 @@
|
|
|
8998
9482
|
"node": ">=0.10.0"
|
|
8999
9483
|
}
|
|
9000
9484
|
},
|
|
9485
|
+
"node_modules/rolldown": {
|
|
9486
|
+
"version": "1.0.0-rc.10",
|
|
9487
|
+
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.10.tgz",
|
|
9488
|
+
"integrity": "sha512-q7j6vvarRFmKpgJUT8HCAUljkgzEp4LAhPlJUvQhA5LA1SUL36s5QCysMutErzL3EbNOZOkoziSx9iZC4FddKA==",
|
|
9489
|
+
"dev": true,
|
|
9490
|
+
"license": "MIT",
|
|
9491
|
+
"dependencies": {
|
|
9492
|
+
"@oxc-project/types": "=0.120.0",
|
|
9493
|
+
"@rolldown/pluginutils": "1.0.0-rc.10"
|
|
9494
|
+
},
|
|
9495
|
+
"bin": {
|
|
9496
|
+
"rolldown": "bin/cli.mjs"
|
|
9497
|
+
},
|
|
9498
|
+
"engines": {
|
|
9499
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
9500
|
+
},
|
|
9501
|
+
"optionalDependencies": {
|
|
9502
|
+
"@rolldown/binding-android-arm64": "1.0.0-rc.10",
|
|
9503
|
+
"@rolldown/binding-darwin-arm64": "1.0.0-rc.10",
|
|
9504
|
+
"@rolldown/binding-darwin-x64": "1.0.0-rc.10",
|
|
9505
|
+
"@rolldown/binding-freebsd-x64": "1.0.0-rc.10",
|
|
9506
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.10",
|
|
9507
|
+
"@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.10",
|
|
9508
|
+
"@rolldown/binding-linux-arm64-musl": "1.0.0-rc.10",
|
|
9509
|
+
"@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.10",
|
|
9510
|
+
"@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.10",
|
|
9511
|
+
"@rolldown/binding-linux-x64-gnu": "1.0.0-rc.10",
|
|
9512
|
+
"@rolldown/binding-linux-x64-musl": "1.0.0-rc.10",
|
|
9513
|
+
"@rolldown/binding-openharmony-arm64": "1.0.0-rc.10",
|
|
9514
|
+
"@rolldown/binding-wasm32-wasi": "1.0.0-rc.10",
|
|
9515
|
+
"@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.10",
|
|
9516
|
+
"@rolldown/binding-win32-x64-msvc": "1.0.0-rc.10"
|
|
9517
|
+
}
|
|
9518
|
+
},
|
|
9001
9519
|
"node_modules/run-parallel": {
|
|
9002
9520
|
"version": "1.2.0",
|
|
9003
9521
|
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
|
|
@@ -9332,6 +9850,13 @@
|
|
|
9332
9850
|
"url": "https://github.com/sponsors/ljharb"
|
|
9333
9851
|
}
|
|
9334
9852
|
},
|
|
9853
|
+
"node_modules/siginfo": {
|
|
9854
|
+
"version": "2.0.0",
|
|
9855
|
+
"resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
|
|
9856
|
+
"integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==",
|
|
9857
|
+
"dev": true,
|
|
9858
|
+
"license": "ISC"
|
|
9859
|
+
},
|
|
9335
9860
|
"node_modules/simple-concat": {
|
|
9336
9861
|
"version": "1.0.1",
|
|
9337
9862
|
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
|
|
@@ -9430,6 +9955,20 @@
|
|
|
9430
9955
|
"dev": true,
|
|
9431
9956
|
"license": "MIT"
|
|
9432
9957
|
},
|
|
9958
|
+
"node_modules/stackback": {
|
|
9959
|
+
"version": "0.0.2",
|
|
9960
|
+
"resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
|
|
9961
|
+
"integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==",
|
|
9962
|
+
"dev": true,
|
|
9963
|
+
"license": "MIT"
|
|
9964
|
+
},
|
|
9965
|
+
"node_modules/std-env": {
|
|
9966
|
+
"version": "4.0.0",
|
|
9967
|
+
"resolved": "https://registry.npmjs.org/std-env/-/std-env-4.0.0.tgz",
|
|
9968
|
+
"integrity": "sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==",
|
|
9969
|
+
"dev": true,
|
|
9970
|
+
"license": "MIT"
|
|
9971
|
+
},
|
|
9433
9972
|
"node_modules/stop-iteration-iterator": {
|
|
9434
9973
|
"version": "1.1.0",
|
|
9435
9974
|
"resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz",
|
|
@@ -9791,12 +10330,29 @@
|
|
|
9791
10330
|
"three": ">=0.168"
|
|
9792
10331
|
}
|
|
9793
10332
|
},
|
|
10333
|
+
"node_modules/tinybench": {
|
|
10334
|
+
"version": "2.9.0",
|
|
10335
|
+
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
|
|
10336
|
+
"integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==",
|
|
10337
|
+
"dev": true,
|
|
10338
|
+
"license": "MIT"
|
|
10339
|
+
},
|
|
9794
10340
|
"node_modules/tinycolor2": {
|
|
9795
10341
|
"version": "1.6.0",
|
|
9796
10342
|
"resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz",
|
|
9797
10343
|
"integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==",
|
|
9798
10344
|
"license": "MIT"
|
|
9799
10345
|
},
|
|
10346
|
+
"node_modules/tinyexec": {
|
|
10347
|
+
"version": "1.0.4",
|
|
10348
|
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.4.tgz",
|
|
10349
|
+
"integrity": "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==",
|
|
10350
|
+
"dev": true,
|
|
10351
|
+
"license": "MIT",
|
|
10352
|
+
"engines": {
|
|
10353
|
+
"node": ">=18"
|
|
10354
|
+
}
|
|
10355
|
+
},
|
|
9800
10356
|
"node_modules/tinyglobby": {
|
|
9801
10357
|
"version": "0.2.15",
|
|
9802
10358
|
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
|
@@ -9846,6 +10402,16 @@
|
|
|
9846
10402
|
"url": "https://github.com/sponsors/jonschlinkert"
|
|
9847
10403
|
}
|
|
9848
10404
|
},
|
|
10405
|
+
"node_modules/tinyrainbow": {
|
|
10406
|
+
"version": "3.1.0",
|
|
10407
|
+
"resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz",
|
|
10408
|
+
"integrity": "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==",
|
|
10409
|
+
"dev": true,
|
|
10410
|
+
"license": "MIT",
|
|
10411
|
+
"engines": {
|
|
10412
|
+
"node": ">=14.0.0"
|
|
10413
|
+
}
|
|
10414
|
+
},
|
|
9849
10415
|
"node_modules/to-regex-range": {
|
|
9850
10416
|
"version": "5.0.1",
|
|
9851
10417
|
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
@@ -10303,77 +10869,981 @@
|
|
|
10303
10869
|
"url": "https://opencollective.com/unified"
|
|
10304
10870
|
}
|
|
10305
10871
|
},
|
|
10306
|
-
"node_modules/
|
|
10307
|
-
"version": "
|
|
10308
|
-
"resolved": "https://registry.npmjs.org/
|
|
10309
|
-
"integrity": "sha512-
|
|
10872
|
+
"node_modules/vitest": {
|
|
10873
|
+
"version": "4.1.0",
|
|
10874
|
+
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.0.tgz",
|
|
10875
|
+
"integrity": "sha512-YbDrMF9jM2Lqc++2530UourxZHmkKLxrs4+mYhEwqWS97WJ7wOYEkcr+QfRgJ3PW9wz3odRijLZjHEaRLTNbqw==",
|
|
10310
10876
|
"dev": true,
|
|
10311
|
-
"license": "
|
|
10877
|
+
"license": "MIT",
|
|
10312
10878
|
"dependencies": {
|
|
10313
|
-
"
|
|
10879
|
+
"@vitest/expect": "4.1.0",
|
|
10880
|
+
"@vitest/mocker": "4.1.0",
|
|
10881
|
+
"@vitest/pretty-format": "4.1.0",
|
|
10882
|
+
"@vitest/runner": "4.1.0",
|
|
10883
|
+
"@vitest/snapshot": "4.1.0",
|
|
10884
|
+
"@vitest/spy": "4.1.0",
|
|
10885
|
+
"@vitest/utils": "4.1.0",
|
|
10886
|
+
"es-module-lexer": "^2.0.0",
|
|
10887
|
+
"expect-type": "^1.3.0",
|
|
10888
|
+
"magic-string": "^0.30.21",
|
|
10889
|
+
"obug": "^2.1.1",
|
|
10890
|
+
"pathe": "^2.0.3",
|
|
10891
|
+
"picomatch": "^4.0.3",
|
|
10892
|
+
"std-env": "^4.0.0-rc.1",
|
|
10893
|
+
"tinybench": "^2.9.0",
|
|
10894
|
+
"tinyexec": "^1.0.2",
|
|
10895
|
+
"tinyglobby": "^0.2.15",
|
|
10896
|
+
"tinyrainbow": "^3.0.3",
|
|
10897
|
+
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0-0",
|
|
10898
|
+
"why-is-node-running": "^2.3.0"
|
|
10314
10899
|
},
|
|
10315
10900
|
"bin": {
|
|
10316
|
-
"
|
|
10901
|
+
"vitest": "vitest.mjs"
|
|
10317
10902
|
},
|
|
10318
10903
|
"engines": {
|
|
10319
|
-
"node": ">=
|
|
10904
|
+
"node": "^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
10905
|
+
},
|
|
10906
|
+
"funding": {
|
|
10907
|
+
"url": "https://opencollective.com/vitest"
|
|
10908
|
+
},
|
|
10909
|
+
"peerDependencies": {
|
|
10910
|
+
"@edge-runtime/vm": "*",
|
|
10911
|
+
"@opentelemetry/api": "^1.9.0",
|
|
10912
|
+
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
|
|
10913
|
+
"@vitest/browser-playwright": "4.1.0",
|
|
10914
|
+
"@vitest/browser-preview": "4.1.0",
|
|
10915
|
+
"@vitest/browser-webdriverio": "4.1.0",
|
|
10916
|
+
"@vitest/ui": "4.1.0",
|
|
10917
|
+
"happy-dom": "*",
|
|
10918
|
+
"jsdom": "*",
|
|
10919
|
+
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0-0"
|
|
10920
|
+
},
|
|
10921
|
+
"peerDependenciesMeta": {
|
|
10922
|
+
"@edge-runtime/vm": {
|
|
10923
|
+
"optional": true
|
|
10924
|
+
},
|
|
10925
|
+
"@opentelemetry/api": {
|
|
10926
|
+
"optional": true
|
|
10927
|
+
},
|
|
10928
|
+
"@types/node": {
|
|
10929
|
+
"optional": true
|
|
10930
|
+
},
|
|
10931
|
+
"@vitest/browser-playwright": {
|
|
10932
|
+
"optional": true
|
|
10933
|
+
},
|
|
10934
|
+
"@vitest/browser-preview": {
|
|
10935
|
+
"optional": true
|
|
10936
|
+
},
|
|
10937
|
+
"@vitest/browser-webdriverio": {
|
|
10938
|
+
"optional": true
|
|
10939
|
+
},
|
|
10940
|
+
"@vitest/ui": {
|
|
10941
|
+
"optional": true
|
|
10942
|
+
},
|
|
10943
|
+
"happy-dom": {
|
|
10944
|
+
"optional": true
|
|
10945
|
+
},
|
|
10946
|
+
"jsdom": {
|
|
10947
|
+
"optional": true
|
|
10948
|
+
},
|
|
10949
|
+
"vite": {
|
|
10950
|
+
"optional": false
|
|
10951
|
+
}
|
|
10320
10952
|
}
|
|
10321
10953
|
},
|
|
10322
|
-
"node_modules/
|
|
10323
|
-
"version": "
|
|
10324
|
-
"resolved": "https://registry.npmjs.org/
|
|
10325
|
-
"integrity": "sha512-
|
|
10954
|
+
"node_modules/vitest/node_modules/@esbuild/aix-ppc64": {
|
|
10955
|
+
"version": "0.27.4",
|
|
10956
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.4.tgz",
|
|
10957
|
+
"integrity": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==",
|
|
10958
|
+
"cpu": [
|
|
10959
|
+
"ppc64"
|
|
10960
|
+
],
|
|
10326
10961
|
"dev": true,
|
|
10327
10962
|
"license": "MIT",
|
|
10328
|
-
"
|
|
10329
|
-
|
|
10330
|
-
"
|
|
10331
|
-
|
|
10332
|
-
"is-string": "^1.1.1",
|
|
10333
|
-
"is-symbol": "^1.1.1"
|
|
10334
|
-
},
|
|
10963
|
+
"optional": true,
|
|
10964
|
+
"os": [
|
|
10965
|
+
"aix"
|
|
10966
|
+
],
|
|
10335
10967
|
"engines": {
|
|
10336
|
-
"node": ">=
|
|
10337
|
-
},
|
|
10338
|
-
"funding": {
|
|
10339
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
10968
|
+
"node": ">=18"
|
|
10340
10969
|
}
|
|
10341
10970
|
},
|
|
10342
|
-
"node_modules/
|
|
10343
|
-
"version": "
|
|
10344
|
-
"resolved": "https://registry.npmjs.org/
|
|
10345
|
-
"integrity": "sha512-
|
|
10971
|
+
"node_modules/vitest/node_modules/@esbuild/android-arm": {
|
|
10972
|
+
"version": "0.27.4",
|
|
10973
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.4.tgz",
|
|
10974
|
+
"integrity": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==",
|
|
10975
|
+
"cpu": [
|
|
10976
|
+
"arm"
|
|
10977
|
+
],
|
|
10346
10978
|
"dev": true,
|
|
10347
10979
|
"license": "MIT",
|
|
10348
|
-
"
|
|
10349
|
-
|
|
10350
|
-
"
|
|
10351
|
-
|
|
10352
|
-
"is-async-function": "^2.0.0",
|
|
10353
|
-
"is-date-object": "^1.1.0",
|
|
10354
|
-
"is-finalizationregistry": "^1.1.0",
|
|
10355
|
-
"is-generator-function": "^1.0.10",
|
|
10356
|
-
"is-regex": "^1.2.1",
|
|
10357
|
-
"is-weakref": "^1.0.2",
|
|
10358
|
-
"isarray": "^2.0.5",
|
|
10359
|
-
"which-boxed-primitive": "^1.1.0",
|
|
10360
|
-
"which-collection": "^1.0.2",
|
|
10361
|
-
"which-typed-array": "^1.1.16"
|
|
10362
|
-
},
|
|
10980
|
+
"optional": true,
|
|
10981
|
+
"os": [
|
|
10982
|
+
"android"
|
|
10983
|
+
],
|
|
10363
10984
|
"engines": {
|
|
10364
|
-
"node": ">=
|
|
10365
|
-
},
|
|
10366
|
-
"funding": {
|
|
10367
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
10985
|
+
"node": ">=18"
|
|
10368
10986
|
}
|
|
10369
10987
|
},
|
|
10370
|
-
"node_modules/
|
|
10371
|
-
"version": "
|
|
10372
|
-
"resolved": "https://registry.npmjs.org/
|
|
10373
|
-
"integrity": "sha512-
|
|
10988
|
+
"node_modules/vitest/node_modules/@esbuild/android-arm64": {
|
|
10989
|
+
"version": "0.27.4",
|
|
10990
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.4.tgz",
|
|
10991
|
+
"integrity": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==",
|
|
10992
|
+
"cpu": [
|
|
10993
|
+
"arm64"
|
|
10994
|
+
],
|
|
10374
10995
|
"dev": true,
|
|
10375
10996
|
"license": "MIT",
|
|
10376
|
-
"
|
|
10997
|
+
"optional": true,
|
|
10998
|
+
"os": [
|
|
10999
|
+
"android"
|
|
11000
|
+
],
|
|
11001
|
+
"engines": {
|
|
11002
|
+
"node": ">=18"
|
|
11003
|
+
}
|
|
11004
|
+
},
|
|
11005
|
+
"node_modules/vitest/node_modules/@esbuild/android-x64": {
|
|
11006
|
+
"version": "0.27.4",
|
|
11007
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.4.tgz",
|
|
11008
|
+
"integrity": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==",
|
|
11009
|
+
"cpu": [
|
|
11010
|
+
"x64"
|
|
11011
|
+
],
|
|
11012
|
+
"dev": true,
|
|
11013
|
+
"license": "MIT",
|
|
11014
|
+
"optional": true,
|
|
11015
|
+
"os": [
|
|
11016
|
+
"android"
|
|
11017
|
+
],
|
|
11018
|
+
"engines": {
|
|
11019
|
+
"node": ">=18"
|
|
11020
|
+
}
|
|
11021
|
+
},
|
|
11022
|
+
"node_modules/vitest/node_modules/@esbuild/darwin-arm64": {
|
|
11023
|
+
"version": "0.27.4",
|
|
11024
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.4.tgz",
|
|
11025
|
+
"integrity": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==",
|
|
11026
|
+
"cpu": [
|
|
11027
|
+
"arm64"
|
|
11028
|
+
],
|
|
11029
|
+
"dev": true,
|
|
11030
|
+
"license": "MIT",
|
|
11031
|
+
"optional": true,
|
|
11032
|
+
"os": [
|
|
11033
|
+
"darwin"
|
|
11034
|
+
],
|
|
11035
|
+
"engines": {
|
|
11036
|
+
"node": ">=18"
|
|
11037
|
+
}
|
|
11038
|
+
},
|
|
11039
|
+
"node_modules/vitest/node_modules/@esbuild/darwin-x64": {
|
|
11040
|
+
"version": "0.27.4",
|
|
11041
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.4.tgz",
|
|
11042
|
+
"integrity": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==",
|
|
11043
|
+
"cpu": [
|
|
11044
|
+
"x64"
|
|
11045
|
+
],
|
|
11046
|
+
"dev": true,
|
|
11047
|
+
"license": "MIT",
|
|
11048
|
+
"optional": true,
|
|
11049
|
+
"os": [
|
|
11050
|
+
"darwin"
|
|
11051
|
+
],
|
|
11052
|
+
"engines": {
|
|
11053
|
+
"node": ">=18"
|
|
11054
|
+
}
|
|
11055
|
+
},
|
|
11056
|
+
"node_modules/vitest/node_modules/@esbuild/freebsd-arm64": {
|
|
11057
|
+
"version": "0.27.4",
|
|
11058
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.4.tgz",
|
|
11059
|
+
"integrity": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==",
|
|
11060
|
+
"cpu": [
|
|
11061
|
+
"arm64"
|
|
11062
|
+
],
|
|
11063
|
+
"dev": true,
|
|
11064
|
+
"license": "MIT",
|
|
11065
|
+
"optional": true,
|
|
11066
|
+
"os": [
|
|
11067
|
+
"freebsd"
|
|
11068
|
+
],
|
|
11069
|
+
"engines": {
|
|
11070
|
+
"node": ">=18"
|
|
11071
|
+
}
|
|
11072
|
+
},
|
|
11073
|
+
"node_modules/vitest/node_modules/@esbuild/freebsd-x64": {
|
|
11074
|
+
"version": "0.27.4",
|
|
11075
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.4.tgz",
|
|
11076
|
+
"integrity": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==",
|
|
11077
|
+
"cpu": [
|
|
11078
|
+
"x64"
|
|
11079
|
+
],
|
|
11080
|
+
"dev": true,
|
|
11081
|
+
"license": "MIT",
|
|
11082
|
+
"optional": true,
|
|
11083
|
+
"os": [
|
|
11084
|
+
"freebsd"
|
|
11085
|
+
],
|
|
11086
|
+
"engines": {
|
|
11087
|
+
"node": ">=18"
|
|
11088
|
+
}
|
|
11089
|
+
},
|
|
11090
|
+
"node_modules/vitest/node_modules/@esbuild/linux-arm": {
|
|
11091
|
+
"version": "0.27.4",
|
|
11092
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.4.tgz",
|
|
11093
|
+
"integrity": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==",
|
|
11094
|
+
"cpu": [
|
|
11095
|
+
"arm"
|
|
11096
|
+
],
|
|
11097
|
+
"dev": true,
|
|
11098
|
+
"license": "MIT",
|
|
11099
|
+
"optional": true,
|
|
11100
|
+
"os": [
|
|
11101
|
+
"linux"
|
|
11102
|
+
],
|
|
11103
|
+
"engines": {
|
|
11104
|
+
"node": ">=18"
|
|
11105
|
+
}
|
|
11106
|
+
},
|
|
11107
|
+
"node_modules/vitest/node_modules/@esbuild/linux-arm64": {
|
|
11108
|
+
"version": "0.27.4",
|
|
11109
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.4.tgz",
|
|
11110
|
+
"integrity": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==",
|
|
11111
|
+
"cpu": [
|
|
11112
|
+
"arm64"
|
|
11113
|
+
],
|
|
11114
|
+
"dev": true,
|
|
11115
|
+
"license": "MIT",
|
|
11116
|
+
"optional": true,
|
|
11117
|
+
"os": [
|
|
11118
|
+
"linux"
|
|
11119
|
+
],
|
|
11120
|
+
"engines": {
|
|
11121
|
+
"node": ">=18"
|
|
11122
|
+
}
|
|
11123
|
+
},
|
|
11124
|
+
"node_modules/vitest/node_modules/@esbuild/linux-ia32": {
|
|
11125
|
+
"version": "0.27.4",
|
|
11126
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.4.tgz",
|
|
11127
|
+
"integrity": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==",
|
|
11128
|
+
"cpu": [
|
|
11129
|
+
"ia32"
|
|
11130
|
+
],
|
|
11131
|
+
"dev": true,
|
|
11132
|
+
"license": "MIT",
|
|
11133
|
+
"optional": true,
|
|
11134
|
+
"os": [
|
|
11135
|
+
"linux"
|
|
11136
|
+
],
|
|
11137
|
+
"engines": {
|
|
11138
|
+
"node": ">=18"
|
|
11139
|
+
}
|
|
11140
|
+
},
|
|
11141
|
+
"node_modules/vitest/node_modules/@esbuild/linux-loong64": {
|
|
11142
|
+
"version": "0.27.4",
|
|
11143
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.4.tgz",
|
|
11144
|
+
"integrity": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==",
|
|
11145
|
+
"cpu": [
|
|
11146
|
+
"loong64"
|
|
11147
|
+
],
|
|
11148
|
+
"dev": true,
|
|
11149
|
+
"license": "MIT",
|
|
11150
|
+
"optional": true,
|
|
11151
|
+
"os": [
|
|
11152
|
+
"linux"
|
|
11153
|
+
],
|
|
11154
|
+
"engines": {
|
|
11155
|
+
"node": ">=18"
|
|
11156
|
+
}
|
|
11157
|
+
},
|
|
11158
|
+
"node_modules/vitest/node_modules/@esbuild/linux-mips64el": {
|
|
11159
|
+
"version": "0.27.4",
|
|
11160
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.4.tgz",
|
|
11161
|
+
"integrity": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==",
|
|
11162
|
+
"cpu": [
|
|
11163
|
+
"mips64el"
|
|
11164
|
+
],
|
|
11165
|
+
"dev": true,
|
|
11166
|
+
"license": "MIT",
|
|
11167
|
+
"optional": true,
|
|
11168
|
+
"os": [
|
|
11169
|
+
"linux"
|
|
11170
|
+
],
|
|
11171
|
+
"engines": {
|
|
11172
|
+
"node": ">=18"
|
|
11173
|
+
}
|
|
11174
|
+
},
|
|
11175
|
+
"node_modules/vitest/node_modules/@esbuild/linux-ppc64": {
|
|
11176
|
+
"version": "0.27.4",
|
|
11177
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.4.tgz",
|
|
11178
|
+
"integrity": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==",
|
|
11179
|
+
"cpu": [
|
|
11180
|
+
"ppc64"
|
|
11181
|
+
],
|
|
11182
|
+
"dev": true,
|
|
11183
|
+
"license": "MIT",
|
|
11184
|
+
"optional": true,
|
|
11185
|
+
"os": [
|
|
11186
|
+
"linux"
|
|
11187
|
+
],
|
|
11188
|
+
"engines": {
|
|
11189
|
+
"node": ">=18"
|
|
11190
|
+
}
|
|
11191
|
+
},
|
|
11192
|
+
"node_modules/vitest/node_modules/@esbuild/linux-riscv64": {
|
|
11193
|
+
"version": "0.27.4",
|
|
11194
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.4.tgz",
|
|
11195
|
+
"integrity": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==",
|
|
11196
|
+
"cpu": [
|
|
11197
|
+
"riscv64"
|
|
11198
|
+
],
|
|
11199
|
+
"dev": true,
|
|
11200
|
+
"license": "MIT",
|
|
11201
|
+
"optional": true,
|
|
11202
|
+
"os": [
|
|
11203
|
+
"linux"
|
|
11204
|
+
],
|
|
11205
|
+
"engines": {
|
|
11206
|
+
"node": ">=18"
|
|
11207
|
+
}
|
|
11208
|
+
},
|
|
11209
|
+
"node_modules/vitest/node_modules/@esbuild/linux-s390x": {
|
|
11210
|
+
"version": "0.27.4",
|
|
11211
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.4.tgz",
|
|
11212
|
+
"integrity": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==",
|
|
11213
|
+
"cpu": [
|
|
11214
|
+
"s390x"
|
|
11215
|
+
],
|
|
11216
|
+
"dev": true,
|
|
11217
|
+
"license": "MIT",
|
|
11218
|
+
"optional": true,
|
|
11219
|
+
"os": [
|
|
11220
|
+
"linux"
|
|
11221
|
+
],
|
|
11222
|
+
"engines": {
|
|
11223
|
+
"node": ">=18"
|
|
11224
|
+
}
|
|
11225
|
+
},
|
|
11226
|
+
"node_modules/vitest/node_modules/@esbuild/linux-x64": {
|
|
11227
|
+
"version": "0.27.4",
|
|
11228
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.4.tgz",
|
|
11229
|
+
"integrity": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==",
|
|
11230
|
+
"cpu": [
|
|
11231
|
+
"x64"
|
|
11232
|
+
],
|
|
11233
|
+
"dev": true,
|
|
11234
|
+
"license": "MIT",
|
|
11235
|
+
"optional": true,
|
|
11236
|
+
"os": [
|
|
11237
|
+
"linux"
|
|
11238
|
+
],
|
|
11239
|
+
"engines": {
|
|
11240
|
+
"node": ">=18"
|
|
11241
|
+
}
|
|
11242
|
+
},
|
|
11243
|
+
"node_modules/vitest/node_modules/@esbuild/netbsd-arm64": {
|
|
11244
|
+
"version": "0.27.4",
|
|
11245
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.4.tgz",
|
|
11246
|
+
"integrity": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==",
|
|
11247
|
+
"cpu": [
|
|
11248
|
+
"arm64"
|
|
11249
|
+
],
|
|
11250
|
+
"dev": true,
|
|
11251
|
+
"license": "MIT",
|
|
11252
|
+
"optional": true,
|
|
11253
|
+
"os": [
|
|
11254
|
+
"netbsd"
|
|
11255
|
+
],
|
|
11256
|
+
"engines": {
|
|
11257
|
+
"node": ">=18"
|
|
11258
|
+
}
|
|
11259
|
+
},
|
|
11260
|
+
"node_modules/vitest/node_modules/@esbuild/netbsd-x64": {
|
|
11261
|
+
"version": "0.27.4",
|
|
11262
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.4.tgz",
|
|
11263
|
+
"integrity": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==",
|
|
11264
|
+
"cpu": [
|
|
11265
|
+
"x64"
|
|
11266
|
+
],
|
|
11267
|
+
"dev": true,
|
|
11268
|
+
"license": "MIT",
|
|
11269
|
+
"optional": true,
|
|
11270
|
+
"os": [
|
|
11271
|
+
"netbsd"
|
|
11272
|
+
],
|
|
11273
|
+
"engines": {
|
|
11274
|
+
"node": ">=18"
|
|
11275
|
+
}
|
|
11276
|
+
},
|
|
11277
|
+
"node_modules/vitest/node_modules/@esbuild/openbsd-arm64": {
|
|
11278
|
+
"version": "0.27.4",
|
|
11279
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.4.tgz",
|
|
11280
|
+
"integrity": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==",
|
|
11281
|
+
"cpu": [
|
|
11282
|
+
"arm64"
|
|
11283
|
+
],
|
|
11284
|
+
"dev": true,
|
|
11285
|
+
"license": "MIT",
|
|
11286
|
+
"optional": true,
|
|
11287
|
+
"os": [
|
|
11288
|
+
"openbsd"
|
|
11289
|
+
],
|
|
11290
|
+
"engines": {
|
|
11291
|
+
"node": ">=18"
|
|
11292
|
+
}
|
|
11293
|
+
},
|
|
11294
|
+
"node_modules/vitest/node_modules/@esbuild/openbsd-x64": {
|
|
11295
|
+
"version": "0.27.4",
|
|
11296
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.4.tgz",
|
|
11297
|
+
"integrity": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==",
|
|
11298
|
+
"cpu": [
|
|
11299
|
+
"x64"
|
|
11300
|
+
],
|
|
11301
|
+
"dev": true,
|
|
11302
|
+
"license": "MIT",
|
|
11303
|
+
"optional": true,
|
|
11304
|
+
"os": [
|
|
11305
|
+
"openbsd"
|
|
11306
|
+
],
|
|
11307
|
+
"engines": {
|
|
11308
|
+
"node": ">=18"
|
|
11309
|
+
}
|
|
11310
|
+
},
|
|
11311
|
+
"node_modules/vitest/node_modules/@esbuild/openharmony-arm64": {
|
|
11312
|
+
"version": "0.27.4",
|
|
11313
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.4.tgz",
|
|
11314
|
+
"integrity": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==",
|
|
11315
|
+
"cpu": [
|
|
11316
|
+
"arm64"
|
|
11317
|
+
],
|
|
11318
|
+
"dev": true,
|
|
11319
|
+
"license": "MIT",
|
|
11320
|
+
"optional": true,
|
|
11321
|
+
"os": [
|
|
11322
|
+
"openharmony"
|
|
11323
|
+
],
|
|
11324
|
+
"engines": {
|
|
11325
|
+
"node": ">=18"
|
|
11326
|
+
}
|
|
11327
|
+
},
|
|
11328
|
+
"node_modules/vitest/node_modules/@esbuild/sunos-x64": {
|
|
11329
|
+
"version": "0.27.4",
|
|
11330
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.4.tgz",
|
|
11331
|
+
"integrity": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==",
|
|
11332
|
+
"cpu": [
|
|
11333
|
+
"x64"
|
|
11334
|
+
],
|
|
11335
|
+
"dev": true,
|
|
11336
|
+
"license": "MIT",
|
|
11337
|
+
"optional": true,
|
|
11338
|
+
"os": [
|
|
11339
|
+
"sunos"
|
|
11340
|
+
],
|
|
11341
|
+
"engines": {
|
|
11342
|
+
"node": ">=18"
|
|
11343
|
+
}
|
|
11344
|
+
},
|
|
11345
|
+
"node_modules/vitest/node_modules/@esbuild/win32-arm64": {
|
|
11346
|
+
"version": "0.27.4",
|
|
11347
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.4.tgz",
|
|
11348
|
+
"integrity": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==",
|
|
11349
|
+
"cpu": [
|
|
11350
|
+
"arm64"
|
|
11351
|
+
],
|
|
11352
|
+
"dev": true,
|
|
11353
|
+
"license": "MIT",
|
|
11354
|
+
"optional": true,
|
|
11355
|
+
"os": [
|
|
11356
|
+
"win32"
|
|
11357
|
+
],
|
|
11358
|
+
"engines": {
|
|
11359
|
+
"node": ">=18"
|
|
11360
|
+
}
|
|
11361
|
+
},
|
|
11362
|
+
"node_modules/vitest/node_modules/@esbuild/win32-ia32": {
|
|
11363
|
+
"version": "0.27.4",
|
|
11364
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.4.tgz",
|
|
11365
|
+
"integrity": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==",
|
|
11366
|
+
"cpu": [
|
|
11367
|
+
"ia32"
|
|
11368
|
+
],
|
|
11369
|
+
"dev": true,
|
|
11370
|
+
"license": "MIT",
|
|
11371
|
+
"optional": true,
|
|
11372
|
+
"os": [
|
|
11373
|
+
"win32"
|
|
11374
|
+
],
|
|
11375
|
+
"engines": {
|
|
11376
|
+
"node": ">=18"
|
|
11377
|
+
}
|
|
11378
|
+
},
|
|
11379
|
+
"node_modules/vitest/node_modules/@esbuild/win32-x64": {
|
|
11380
|
+
"version": "0.27.4",
|
|
11381
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.4.tgz",
|
|
11382
|
+
"integrity": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==",
|
|
11383
|
+
"cpu": [
|
|
11384
|
+
"x64"
|
|
11385
|
+
],
|
|
11386
|
+
"dev": true,
|
|
11387
|
+
"license": "MIT",
|
|
11388
|
+
"optional": true,
|
|
11389
|
+
"os": [
|
|
11390
|
+
"win32"
|
|
11391
|
+
],
|
|
11392
|
+
"engines": {
|
|
11393
|
+
"node": ">=18"
|
|
11394
|
+
}
|
|
11395
|
+
},
|
|
11396
|
+
"node_modules/vitest/node_modules/@vitest/mocker": {
|
|
11397
|
+
"version": "4.1.0",
|
|
11398
|
+
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.0.tgz",
|
|
11399
|
+
"integrity": "sha512-evxREh+Hork43+Y4IOhTo+h5lGmVRyjqI739Rz4RlUPqwrkFFDF6EMvOOYjTx4E8Tl6gyCLRL8Mu7Ry12a13Tw==",
|
|
11400
|
+
"dev": true,
|
|
11401
|
+
"license": "MIT",
|
|
11402
|
+
"dependencies": {
|
|
11403
|
+
"@vitest/spy": "4.1.0",
|
|
11404
|
+
"estree-walker": "^3.0.3",
|
|
11405
|
+
"magic-string": "^0.30.21"
|
|
11406
|
+
},
|
|
11407
|
+
"funding": {
|
|
11408
|
+
"url": "https://opencollective.com/vitest"
|
|
11409
|
+
},
|
|
11410
|
+
"peerDependencies": {
|
|
11411
|
+
"msw": "^2.4.9",
|
|
11412
|
+
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0-0"
|
|
11413
|
+
},
|
|
11414
|
+
"peerDependenciesMeta": {
|
|
11415
|
+
"msw": {
|
|
11416
|
+
"optional": true
|
|
11417
|
+
},
|
|
11418
|
+
"vite": {
|
|
11419
|
+
"optional": true
|
|
11420
|
+
}
|
|
11421
|
+
}
|
|
11422
|
+
},
|
|
11423
|
+
"node_modules/vitest/node_modules/lightningcss": {
|
|
11424
|
+
"version": "1.32.0",
|
|
11425
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
|
11426
|
+
"integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
|
|
11427
|
+
"dev": true,
|
|
11428
|
+
"license": "MPL-2.0",
|
|
11429
|
+
"dependencies": {
|
|
11430
|
+
"detect-libc": "^2.0.3"
|
|
11431
|
+
},
|
|
11432
|
+
"engines": {
|
|
11433
|
+
"node": ">= 12.0.0"
|
|
11434
|
+
},
|
|
11435
|
+
"funding": {
|
|
11436
|
+
"type": "opencollective",
|
|
11437
|
+
"url": "https://opencollective.com/parcel"
|
|
11438
|
+
},
|
|
11439
|
+
"optionalDependencies": {
|
|
11440
|
+
"lightningcss-android-arm64": "1.32.0",
|
|
11441
|
+
"lightningcss-darwin-arm64": "1.32.0",
|
|
11442
|
+
"lightningcss-darwin-x64": "1.32.0",
|
|
11443
|
+
"lightningcss-freebsd-x64": "1.32.0",
|
|
11444
|
+
"lightningcss-linux-arm-gnueabihf": "1.32.0",
|
|
11445
|
+
"lightningcss-linux-arm64-gnu": "1.32.0",
|
|
11446
|
+
"lightningcss-linux-arm64-musl": "1.32.0",
|
|
11447
|
+
"lightningcss-linux-x64-gnu": "1.32.0",
|
|
11448
|
+
"lightningcss-linux-x64-musl": "1.32.0",
|
|
11449
|
+
"lightningcss-win32-arm64-msvc": "1.32.0",
|
|
11450
|
+
"lightningcss-win32-x64-msvc": "1.32.0"
|
|
11451
|
+
}
|
|
11452
|
+
},
|
|
11453
|
+
"node_modules/vitest/node_modules/lightningcss-android-arm64": {
|
|
11454
|
+
"version": "1.32.0",
|
|
11455
|
+
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
|
|
11456
|
+
"integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
|
|
11457
|
+
"cpu": [
|
|
11458
|
+
"arm64"
|
|
11459
|
+
],
|
|
11460
|
+
"dev": true,
|
|
11461
|
+
"license": "MPL-2.0",
|
|
11462
|
+
"optional": true,
|
|
11463
|
+
"os": [
|
|
11464
|
+
"android"
|
|
11465
|
+
],
|
|
11466
|
+
"engines": {
|
|
11467
|
+
"node": ">= 12.0.0"
|
|
11468
|
+
},
|
|
11469
|
+
"funding": {
|
|
11470
|
+
"type": "opencollective",
|
|
11471
|
+
"url": "https://opencollective.com/parcel"
|
|
11472
|
+
}
|
|
11473
|
+
},
|
|
11474
|
+
"node_modules/vitest/node_modules/lightningcss-darwin-arm64": {
|
|
11475
|
+
"version": "1.32.0",
|
|
11476
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
|
|
11477
|
+
"integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
|
|
11478
|
+
"cpu": [
|
|
11479
|
+
"arm64"
|
|
11480
|
+
],
|
|
11481
|
+
"dev": true,
|
|
11482
|
+
"license": "MPL-2.0",
|
|
11483
|
+
"optional": true,
|
|
11484
|
+
"os": [
|
|
11485
|
+
"darwin"
|
|
11486
|
+
],
|
|
11487
|
+
"engines": {
|
|
11488
|
+
"node": ">= 12.0.0"
|
|
11489
|
+
},
|
|
11490
|
+
"funding": {
|
|
11491
|
+
"type": "opencollective",
|
|
11492
|
+
"url": "https://opencollective.com/parcel"
|
|
11493
|
+
}
|
|
11494
|
+
},
|
|
11495
|
+
"node_modules/vitest/node_modules/lightningcss-darwin-x64": {
|
|
11496
|
+
"version": "1.32.0",
|
|
11497
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
|
|
11498
|
+
"integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
|
|
11499
|
+
"cpu": [
|
|
11500
|
+
"x64"
|
|
11501
|
+
],
|
|
11502
|
+
"dev": true,
|
|
11503
|
+
"license": "MPL-2.0",
|
|
11504
|
+
"optional": true,
|
|
11505
|
+
"os": [
|
|
11506
|
+
"darwin"
|
|
11507
|
+
],
|
|
11508
|
+
"engines": {
|
|
11509
|
+
"node": ">= 12.0.0"
|
|
11510
|
+
},
|
|
11511
|
+
"funding": {
|
|
11512
|
+
"type": "opencollective",
|
|
11513
|
+
"url": "https://opencollective.com/parcel"
|
|
11514
|
+
}
|
|
11515
|
+
},
|
|
11516
|
+
"node_modules/vitest/node_modules/lightningcss-freebsd-x64": {
|
|
11517
|
+
"version": "1.32.0",
|
|
11518
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
|
|
11519
|
+
"integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
|
|
11520
|
+
"cpu": [
|
|
11521
|
+
"x64"
|
|
11522
|
+
],
|
|
11523
|
+
"dev": true,
|
|
11524
|
+
"license": "MPL-2.0",
|
|
11525
|
+
"optional": true,
|
|
11526
|
+
"os": [
|
|
11527
|
+
"freebsd"
|
|
11528
|
+
],
|
|
11529
|
+
"engines": {
|
|
11530
|
+
"node": ">= 12.0.0"
|
|
11531
|
+
},
|
|
11532
|
+
"funding": {
|
|
11533
|
+
"type": "opencollective",
|
|
11534
|
+
"url": "https://opencollective.com/parcel"
|
|
11535
|
+
}
|
|
11536
|
+
},
|
|
11537
|
+
"node_modules/vitest/node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
11538
|
+
"version": "1.32.0",
|
|
11539
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
|
|
11540
|
+
"integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
|
|
11541
|
+
"cpu": [
|
|
11542
|
+
"arm"
|
|
11543
|
+
],
|
|
11544
|
+
"dev": true,
|
|
11545
|
+
"license": "MPL-2.0",
|
|
11546
|
+
"optional": true,
|
|
11547
|
+
"os": [
|
|
11548
|
+
"linux"
|
|
11549
|
+
],
|
|
11550
|
+
"engines": {
|
|
11551
|
+
"node": ">= 12.0.0"
|
|
11552
|
+
},
|
|
11553
|
+
"funding": {
|
|
11554
|
+
"type": "opencollective",
|
|
11555
|
+
"url": "https://opencollective.com/parcel"
|
|
11556
|
+
}
|
|
11557
|
+
},
|
|
11558
|
+
"node_modules/vitest/node_modules/lightningcss-linux-arm64-gnu": {
|
|
11559
|
+
"version": "1.32.0",
|
|
11560
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
|
|
11561
|
+
"integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
|
|
11562
|
+
"cpu": [
|
|
11563
|
+
"arm64"
|
|
11564
|
+
],
|
|
11565
|
+
"dev": true,
|
|
11566
|
+
"license": "MPL-2.0",
|
|
11567
|
+
"optional": true,
|
|
11568
|
+
"os": [
|
|
11569
|
+
"linux"
|
|
11570
|
+
],
|
|
11571
|
+
"engines": {
|
|
11572
|
+
"node": ">= 12.0.0"
|
|
11573
|
+
},
|
|
11574
|
+
"funding": {
|
|
11575
|
+
"type": "opencollective",
|
|
11576
|
+
"url": "https://opencollective.com/parcel"
|
|
11577
|
+
}
|
|
11578
|
+
},
|
|
11579
|
+
"node_modules/vitest/node_modules/lightningcss-linux-arm64-musl": {
|
|
11580
|
+
"version": "1.32.0",
|
|
11581
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
|
|
11582
|
+
"integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
|
|
11583
|
+
"cpu": [
|
|
11584
|
+
"arm64"
|
|
11585
|
+
],
|
|
11586
|
+
"dev": true,
|
|
11587
|
+
"license": "MPL-2.0",
|
|
11588
|
+
"optional": true,
|
|
11589
|
+
"os": [
|
|
11590
|
+
"linux"
|
|
11591
|
+
],
|
|
11592
|
+
"engines": {
|
|
11593
|
+
"node": ">= 12.0.0"
|
|
11594
|
+
},
|
|
11595
|
+
"funding": {
|
|
11596
|
+
"type": "opencollective",
|
|
11597
|
+
"url": "https://opencollective.com/parcel"
|
|
11598
|
+
}
|
|
11599
|
+
},
|
|
11600
|
+
"node_modules/vitest/node_modules/lightningcss-linux-x64-gnu": {
|
|
11601
|
+
"version": "1.32.0",
|
|
11602
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
|
|
11603
|
+
"integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
|
|
11604
|
+
"cpu": [
|
|
11605
|
+
"x64"
|
|
11606
|
+
],
|
|
11607
|
+
"dev": true,
|
|
11608
|
+
"license": "MPL-2.0",
|
|
11609
|
+
"optional": true,
|
|
11610
|
+
"os": [
|
|
11611
|
+
"linux"
|
|
11612
|
+
],
|
|
11613
|
+
"engines": {
|
|
11614
|
+
"node": ">= 12.0.0"
|
|
11615
|
+
},
|
|
11616
|
+
"funding": {
|
|
11617
|
+
"type": "opencollective",
|
|
11618
|
+
"url": "https://opencollective.com/parcel"
|
|
11619
|
+
}
|
|
11620
|
+
},
|
|
11621
|
+
"node_modules/vitest/node_modules/lightningcss-linux-x64-musl": {
|
|
11622
|
+
"version": "1.32.0",
|
|
11623
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
|
|
11624
|
+
"integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
|
|
11625
|
+
"cpu": [
|
|
11626
|
+
"x64"
|
|
11627
|
+
],
|
|
11628
|
+
"dev": true,
|
|
11629
|
+
"license": "MPL-2.0",
|
|
11630
|
+
"optional": true,
|
|
11631
|
+
"os": [
|
|
11632
|
+
"linux"
|
|
11633
|
+
],
|
|
11634
|
+
"engines": {
|
|
11635
|
+
"node": ">= 12.0.0"
|
|
11636
|
+
},
|
|
11637
|
+
"funding": {
|
|
11638
|
+
"type": "opencollective",
|
|
11639
|
+
"url": "https://opencollective.com/parcel"
|
|
11640
|
+
}
|
|
11641
|
+
},
|
|
11642
|
+
"node_modules/vitest/node_modules/lightningcss-win32-arm64-msvc": {
|
|
11643
|
+
"version": "1.32.0",
|
|
11644
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
|
|
11645
|
+
"integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
|
|
11646
|
+
"cpu": [
|
|
11647
|
+
"arm64"
|
|
11648
|
+
],
|
|
11649
|
+
"dev": true,
|
|
11650
|
+
"license": "MPL-2.0",
|
|
11651
|
+
"optional": true,
|
|
11652
|
+
"os": [
|
|
11653
|
+
"win32"
|
|
11654
|
+
],
|
|
11655
|
+
"engines": {
|
|
11656
|
+
"node": ">= 12.0.0"
|
|
11657
|
+
},
|
|
11658
|
+
"funding": {
|
|
11659
|
+
"type": "opencollective",
|
|
11660
|
+
"url": "https://opencollective.com/parcel"
|
|
11661
|
+
}
|
|
11662
|
+
},
|
|
11663
|
+
"node_modules/vitest/node_modules/lightningcss-win32-x64-msvc": {
|
|
11664
|
+
"version": "1.32.0",
|
|
11665
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
|
|
11666
|
+
"integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
|
|
11667
|
+
"cpu": [
|
|
11668
|
+
"x64"
|
|
11669
|
+
],
|
|
11670
|
+
"dev": true,
|
|
11671
|
+
"license": "MPL-2.0",
|
|
11672
|
+
"optional": true,
|
|
11673
|
+
"os": [
|
|
11674
|
+
"win32"
|
|
11675
|
+
],
|
|
11676
|
+
"engines": {
|
|
11677
|
+
"node": ">= 12.0.0"
|
|
11678
|
+
},
|
|
11679
|
+
"funding": {
|
|
11680
|
+
"type": "opencollective",
|
|
11681
|
+
"url": "https://opencollective.com/parcel"
|
|
11682
|
+
}
|
|
11683
|
+
},
|
|
11684
|
+
"node_modules/vitest/node_modules/picomatch": {
|
|
11685
|
+
"version": "4.0.3",
|
|
11686
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
|
11687
|
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
11688
|
+
"dev": true,
|
|
11689
|
+
"license": "MIT",
|
|
11690
|
+
"engines": {
|
|
11691
|
+
"node": ">=12"
|
|
11692
|
+
},
|
|
11693
|
+
"funding": {
|
|
11694
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
11695
|
+
}
|
|
11696
|
+
},
|
|
11697
|
+
"node_modules/vitest/node_modules/vite": {
|
|
11698
|
+
"version": "8.0.1",
|
|
11699
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-8.0.1.tgz",
|
|
11700
|
+
"integrity": "sha512-wt+Z2qIhfFt85uiyRt5LPU4oVEJBXj8hZNWKeqFG4gRG/0RaRGJ7njQCwzFVjO+v4+Ipmf5CY7VdmZRAYYBPHw==",
|
|
11701
|
+
"dev": true,
|
|
11702
|
+
"license": "MIT",
|
|
11703
|
+
"peer": true,
|
|
11704
|
+
"dependencies": {
|
|
11705
|
+
"lightningcss": "^1.32.0",
|
|
11706
|
+
"picomatch": "^4.0.3",
|
|
11707
|
+
"postcss": "^8.5.8",
|
|
11708
|
+
"rolldown": "1.0.0-rc.10",
|
|
11709
|
+
"tinyglobby": "^0.2.15"
|
|
11710
|
+
},
|
|
11711
|
+
"bin": {
|
|
11712
|
+
"vite": "bin/vite.js"
|
|
11713
|
+
},
|
|
11714
|
+
"engines": {
|
|
11715
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
11716
|
+
},
|
|
11717
|
+
"funding": {
|
|
11718
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
11719
|
+
},
|
|
11720
|
+
"optionalDependencies": {
|
|
11721
|
+
"fsevents": "~2.3.3"
|
|
11722
|
+
},
|
|
11723
|
+
"peerDependencies": {
|
|
11724
|
+
"@types/node": "^20.19.0 || >=22.12.0",
|
|
11725
|
+
"@vitejs/devtools": "^0.1.0",
|
|
11726
|
+
"esbuild": "^0.27.0",
|
|
11727
|
+
"jiti": ">=1.21.0",
|
|
11728
|
+
"less": "^4.0.0",
|
|
11729
|
+
"sass": "^1.70.0",
|
|
11730
|
+
"sass-embedded": "^1.70.0",
|
|
11731
|
+
"stylus": ">=0.54.8",
|
|
11732
|
+
"sugarss": "^5.0.0",
|
|
11733
|
+
"terser": "^5.16.0",
|
|
11734
|
+
"tsx": "^4.8.1",
|
|
11735
|
+
"yaml": "^2.4.2"
|
|
11736
|
+
},
|
|
11737
|
+
"peerDependenciesMeta": {
|
|
11738
|
+
"@types/node": {
|
|
11739
|
+
"optional": true
|
|
11740
|
+
},
|
|
11741
|
+
"@vitejs/devtools": {
|
|
11742
|
+
"optional": true
|
|
11743
|
+
},
|
|
11744
|
+
"esbuild": {
|
|
11745
|
+
"optional": true
|
|
11746
|
+
},
|
|
11747
|
+
"jiti": {
|
|
11748
|
+
"optional": true
|
|
11749
|
+
},
|
|
11750
|
+
"less": {
|
|
11751
|
+
"optional": true
|
|
11752
|
+
},
|
|
11753
|
+
"sass": {
|
|
11754
|
+
"optional": true
|
|
11755
|
+
},
|
|
11756
|
+
"sass-embedded": {
|
|
11757
|
+
"optional": true
|
|
11758
|
+
},
|
|
11759
|
+
"stylus": {
|
|
11760
|
+
"optional": true
|
|
11761
|
+
},
|
|
11762
|
+
"sugarss": {
|
|
11763
|
+
"optional": true
|
|
11764
|
+
},
|
|
11765
|
+
"terser": {
|
|
11766
|
+
"optional": true
|
|
11767
|
+
},
|
|
11768
|
+
"tsx": {
|
|
11769
|
+
"optional": true
|
|
11770
|
+
},
|
|
11771
|
+
"yaml": {
|
|
11772
|
+
"optional": true
|
|
11773
|
+
}
|
|
11774
|
+
}
|
|
11775
|
+
},
|
|
11776
|
+
"node_modules/which": {
|
|
11777
|
+
"version": "2.0.2",
|
|
11778
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
11779
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
11780
|
+
"dev": true,
|
|
11781
|
+
"license": "ISC",
|
|
11782
|
+
"dependencies": {
|
|
11783
|
+
"isexe": "^2.0.0"
|
|
11784
|
+
},
|
|
11785
|
+
"bin": {
|
|
11786
|
+
"node-which": "bin/node-which"
|
|
11787
|
+
},
|
|
11788
|
+
"engines": {
|
|
11789
|
+
"node": ">= 8"
|
|
11790
|
+
}
|
|
11791
|
+
},
|
|
11792
|
+
"node_modules/which-boxed-primitive": {
|
|
11793
|
+
"version": "1.1.1",
|
|
11794
|
+
"resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
|
|
11795
|
+
"integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
|
|
11796
|
+
"dev": true,
|
|
11797
|
+
"license": "MIT",
|
|
11798
|
+
"dependencies": {
|
|
11799
|
+
"is-bigint": "^1.1.0",
|
|
11800
|
+
"is-boolean-object": "^1.2.1",
|
|
11801
|
+
"is-number-object": "^1.1.1",
|
|
11802
|
+
"is-string": "^1.1.1",
|
|
11803
|
+
"is-symbol": "^1.1.1"
|
|
11804
|
+
},
|
|
11805
|
+
"engines": {
|
|
11806
|
+
"node": ">= 0.4"
|
|
11807
|
+
},
|
|
11808
|
+
"funding": {
|
|
11809
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
11810
|
+
}
|
|
11811
|
+
},
|
|
11812
|
+
"node_modules/which-builtin-type": {
|
|
11813
|
+
"version": "1.2.1",
|
|
11814
|
+
"resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
|
|
11815
|
+
"integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
|
|
11816
|
+
"dev": true,
|
|
11817
|
+
"license": "MIT",
|
|
11818
|
+
"dependencies": {
|
|
11819
|
+
"call-bound": "^1.0.2",
|
|
11820
|
+
"function.prototype.name": "^1.1.6",
|
|
11821
|
+
"has-tostringtag": "^1.0.2",
|
|
11822
|
+
"is-async-function": "^2.0.0",
|
|
11823
|
+
"is-date-object": "^1.1.0",
|
|
11824
|
+
"is-finalizationregistry": "^1.1.0",
|
|
11825
|
+
"is-generator-function": "^1.0.10",
|
|
11826
|
+
"is-regex": "^1.2.1",
|
|
11827
|
+
"is-weakref": "^1.0.2",
|
|
11828
|
+
"isarray": "^2.0.5",
|
|
11829
|
+
"which-boxed-primitive": "^1.1.0",
|
|
11830
|
+
"which-collection": "^1.0.2",
|
|
11831
|
+
"which-typed-array": "^1.1.16"
|
|
11832
|
+
},
|
|
11833
|
+
"engines": {
|
|
11834
|
+
"node": ">= 0.4"
|
|
11835
|
+
},
|
|
11836
|
+
"funding": {
|
|
11837
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
11838
|
+
}
|
|
11839
|
+
},
|
|
11840
|
+
"node_modules/which-collection": {
|
|
11841
|
+
"version": "1.0.2",
|
|
11842
|
+
"resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
|
|
11843
|
+
"integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
|
|
11844
|
+
"dev": true,
|
|
11845
|
+
"license": "MIT",
|
|
11846
|
+
"dependencies": {
|
|
10377
11847
|
"is-map": "^2.0.3",
|
|
10378
11848
|
"is-set": "^2.0.3",
|
|
10379
11849
|
"is-weakmap": "^2.0.2",
|
|
@@ -10408,6 +11878,23 @@
|
|
|
10408
11878
|
"url": "https://github.com/sponsors/ljharb"
|
|
10409
11879
|
}
|
|
10410
11880
|
},
|
|
11881
|
+
"node_modules/why-is-node-running": {
|
|
11882
|
+
"version": "2.3.0",
|
|
11883
|
+
"resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz",
|
|
11884
|
+
"integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==",
|
|
11885
|
+
"dev": true,
|
|
11886
|
+
"license": "MIT",
|
|
11887
|
+
"dependencies": {
|
|
11888
|
+
"siginfo": "^2.0.0",
|
|
11889
|
+
"stackback": "0.0.2"
|
|
11890
|
+
},
|
|
11891
|
+
"bin": {
|
|
11892
|
+
"why-is-node-running": "cli.js"
|
|
11893
|
+
},
|
|
11894
|
+
"engines": {
|
|
11895
|
+
"node": ">=8"
|
|
11896
|
+
}
|
|
11897
|
+
},
|
|
10411
11898
|
"node_modules/word-wrap": {
|
|
10412
11899
|
"version": "1.2.5",
|
|
10413
11900
|
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
|
|
@@ -10457,6 +11944,7 @@
|
|
|
10457
11944
|
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
|
|
10458
11945
|
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
|
10459
11946
|
"license": "ISC",
|
|
11947
|
+
"peer": true,
|
|
10460
11948
|
"bin": {
|
|
10461
11949
|
"yaml": "bin.mjs"
|
|
10462
11950
|
},
|