create-outsystems-astro 0.6.0 → 0.7.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 +50 -11
- package/bin/cli.js +66 -5
- package/package.json +1 -1
- package/template/AGENTS.md +91 -4
- package/template/astro.config.mjs +14 -3
- package/template/bun.lock +202 -96
- package/template/deno.json +16 -1
- package/template/deno.lock +571 -309
- package/template/eslint.config.mjs +27 -2
- package/template/package-lock.json +760 -258
- package/template/package.json +38 -29
- package/template/patches/{@angular+build+21.2.0.patch → @angular+build+21.2.1.patch} +1 -10
- package/template/patches-deno/playwright+1.58.2.patch +26 -0
- package/template/playwright.config.ts +1 -1
- package/template/pnpm-lock.yaml +984 -599
- package/template/src/framework/angular/{Counter.component.ts → Demo.component.ts} +12 -5
- package/template/src/framework/angular/Store.component.ts +24 -0
- package/template/src/framework/preact/Demo.tsx +86 -0
- package/template/src/framework/preact/Store.tsx +31 -0
- package/template/src/framework/react/{Counter.tsx → Demo.tsx} +23 -17
- package/template/src/framework/react/Store.tsx +31 -0
- package/template/src/framework/svelte/{Counter.svelte → Demo.svelte} +8 -11
- package/template/src/framework/svelte/Store.svelte +22 -0
- package/template/src/framework/vue/{Counter.vue → Demo.vue} +7 -9
- package/template/src/framework/vue/Store.vue +28 -0
- package/template/src/images/angular.png +0 -0
- package/template/src/images/preact.png +0 -0
- package/template/src/images/react.png +0 -0
- package/template/src/images/svelte.png +0 -0
- package/template/src/images/vue.png +0 -0
- package/template/src/pages/angular/{angular-counter.astro → angular-demo.astro} +12 -5
- package/template/src/pages/multi/store.astro +22 -0
- package/template/src/pages/preact/preact-demo.astro +66 -0
- package/template/src/pages/react/{react-counter.astro → react-demo.astro} +12 -9
- package/template/src/pages/svelte/{svelte-counter.astro → svelte-demo.astro} +9 -9
- package/template/src/pages/vue/{vue-counter.astro → vue-demo.astro} +9 -15
- package/template/src/stores/framework.ts +10 -0
- package/template/src/styles/index.css +4 -0
- package/template/test/e2e/angular/angular-counter.spec.ts +7 -1
- package/template/test/e2e/preact/preact-counter.spec.ts +42 -0
- package/template/test/e2e/react/react-counter.spec.ts +2 -2
- package/template/test/e2e/svelte/svelte-counter.spec.ts +2 -2
- package/template/test/e2e/vue/vue-counter.spec.ts +2 -2
- package/template/test/integration/angular/{Counter.component.spec.ts → Demo.component.spec.ts} +6 -6
- package/template/test/integration/preact/Demo.test.tsx +84 -0
- package/template/test/integration/react/{Counter.test.tsx → Demo.test.tsx} +10 -9
- package/template/test/integration/svelte/{Counter.test.ts → Demo.test.ts} +9 -9
- package/template/test/integration/svelte/{SlotCounter.wrapper.svelte → Demo.wrapper.svelte} +3 -3
- package/template/test/integration/vue/{Counter.test.ts → Demo.test.ts} +9 -9
- package/template/tsconfig.json +0 -1
- package/template/vitest.config.ts +12 -0
- package/template/yarn.lock +572 -234
- /package/template/patches/{@analogjs+astro-angular+2.3.0.patch → @analogjs+astro-angular+2.3.1.patch} +0 -0
|
@@ -7,78 +7,86 @@
|
|
|
7
7
|
"name": "create-outsystems-astro",
|
|
8
8
|
"hasInstallScript": true,
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@analogjs/astro-angular": "^2.3.
|
|
11
|
-
"@angular/animations": "^21.1
|
|
12
|
-
"@angular/build": "^21.1
|
|
13
|
-
"@angular/common": "^21.1
|
|
14
|
-
"@angular/compiler": "^21.1
|
|
15
|
-
"@angular/compiler-cli": "^21.1
|
|
16
|
-
"@angular/core": "^21.1
|
|
17
|
-
"@angular/language-service": "^21.1
|
|
18
|
-
"@angular/platform-browser": "^21.1
|
|
19
|
-
"@angular/platform-server": "^21.1
|
|
10
|
+
"@analogjs/astro-angular": "^2.3.1",
|
|
11
|
+
"@angular/animations": "^21.2.1",
|
|
12
|
+
"@angular/build": "^21.2.1",
|
|
13
|
+
"@angular/common": "^21.2.1",
|
|
14
|
+
"@angular/compiler": "^21.2.1",
|
|
15
|
+
"@angular/compiler-cli": "^21.2.1",
|
|
16
|
+
"@angular/core": "^21.2.1",
|
|
17
|
+
"@angular/language-service": "^21.2.1",
|
|
18
|
+
"@angular/platform-browser": "^21.2.1",
|
|
19
|
+
"@angular/platform-server": "^21.2.1",
|
|
20
|
+
"@astrojs/preact": "^4.1.3",
|
|
20
21
|
"@astrojs/react": "^4.4.2",
|
|
21
22
|
"@astrojs/svelte": "^7.2.5",
|
|
22
23
|
"@astrojs/vue": "^5.1.4",
|
|
24
|
+
"@nanostores/preact": "^1.0.0",
|
|
23
25
|
"@nanostores/react": "^1.0.0",
|
|
24
|
-
"@nanostores/vue": "^1.0
|
|
26
|
+
"@nanostores/vue": "^1.1.0",
|
|
25
27
|
"astro": "^5.18.0",
|
|
26
28
|
"nanostores": "^1.1.1",
|
|
29
|
+
"preact": "^10.28.4",
|
|
27
30
|
"react": "^19.2.4",
|
|
28
31
|
"react-dom": "^19.2.4",
|
|
29
32
|
"rxjs": "^7.8.2",
|
|
30
|
-
"svelte": "^5.53.
|
|
33
|
+
"svelte": "^5.53.7",
|
|
31
34
|
"vue": "^3.5.29"
|
|
32
35
|
},
|
|
33
36
|
"devDependencies": {
|
|
34
|
-
"@analogjs/vite-plugin-angular": "^2.3.
|
|
35
|
-
"@analogjs/vitest-angular": "^2.3.
|
|
36
|
-
"@angular-devkit/architect": "^0.2102.
|
|
37
|
-
"@angular-devkit/schematics": "^21.2.
|
|
38
|
-
"@angular/cli": "^21.2.
|
|
39
|
-
"@angular/router": "^21.1
|
|
40
|
-
"@
|
|
41
|
-
"@eslint/
|
|
37
|
+
"@analogjs/vite-plugin-angular": "^2.3.1",
|
|
38
|
+
"@analogjs/vitest-angular": "^2.3.1",
|
|
39
|
+
"@angular-devkit/architect": "^0.2102.1",
|
|
40
|
+
"@angular-devkit/schematics": "^21.2.1",
|
|
41
|
+
"@angular/cli": "^21.2.1",
|
|
42
|
+
"@angular/router": "^21.2.1",
|
|
43
|
+
"@babel/core": "^7.29.0",
|
|
44
|
+
"@eslint/compat": "^2.0.3",
|
|
45
|
+
"@eslint/eslintrc": "^3.3.5",
|
|
46
|
+
"@eslint/js": "^9.39.4",
|
|
42
47
|
"@eslint/markdown": "^7.5.1",
|
|
43
|
-
"@playwright/test": "1.
|
|
48
|
+
"@playwright/test": "1.58.2",
|
|
49
|
+
"@preact/preset-vite": "^2.10.3",
|
|
44
50
|
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
45
51
|
"@testing-library/angular": "^19.1.0",
|
|
46
52
|
"@testing-library/dom": "^10.4.1",
|
|
47
53
|
"@testing-library/jest-dom": "^6.9.1",
|
|
54
|
+
"@testing-library/preact": "^3.2.4",
|
|
48
55
|
"@testing-library/react": "^16.3.2",
|
|
49
56
|
"@testing-library/svelte": "^5.3.1",
|
|
50
57
|
"@testing-library/user-event": "^14.6.1",
|
|
51
58
|
"@testing-library/vue": "^8.1.0",
|
|
52
59
|
"@types/js-beautify": "^1.14.3",
|
|
53
|
-
"@types/node": "^25.3.
|
|
60
|
+
"@types/node": "^25.3.5",
|
|
54
61
|
"@types/react": "^19.2.14",
|
|
55
62
|
"@types/react-dom": "^19.2.3",
|
|
56
63
|
"@vitejs/plugin-react": "^5.1.4",
|
|
57
64
|
"@vitejs/plugin-vue": "^6.0.4",
|
|
58
|
-
"angular-eslint": "^21.
|
|
65
|
+
"angular-eslint": "^21.3.0",
|
|
59
66
|
"better-npm-audit": "^3.11.0",
|
|
60
67
|
"dotenv": "^17.3.1",
|
|
61
|
-
"eslint": "^9.39.
|
|
68
|
+
"eslint": "^9.39.4",
|
|
69
|
+
"eslint-config-preact": "^2.0.0",
|
|
62
70
|
"eslint-config-prettier": "^10.1.8",
|
|
63
71
|
"eslint-plugin-astro": "^1.6.0",
|
|
64
72
|
"eslint-plugin-import": "^2.32.0",
|
|
65
73
|
"eslint-plugin-jest": "^29.15.0",
|
|
66
74
|
"eslint-plugin-jest-dom": "^5.5.0",
|
|
67
75
|
"eslint-plugin-perfectionist": "^5.6.0",
|
|
68
|
-
"eslint-plugin-playwright": "^2.
|
|
76
|
+
"eslint-plugin-playwright": "^2.9.0",
|
|
69
77
|
"eslint-plugin-react": "^7.37.5",
|
|
70
78
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
71
79
|
"eslint-plugin-svelte": "^3.15.0",
|
|
72
80
|
"eslint-plugin-testing-library": "^7.16.0",
|
|
73
81
|
"eslint-plugin-vue": "^10.8.0",
|
|
74
|
-
"globals": "^17.
|
|
75
|
-
"happy-dom": "^20.
|
|
82
|
+
"globals": "^17.4.0",
|
|
83
|
+
"happy-dom": "^20.8.3",
|
|
76
84
|
"improved-yarn-audit": "^3.0.4",
|
|
77
85
|
"js-beautify": "^1.15.4",
|
|
78
86
|
"patch-package": "^8.0.1",
|
|
79
87
|
"prettier": "^3.8.1",
|
|
80
|
-
"prettier-plugin-svelte": "^3.5.
|
|
81
|
-
"svelte-eslint-parser": "^1.
|
|
88
|
+
"prettier-plugin-svelte": "^3.5.1",
|
|
89
|
+
"svelte-eslint-parser": "^1.6.0",
|
|
82
90
|
"ts-node": "^10.9.2",
|
|
83
91
|
"tslib": "^2.8.1",
|
|
84
92
|
"typescript": "^5.9.3",
|
|
@@ -318,12 +326,12 @@
|
|
|
318
326
|
}
|
|
319
327
|
},
|
|
320
328
|
"node_modules/@analogjs/astro-angular": {
|
|
321
|
-
"version": "2.3.
|
|
322
|
-
"resolved": "https://registry.npmjs.org/@analogjs/astro-angular/-/astro-angular-2.3.
|
|
323
|
-
"integrity": "sha512-
|
|
329
|
+
"version": "2.3.1",
|
|
330
|
+
"resolved": "https://registry.npmjs.org/@analogjs/astro-angular/-/astro-angular-2.3.1.tgz",
|
|
331
|
+
"integrity": "sha512-t6ZFT5DKLuccBfeHobJuiUOPcetmznIvmzNsOdanbvt7PP8KLiun2Y1s8k1LfdndZC8Lt5r1K7IofyckW6oapg==",
|
|
324
332
|
"license": "MIT",
|
|
325
333
|
"dependencies": {
|
|
326
|
-
"@analogjs/vite-plugin-angular": "^2.3.
|
|
334
|
+
"@analogjs/vite-plugin-angular": "^2.3.1"
|
|
327
335
|
},
|
|
328
336
|
"funding": {
|
|
329
337
|
"type": "github",
|
|
@@ -344,9 +352,9 @@
|
|
|
344
352
|
}
|
|
345
353
|
},
|
|
346
354
|
"node_modules/@analogjs/vite-plugin-angular": {
|
|
347
|
-
"version": "2.3.
|
|
348
|
-
"resolved": "https://registry.npmjs.org/@analogjs/vite-plugin-angular/-/vite-plugin-angular-2.3.
|
|
349
|
-
"integrity": "sha512-
|
|
355
|
+
"version": "2.3.1",
|
|
356
|
+
"resolved": "https://registry.npmjs.org/@analogjs/vite-plugin-angular/-/vite-plugin-angular-2.3.1.tgz",
|
|
357
|
+
"integrity": "sha512-6ttSrMFBYwvS5JfovagfhkLaje1RjzztIniBWtH5G8wc6vrud77/sRJWVaVC4Ri4XRBTQ2kG5thSDumccX1B7g==",
|
|
350
358
|
"license": "MIT",
|
|
351
359
|
"dependencies": {
|
|
352
360
|
"tinyglobby": "^0.2.14",
|
|
@@ -370,9 +378,9 @@
|
|
|
370
378
|
}
|
|
371
379
|
},
|
|
372
380
|
"node_modules/@analogjs/vitest-angular": {
|
|
373
|
-
"version": "2.3.
|
|
374
|
-
"resolved": "https://registry.npmjs.org/@analogjs/vitest-angular/-/vitest-angular-2.3.
|
|
375
|
-
"integrity": "sha512-
|
|
381
|
+
"version": "2.3.1",
|
|
382
|
+
"resolved": "https://registry.npmjs.org/@analogjs/vitest-angular/-/vitest-angular-2.3.1.tgz",
|
|
383
|
+
"integrity": "sha512-wbTLgeWDR9qPohE5vzGi4GJ0oHC/GmAhkzEMbt6xoAHbhvMsRrqsiiku03tejHcPqErMlsBotIeR/huAbJferQ==",
|
|
376
384
|
"dev": true,
|
|
377
385
|
"license": "MIT",
|
|
378
386
|
"funding": {
|
|
@@ -393,12 +401,12 @@
|
|
|
393
401
|
}
|
|
394
402
|
},
|
|
395
403
|
"node_modules/@angular-devkit/architect": {
|
|
396
|
-
"version": "0.2102.
|
|
397
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2102.
|
|
398
|
-
"integrity": "sha512-
|
|
404
|
+
"version": "0.2102.1",
|
|
405
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2102.1.tgz",
|
|
406
|
+
"integrity": "sha512-x2Qqz6oLYvEh9UBUG0AP1A4zROO/VP+k+zM9+4c2uZw1uqoBQFmutqgzncjVU7cR9R0RApgx9JRZHDFtQru68w==",
|
|
399
407
|
"license": "MIT",
|
|
400
408
|
"dependencies": {
|
|
401
|
-
"@angular-devkit/core": "21.2.
|
|
409
|
+
"@angular-devkit/core": "21.2.1",
|
|
402
410
|
"rxjs": "7.8.2"
|
|
403
411
|
},
|
|
404
412
|
"bin": {
|
|
@@ -411,9 +419,9 @@
|
|
|
411
419
|
}
|
|
412
420
|
},
|
|
413
421
|
"node_modules/@angular-devkit/core": {
|
|
414
|
-
"version": "21.2.
|
|
415
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.2.
|
|
416
|
-
"integrity": "sha512-
|
|
422
|
+
"version": "21.2.1",
|
|
423
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.2.1.tgz",
|
|
424
|
+
"integrity": "sha512-TpXGjERqVPN8EPt7LdmWAwh0oNQ/6uWFutzGZiXhJy81n1zb1O1XrqhRAmvP1cAo5O+na6IV2JkkCmxL6F8GUg==",
|
|
417
425
|
"license": "MIT",
|
|
418
426
|
"dependencies": {
|
|
419
427
|
"ajv": "8.18.0",
|
|
@@ -438,13 +446,13 @@
|
|
|
438
446
|
}
|
|
439
447
|
},
|
|
440
448
|
"node_modules/@angular-devkit/schematics": {
|
|
441
|
-
"version": "21.2.
|
|
442
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.2.
|
|
443
|
-
"integrity": "sha512-
|
|
449
|
+
"version": "21.2.1",
|
|
450
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.2.1.tgz",
|
|
451
|
+
"integrity": "sha512-CWoamHaasAHMjHcYqxbj0tMnoXxdGotcAz2SpiuWtH28Lnf5xfbTaJn/lwdMP8Wdh4tgA+uYh2l45A5auCwmkw==",
|
|
444
452
|
"dev": true,
|
|
445
453
|
"license": "MIT",
|
|
446
454
|
"dependencies": {
|
|
447
|
-
"@angular-devkit/core": "21.2.
|
|
455
|
+
"@angular-devkit/core": "21.2.1",
|
|
448
456
|
"jsonc-parser": "3.3.1",
|
|
449
457
|
"magic-string": "0.30.21",
|
|
450
458
|
"ora": "9.3.0",
|
|
@@ -457,9 +465,9 @@
|
|
|
457
465
|
}
|
|
458
466
|
},
|
|
459
467
|
"node_modules/@angular-eslint/builder": {
|
|
460
|
-
"version": "21.
|
|
461
|
-
"resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-21.
|
|
462
|
-
"integrity": "sha512-
|
|
468
|
+
"version": "21.3.0",
|
|
469
|
+
"resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-21.3.0.tgz",
|
|
470
|
+
"integrity": "sha512-26QUUouei52biUFAlJSrWNAU9tuF2miKwd8uHdxWwCF31xz+OxC5+NfudWvt1AFaYow7gWueX1QX3rNNtSPDrg==",
|
|
463
471
|
"dev": true,
|
|
464
472
|
"license": "MIT",
|
|
465
473
|
"dependencies": {
|
|
@@ -468,67 +476,67 @@
|
|
|
468
476
|
},
|
|
469
477
|
"peerDependencies": {
|
|
470
478
|
"@angular/cli": ">= 21.0.0 < 22.0.0",
|
|
471
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
479
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
472
480
|
"typescript": "*"
|
|
473
481
|
}
|
|
474
482
|
},
|
|
475
483
|
"node_modules/@angular-eslint/bundled-angular-compiler": {
|
|
476
|
-
"version": "21.
|
|
477
|
-
"resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-21.
|
|
478
|
-
"integrity": "sha512-
|
|
484
|
+
"version": "21.3.0",
|
|
485
|
+
"resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-21.3.0.tgz",
|
|
486
|
+
"integrity": "sha512-l521I24J9gJxyMbRkrM24Tc7W8J8BP+TDAmVs2nT8+lXbS3kg8QpWBRtd+hNUgq6o+vt+lKBkytnEfu8OiqeRg==",
|
|
479
487
|
"dev": true,
|
|
480
488
|
"license": "MIT"
|
|
481
489
|
},
|
|
482
490
|
"node_modules/@angular-eslint/eslint-plugin": {
|
|
483
|
-
"version": "21.
|
|
484
|
-
"resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-21.
|
|
485
|
-
"integrity": "sha512-
|
|
491
|
+
"version": "21.3.0",
|
|
492
|
+
"resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-21.3.0.tgz",
|
|
493
|
+
"integrity": "sha512-Whf/AUUBekOlfSJRS78m76YGrBQAZ3waXE7oOdlW5xEQvn8jBDN9EGuNnjg/syZzvzjK4ZpYC4g1XYXrc+fQIg==",
|
|
486
494
|
"dev": true,
|
|
487
495
|
"license": "MIT",
|
|
488
496
|
"dependencies": {
|
|
489
|
-
"@angular-eslint/bundled-angular-compiler": "21.
|
|
490
|
-
"@angular-eslint/utils": "21.
|
|
497
|
+
"@angular-eslint/bundled-angular-compiler": "21.3.0",
|
|
498
|
+
"@angular-eslint/utils": "21.3.0",
|
|
491
499
|
"ts-api-utils": "^2.1.0"
|
|
492
500
|
},
|
|
493
501
|
"peerDependencies": {
|
|
494
502
|
"@typescript-eslint/utils": "^7.11.0 || ^8.0.0",
|
|
495
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
503
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
496
504
|
"typescript": "*"
|
|
497
505
|
}
|
|
498
506
|
},
|
|
499
507
|
"node_modules/@angular-eslint/eslint-plugin-template": {
|
|
500
|
-
"version": "21.
|
|
501
|
-
"resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-21.
|
|
502
|
-
"integrity": "sha512-
|
|
508
|
+
"version": "21.3.0",
|
|
509
|
+
"resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-21.3.0.tgz",
|
|
510
|
+
"integrity": "sha512-lVixd/KypPWgA/5/pUOhJV9MTcaHjYZEqyOi+IiLk+h+maGxn6/s6Ot+20n+XGS85zAgOY+qUw6EEQ11hoojIQ==",
|
|
503
511
|
"dev": true,
|
|
504
512
|
"license": "MIT",
|
|
505
513
|
"dependencies": {
|
|
506
|
-
"@angular-eslint/bundled-angular-compiler": "21.
|
|
507
|
-
"@angular-eslint/utils": "21.
|
|
514
|
+
"@angular-eslint/bundled-angular-compiler": "21.3.0",
|
|
515
|
+
"@angular-eslint/utils": "21.3.0",
|
|
508
516
|
"aria-query": "5.3.2",
|
|
509
517
|
"axobject-query": "4.1.0"
|
|
510
518
|
},
|
|
511
519
|
"peerDependencies": {
|
|
512
|
-
"@angular-eslint/template-parser": "21.
|
|
520
|
+
"@angular-eslint/template-parser": "21.3.0",
|
|
513
521
|
"@typescript-eslint/types": "^7.11.0 || ^8.0.0",
|
|
514
522
|
"@typescript-eslint/utils": "^7.11.0 || ^8.0.0",
|
|
515
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
523
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
516
524
|
"typescript": "*"
|
|
517
525
|
}
|
|
518
526
|
},
|
|
519
527
|
"node_modules/@angular-eslint/schematics": {
|
|
520
|
-
"version": "21.
|
|
521
|
-
"resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-21.
|
|
522
|
-
"integrity": "sha512-
|
|
528
|
+
"version": "21.3.0",
|
|
529
|
+
"resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-21.3.0.tgz",
|
|
530
|
+
"integrity": "sha512-8deU/zVY9f8k8kAQQ9PL130ox2VlrZw3fMxgsPNAY5tjQ0xk0J2YVSszYHhcqdMGG1J01IsxIjvQaJ4pFfEmMw==",
|
|
523
531
|
"dev": true,
|
|
524
532
|
"license": "MIT",
|
|
525
533
|
"dependencies": {
|
|
526
534
|
"@angular-devkit/core": ">= 21.0.0 < 22.0.0",
|
|
527
535
|
"@angular-devkit/schematics": ">= 21.0.0 < 22.0.0",
|
|
528
|
-
"@angular-eslint/eslint-plugin": "21.
|
|
529
|
-
"@angular-eslint/eslint-plugin-template": "21.
|
|
536
|
+
"@angular-eslint/eslint-plugin": "21.3.0",
|
|
537
|
+
"@angular-eslint/eslint-plugin-template": "21.3.0",
|
|
530
538
|
"ignore": "7.0.5",
|
|
531
|
-
"semver": "7.7.
|
|
539
|
+
"semver": "7.7.4",
|
|
532
540
|
"strip-json-comments": "3.1.1"
|
|
533
541
|
},
|
|
534
542
|
"peerDependencies": {
|
|
@@ -545,38 +553,25 @@
|
|
|
545
553
|
"node": ">= 4"
|
|
546
554
|
}
|
|
547
555
|
},
|
|
548
|
-
"node_modules/@angular-eslint/schematics/node_modules/semver": {
|
|
549
|
-
"version": "7.7.3",
|
|
550
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
|
|
551
|
-
"integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
|
|
552
|
-
"dev": true,
|
|
553
|
-
"license": "ISC",
|
|
554
|
-
"bin": {
|
|
555
|
-
"semver": "bin/semver.js"
|
|
556
|
-
},
|
|
557
|
-
"engines": {
|
|
558
|
-
"node": ">=10"
|
|
559
|
-
}
|
|
560
|
-
},
|
|
561
556
|
"node_modules/@angular-eslint/template-parser": {
|
|
562
|
-
"version": "21.
|
|
563
|
-
"resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-21.
|
|
564
|
-
"integrity": "sha512-
|
|
557
|
+
"version": "21.3.0",
|
|
558
|
+
"resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-21.3.0.tgz",
|
|
559
|
+
"integrity": "sha512-ysyou1zAY6M6rSZNdIcYKGd4nk6TCapamyFNB3ivmTlVZ0O35TS9o/rJ0aUttuHgDp+Ysgs3ql+LA746PXgCyQ==",
|
|
565
560
|
"dev": true,
|
|
566
561
|
"license": "MIT",
|
|
567
562
|
"dependencies": {
|
|
568
|
-
"@angular-eslint/bundled-angular-compiler": "21.
|
|
569
|
-
"eslint-scope": "^9.
|
|
563
|
+
"@angular-eslint/bundled-angular-compiler": "21.3.0",
|
|
564
|
+
"eslint-scope": "^9.1.1"
|
|
570
565
|
},
|
|
571
566
|
"peerDependencies": {
|
|
572
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
567
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
573
568
|
"typescript": "*"
|
|
574
569
|
}
|
|
575
570
|
},
|
|
576
571
|
"node_modules/@angular-eslint/template-parser/node_modules/eslint-scope": {
|
|
577
|
-
"version": "9.1.
|
|
578
|
-
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.
|
|
579
|
-
"integrity": "sha512-
|
|
572
|
+
"version": "9.1.2",
|
|
573
|
+
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz",
|
|
574
|
+
"integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==",
|
|
580
575
|
"dev": true,
|
|
581
576
|
"license": "BSD-2-Clause",
|
|
582
577
|
"dependencies": {
|
|
@@ -593,24 +588,24 @@
|
|
|
593
588
|
}
|
|
594
589
|
},
|
|
595
590
|
"node_modules/@angular-eslint/utils": {
|
|
596
|
-
"version": "21.
|
|
597
|
-
"resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-21.
|
|
598
|
-
"integrity": "sha512-
|
|
591
|
+
"version": "21.3.0",
|
|
592
|
+
"resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-21.3.0.tgz",
|
|
593
|
+
"integrity": "sha512-oNigH6w3l+owTMboj/uFG0tHOy43uH8BpQRtBOQL1/s2+5in/BJ2Fjobv3SyizxTgeJ1FhRefbkT8GmVjK7jAA==",
|
|
599
594
|
"dev": true,
|
|
600
595
|
"license": "MIT",
|
|
601
596
|
"dependencies": {
|
|
602
|
-
"@angular-eslint/bundled-angular-compiler": "21.
|
|
597
|
+
"@angular-eslint/bundled-angular-compiler": "21.3.0"
|
|
603
598
|
},
|
|
604
599
|
"peerDependencies": {
|
|
605
600
|
"@typescript-eslint/utils": "^7.11.0 || ^8.0.0",
|
|
606
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
601
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
607
602
|
"typescript": "*"
|
|
608
603
|
}
|
|
609
604
|
},
|
|
610
605
|
"node_modules/@angular/animations": {
|
|
611
|
-
"version": "21.2.
|
|
612
|
-
"resolved": "https://registry.npmjs.org/@angular/animations/-/animations-21.2.
|
|
613
|
-
"integrity": "sha512-
|
|
606
|
+
"version": "21.2.1",
|
|
607
|
+
"resolved": "https://registry.npmjs.org/@angular/animations/-/animations-21.2.1.tgz",
|
|
608
|
+
"integrity": "sha512-zT/S29pUTbziCLvZ2itBdNWd5i8tsXexofH7KA4n2yvYmK1EhNpE7TlHRjghmsHgtDt4VnGiMW4zXEyrl05Dwg==",
|
|
614
609
|
"license": "MIT",
|
|
615
610
|
"dependencies": {
|
|
616
611
|
"tslib": "^2.3.0"
|
|
@@ -619,17 +614,17 @@
|
|
|
619
614
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
620
615
|
},
|
|
621
616
|
"peerDependencies": {
|
|
622
|
-
"@angular/core": "21.2.
|
|
617
|
+
"@angular/core": "21.2.1"
|
|
623
618
|
}
|
|
624
619
|
},
|
|
625
620
|
"node_modules/@angular/build": {
|
|
626
|
-
"version": "21.2.
|
|
627
|
-
"resolved": "https://registry.npmjs.org/@angular/build/-/build-21.2.
|
|
628
|
-
"integrity": "sha512-
|
|
621
|
+
"version": "21.2.1",
|
|
622
|
+
"resolved": "https://registry.npmjs.org/@angular/build/-/build-21.2.1.tgz",
|
|
623
|
+
"integrity": "sha512-cUpLNHJp9taII/FOcJHHfQYlMcZSRaf6eIxgSNS6Xfx1CeGoJNDN+J8+GFk+H1CPJt1EvbfyZ+dE5DbsgTD/QQ==",
|
|
629
624
|
"license": "MIT",
|
|
630
625
|
"dependencies": {
|
|
631
626
|
"@ampproject/remapping": "2.3.0",
|
|
632
|
-
"@angular-devkit/architect": "0.2102.
|
|
627
|
+
"@angular-devkit/architect": "0.2102.1",
|
|
633
628
|
"@babel/core": "7.29.0",
|
|
634
629
|
"@babel/helper-annotate-as-pure": "7.27.3",
|
|
635
630
|
"@babel/helper-split-export-declaration": "7.24.7",
|
|
@@ -672,7 +667,7 @@
|
|
|
672
667
|
"@angular/platform-browser": "^21.0.0",
|
|
673
668
|
"@angular/platform-server": "^21.0.0",
|
|
674
669
|
"@angular/service-worker": "^21.0.0",
|
|
675
|
-
"@angular/ssr": "^21.2.
|
|
670
|
+
"@angular/ssr": "^21.2.1",
|
|
676
671
|
"karma": "^6.4.0",
|
|
677
672
|
"less": "^4.2.0",
|
|
678
673
|
"ng-packagr": "^21.0.0",
|
|
@@ -796,19 +791,19 @@
|
|
|
796
791
|
}
|
|
797
792
|
},
|
|
798
793
|
"node_modules/@angular/cli": {
|
|
799
|
-
"version": "21.2.
|
|
800
|
-
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.2.
|
|
801
|
-
"integrity": "sha512-
|
|
794
|
+
"version": "21.2.1",
|
|
795
|
+
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.2.1.tgz",
|
|
796
|
+
"integrity": "sha512-5SRfMTgwFj1zXOpfeZWHsxZBni0J4Xz7/CbewG47D6DmbstOrSdgt6eNzJ62R650t0G9dpri2YvToZgImtbjOQ==",
|
|
802
797
|
"dev": true,
|
|
803
798
|
"license": "MIT",
|
|
804
799
|
"dependencies": {
|
|
805
|
-
"@angular-devkit/architect": "0.2102.
|
|
806
|
-
"@angular-devkit/core": "21.2.
|
|
807
|
-
"@angular-devkit/schematics": "21.2.
|
|
800
|
+
"@angular-devkit/architect": "0.2102.1",
|
|
801
|
+
"@angular-devkit/core": "21.2.1",
|
|
802
|
+
"@angular-devkit/schematics": "21.2.1",
|
|
808
803
|
"@inquirer/prompts": "7.10.1",
|
|
809
804
|
"@listr2/prompt-adapter-inquirer": "3.0.5",
|
|
810
805
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
811
|
-
"@schematics/angular": "21.2.
|
|
806
|
+
"@schematics/angular": "21.2.1",
|
|
812
807
|
"@yarnpkg/lockfile": "1.1.0",
|
|
813
808
|
"algoliasearch": "5.48.1",
|
|
814
809
|
"ini": "6.0.0",
|
|
@@ -851,9 +846,9 @@
|
|
|
851
846
|
}
|
|
852
847
|
},
|
|
853
848
|
"node_modules/@angular/common": {
|
|
854
|
-
"version": "21.2.
|
|
855
|
-
"resolved": "https://registry.npmjs.org/@angular/common/-/common-21.2.
|
|
856
|
-
"integrity": "sha512-
|
|
849
|
+
"version": "21.2.1",
|
|
850
|
+
"resolved": "https://registry.npmjs.org/@angular/common/-/common-21.2.1.tgz",
|
|
851
|
+
"integrity": "sha512-xhv2i1Q9s1kpGbGsfj+o36+XUC/TQLcZyRuRxn3GwaN7Rv34FabC88ycpvoE+sW/txj4JRx9yPA0dRSZjwZ+Gg==",
|
|
857
852
|
"license": "MIT",
|
|
858
853
|
"dependencies": {
|
|
859
854
|
"tslib": "^2.3.0"
|
|
@@ -862,14 +857,14 @@
|
|
|
862
857
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
863
858
|
},
|
|
864
859
|
"peerDependencies": {
|
|
865
|
-
"@angular/core": "21.2.
|
|
860
|
+
"@angular/core": "21.2.1",
|
|
866
861
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
867
862
|
}
|
|
868
863
|
},
|
|
869
864
|
"node_modules/@angular/compiler": {
|
|
870
|
-
"version": "21.2.
|
|
871
|
-
"resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-21.2.
|
|
872
|
-
"integrity": "sha512-
|
|
865
|
+
"version": "21.2.1",
|
|
866
|
+
"resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-21.2.1.tgz",
|
|
867
|
+
"integrity": "sha512-FxWaSaii1vfHIFA+JksqQ8NGB2frfqCrs7Ju50a44kbwR4fmanfn/VsiS/CbwBp9vcyT/Br9X/jAG4RuK/U2nw==",
|
|
873
868
|
"license": "MIT",
|
|
874
869
|
"dependencies": {
|
|
875
870
|
"tslib": "^2.3.0"
|
|
@@ -879,9 +874,9 @@
|
|
|
879
874
|
}
|
|
880
875
|
},
|
|
881
876
|
"node_modules/@angular/compiler-cli": {
|
|
882
|
-
"version": "21.2.
|
|
883
|
-
"resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-21.2.
|
|
884
|
-
"integrity": "sha512-
|
|
877
|
+
"version": "21.2.1",
|
|
878
|
+
"resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-21.2.1.tgz",
|
|
879
|
+
"integrity": "sha512-qYCWLGtEju4cDtYLi4ZzbwKoF0lcGs+Lc31kuESvAzYvWNgk2EUOtwWo8kbgpAzAwSYodtxW6Q90iWEwfU6elw==",
|
|
885
880
|
"license": "MIT",
|
|
886
881
|
"dependencies": {
|
|
887
882
|
"@babel/core": "7.29.0",
|
|
@@ -901,7 +896,7 @@
|
|
|
901
896
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
902
897
|
},
|
|
903
898
|
"peerDependencies": {
|
|
904
|
-
"@angular/compiler": "21.2.
|
|
899
|
+
"@angular/compiler": "21.2.1",
|
|
905
900
|
"typescript": ">=5.9 <6.1"
|
|
906
901
|
},
|
|
907
902
|
"peerDependenciesMeta": {
|
|
@@ -911,9 +906,9 @@
|
|
|
911
906
|
}
|
|
912
907
|
},
|
|
913
908
|
"node_modules/@angular/core": {
|
|
914
|
-
"version": "21.2.
|
|
915
|
-
"resolved": "https://registry.npmjs.org/@angular/core/-/core-21.2.
|
|
916
|
-
"integrity": "sha512-
|
|
909
|
+
"version": "21.2.1",
|
|
910
|
+
"resolved": "https://registry.npmjs.org/@angular/core/-/core-21.2.1.tgz",
|
|
911
|
+
"integrity": "sha512-pFTbg03s2ZI5cHNT+eWsGjwIIKiYkeAnodFbCAHjwFi9KCEYlTykFLjr9lcpGrBddfmAH7GE08Q73vgmsdcNHw==",
|
|
917
912
|
"license": "MIT",
|
|
918
913
|
"dependencies": {
|
|
919
914
|
"tslib": "^2.3.0"
|
|
@@ -922,7 +917,7 @@
|
|
|
922
917
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
923
918
|
},
|
|
924
919
|
"peerDependencies": {
|
|
925
|
-
"@angular/compiler": "21.2.
|
|
920
|
+
"@angular/compiler": "21.2.1",
|
|
926
921
|
"rxjs": "^6.5.3 || ^7.4.0",
|
|
927
922
|
"zone.js": "~0.15.0 || ~0.16.0"
|
|
928
923
|
},
|
|
@@ -936,18 +931,18 @@
|
|
|
936
931
|
}
|
|
937
932
|
},
|
|
938
933
|
"node_modules/@angular/language-service": {
|
|
939
|
-
"version": "21.2.
|
|
940
|
-
"resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-21.2.
|
|
941
|
-
"integrity": "sha512-
|
|
934
|
+
"version": "21.2.1",
|
|
935
|
+
"resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-21.2.1.tgz",
|
|
936
|
+
"integrity": "sha512-L8EaNhWDKMny18RURg/Ju2Dix2e7qLL/s2yDQrawgjQRmXAMnjimz10w/EiiG7FMK/Hj5fLycS5X8VITq1f2rg==",
|
|
942
937
|
"license": "MIT",
|
|
943
938
|
"engines": {
|
|
944
939
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
945
940
|
}
|
|
946
941
|
},
|
|
947
942
|
"node_modules/@angular/platform-browser": {
|
|
948
|
-
"version": "21.2.
|
|
949
|
-
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-21.2.
|
|
950
|
-
"integrity": "sha512-
|
|
943
|
+
"version": "21.2.1",
|
|
944
|
+
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-21.2.1.tgz",
|
|
945
|
+
"integrity": "sha512-k4SJLxIaLT26vLjLuFL+ho0BiG5PrdxEsjsXFC7w5iUhomeouzkHVTZ4t7gaLNKrdRD7QNtU4Faw0nL0yx0ZPQ==",
|
|
951
946
|
"license": "MIT",
|
|
952
947
|
"dependencies": {
|
|
953
948
|
"tslib": "^2.3.0"
|
|
@@ -956,9 +951,9 @@
|
|
|
956
951
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
957
952
|
},
|
|
958
953
|
"peerDependencies": {
|
|
959
|
-
"@angular/animations": "21.2.
|
|
960
|
-
"@angular/common": "21.2.
|
|
961
|
-
"@angular/core": "21.2.
|
|
954
|
+
"@angular/animations": "21.2.1",
|
|
955
|
+
"@angular/common": "21.2.1",
|
|
956
|
+
"@angular/core": "21.2.1"
|
|
962
957
|
},
|
|
963
958
|
"peerDependenciesMeta": {
|
|
964
959
|
"@angular/animations": {
|
|
@@ -967,9 +962,9 @@
|
|
|
967
962
|
}
|
|
968
963
|
},
|
|
969
964
|
"node_modules/@angular/platform-server": {
|
|
970
|
-
"version": "21.2.
|
|
971
|
-
"resolved": "https://registry.npmjs.org/@angular/platform-server/-/platform-server-21.2.
|
|
972
|
-
"integrity": "sha512-
|
|
965
|
+
"version": "21.2.1",
|
|
966
|
+
"resolved": "https://registry.npmjs.org/@angular/platform-server/-/platform-server-21.2.1.tgz",
|
|
967
|
+
"integrity": "sha512-ezIY3hKl98JIjQcy+wq+38w9ln2bplQ8HFpEsaYySjPPu5TYCQ/z8HFxpvgqK80SVfvE7ijbgY+ALzKCE30Fjg==",
|
|
973
968
|
"license": "MIT",
|
|
974
969
|
"dependencies": {
|
|
975
970
|
"tslib": "^2.3.0",
|
|
@@ -979,17 +974,17 @@
|
|
|
979
974
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
980
975
|
},
|
|
981
976
|
"peerDependencies": {
|
|
982
|
-
"@angular/common": "21.2.
|
|
983
|
-
"@angular/compiler": "21.2.
|
|
984
|
-
"@angular/core": "21.2.
|
|
985
|
-
"@angular/platform-browser": "21.2.
|
|
977
|
+
"@angular/common": "21.2.1",
|
|
978
|
+
"@angular/compiler": "21.2.1",
|
|
979
|
+
"@angular/core": "21.2.1",
|
|
980
|
+
"@angular/platform-browser": "21.2.1",
|
|
986
981
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
987
982
|
}
|
|
988
983
|
},
|
|
989
984
|
"node_modules/@angular/router": {
|
|
990
|
-
"version": "21.2.
|
|
991
|
-
"resolved": "https://registry.npmjs.org/@angular/router/-/router-21.2.
|
|
992
|
-
"integrity": "sha512-
|
|
985
|
+
"version": "21.2.1",
|
|
986
|
+
"resolved": "https://registry.npmjs.org/@angular/router/-/router-21.2.1.tgz",
|
|
987
|
+
"integrity": "sha512-FUKG+8ImQYxmlDUdAs7+VeS/VrBNrbo0zGiKkzVNU/bbcCyroKXJLXFtkFI3qmROiJNyIta2IMBCHJvIjLIMig==",
|
|
993
988
|
"dev": true,
|
|
994
989
|
"license": "MIT",
|
|
995
990
|
"dependencies": {
|
|
@@ -999,9 +994,9 @@
|
|
|
999
994
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
1000
995
|
},
|
|
1001
996
|
"peerDependencies": {
|
|
1002
|
-
"@angular/common": "21.2.
|
|
1003
|
-
"@angular/core": "21.2.
|
|
1004
|
-
"@angular/platform-browser": "21.2.
|
|
997
|
+
"@angular/common": "21.2.1",
|
|
998
|
+
"@angular/core": "21.2.1",
|
|
999
|
+
"@angular/platform-browser": "21.2.1",
|
|
1005
1000
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
1006
1001
|
}
|
|
1007
1002
|
},
|
|
@@ -1055,6 +1050,24 @@
|
|
|
1055
1050
|
"vfile": "^6.0.3"
|
|
1056
1051
|
}
|
|
1057
1052
|
},
|
|
1053
|
+
"node_modules/@astrojs/preact": {
|
|
1054
|
+
"version": "4.1.3",
|
|
1055
|
+
"resolved": "https://registry.npmjs.org/@astrojs/preact/-/preact-4.1.3.tgz",
|
|
1056
|
+
"integrity": "sha512-Ph416wbgyumkmYr7erZ83l/d+LXdZethlHRRCbgoKEn8wo3Rkq13shKFp0QYXYSDYxVaA6UBdkdimeowy/lMLQ==",
|
|
1057
|
+
"license": "MIT",
|
|
1058
|
+
"dependencies": {
|
|
1059
|
+
"@preact/preset-vite": "^2.10.2",
|
|
1060
|
+
"@preact/signals": "^2.3.1",
|
|
1061
|
+
"preact-render-to-string": "^6.6.1",
|
|
1062
|
+
"vite": "^6.4.1"
|
|
1063
|
+
},
|
|
1064
|
+
"engines": {
|
|
1065
|
+
"node": "18.20.8 || ^20.3.0 || >=22.0.0"
|
|
1066
|
+
},
|
|
1067
|
+
"peerDependencies": {
|
|
1068
|
+
"preact": "^10.6.5"
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1058
1071
|
"node_modules/@astrojs/prism": {
|
|
1059
1072
|
"version": "3.3.0",
|
|
1060
1073
|
"resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.3.0.tgz",
|
|
@@ -1353,6 +1366,45 @@
|
|
|
1353
1366
|
"semver": "bin/semver.js"
|
|
1354
1367
|
}
|
|
1355
1368
|
},
|
|
1369
|
+
"node_modules/@babel/eslint-parser": {
|
|
1370
|
+
"version": "7.28.6",
|
|
1371
|
+
"resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.28.6.tgz",
|
|
1372
|
+
"integrity": "sha512-QGmsKi2PBO/MHSQk+AAgA9R6OHQr+VqnniFE0eMWZcVcfBZoA2dKn2hUsl3Csg/Plt9opRUWdY7//VXsrIlEiA==",
|
|
1373
|
+
"dev": true,
|
|
1374
|
+
"license": "MIT",
|
|
1375
|
+
"dependencies": {
|
|
1376
|
+
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
|
|
1377
|
+
"eslint-visitor-keys": "^2.1.0",
|
|
1378
|
+
"semver": "^6.3.1"
|
|
1379
|
+
},
|
|
1380
|
+
"engines": {
|
|
1381
|
+
"node": "^10.13.0 || ^12.13.0 || >=14.0.0"
|
|
1382
|
+
},
|
|
1383
|
+
"peerDependencies": {
|
|
1384
|
+
"@babel/core": "^7.11.0",
|
|
1385
|
+
"eslint": "^7.5.0 || ^8.0.0 || ^9.0.0"
|
|
1386
|
+
}
|
|
1387
|
+
},
|
|
1388
|
+
"node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": {
|
|
1389
|
+
"version": "2.1.0",
|
|
1390
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
|
|
1391
|
+
"integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
|
|
1392
|
+
"dev": true,
|
|
1393
|
+
"license": "Apache-2.0",
|
|
1394
|
+
"engines": {
|
|
1395
|
+
"node": ">=10"
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1398
|
+
"node_modules/@babel/eslint-parser/node_modules/semver": {
|
|
1399
|
+
"version": "6.3.1",
|
|
1400
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
1401
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
1402
|
+
"dev": true,
|
|
1403
|
+
"license": "ISC",
|
|
1404
|
+
"bin": {
|
|
1405
|
+
"semver": "bin/semver.js"
|
|
1406
|
+
}
|
|
1407
|
+
},
|
|
1356
1408
|
"node_modules/@babel/generator": {
|
|
1357
1409
|
"version": "7.29.1",
|
|
1358
1410
|
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
|
|
@@ -1632,6 +1684,19 @@
|
|
|
1632
1684
|
"@babel/core": "^7.0.0-0"
|
|
1633
1685
|
}
|
|
1634
1686
|
},
|
|
1687
|
+
"node_modules/@babel/plugin-syntax-class-properties": {
|
|
1688
|
+
"version": "7.12.13",
|
|
1689
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
|
|
1690
|
+
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
|
|
1691
|
+
"dev": true,
|
|
1692
|
+
"license": "MIT",
|
|
1693
|
+
"dependencies": {
|
|
1694
|
+
"@babel/helper-plugin-utils": "^7.12.13"
|
|
1695
|
+
},
|
|
1696
|
+
"peerDependencies": {
|
|
1697
|
+
"@babel/core": "^7.0.0-0"
|
|
1698
|
+
}
|
|
1699
|
+
},
|
|
1635
1700
|
"node_modules/@babel/plugin-syntax-decorators": {
|
|
1636
1701
|
"version": "7.28.6",
|
|
1637
1702
|
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.28.6.tgz",
|
|
@@ -1704,6 +1769,40 @@
|
|
|
1704
1769
|
"@babel/core": "^7.0.0-0"
|
|
1705
1770
|
}
|
|
1706
1771
|
},
|
|
1772
|
+
"node_modules/@babel/plugin-transform-react-jsx": {
|
|
1773
|
+
"version": "7.28.6",
|
|
1774
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.28.6.tgz",
|
|
1775
|
+
"integrity": "sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==",
|
|
1776
|
+
"license": "MIT",
|
|
1777
|
+
"dependencies": {
|
|
1778
|
+
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
1779
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
1780
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1781
|
+
"@babel/plugin-syntax-jsx": "^7.28.6",
|
|
1782
|
+
"@babel/types": "^7.28.6"
|
|
1783
|
+
},
|
|
1784
|
+
"engines": {
|
|
1785
|
+
"node": ">=6.9.0"
|
|
1786
|
+
},
|
|
1787
|
+
"peerDependencies": {
|
|
1788
|
+
"@babel/core": "^7.0.0-0"
|
|
1789
|
+
}
|
|
1790
|
+
},
|
|
1791
|
+
"node_modules/@babel/plugin-transform-react-jsx-development": {
|
|
1792
|
+
"version": "7.27.1",
|
|
1793
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz",
|
|
1794
|
+
"integrity": "sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==",
|
|
1795
|
+
"license": "MIT",
|
|
1796
|
+
"dependencies": {
|
|
1797
|
+
"@babel/plugin-transform-react-jsx": "^7.27.1"
|
|
1798
|
+
},
|
|
1799
|
+
"engines": {
|
|
1800
|
+
"node": ">=6.9.0"
|
|
1801
|
+
},
|
|
1802
|
+
"peerDependencies": {
|
|
1803
|
+
"@babel/core": "^7.0.0-0"
|
|
1804
|
+
}
|
|
1805
|
+
},
|
|
1707
1806
|
"node_modules/@babel/plugin-transform-react-jsx-self": {
|
|
1708
1807
|
"version": "7.27.1",
|
|
1709
1808
|
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
|
|
@@ -2334,13 +2433,13 @@
|
|
|
2334
2433
|
}
|
|
2335
2434
|
},
|
|
2336
2435
|
"node_modules/@eslint/compat": {
|
|
2337
|
-
"version": "2.0.
|
|
2338
|
-
"resolved": "https://registry.npmjs.org/@eslint/compat/-/compat-2.0.
|
|
2339
|
-
"integrity": "sha512-
|
|
2436
|
+
"version": "2.0.3",
|
|
2437
|
+
"resolved": "https://registry.npmjs.org/@eslint/compat/-/compat-2.0.3.tgz",
|
|
2438
|
+
"integrity": "sha512-SjIJhGigp8hmd1YGIBwh7Ovri7Kisl42GYFjrOyHhtfYGGoLW6teYi/5p8W50KSsawUPpuLOSmsq1bD0NGQLBw==",
|
|
2340
2439
|
"dev": true,
|
|
2341
2440
|
"license": "Apache-2.0",
|
|
2342
2441
|
"dependencies": {
|
|
2343
|
-
"@eslint/core": "^1.1.
|
|
2442
|
+
"@eslint/core": "^1.1.1"
|
|
2344
2443
|
},
|
|
2345
2444
|
"engines": {
|
|
2346
2445
|
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
@@ -2355,9 +2454,9 @@
|
|
|
2355
2454
|
}
|
|
2356
2455
|
},
|
|
2357
2456
|
"node_modules/@eslint/compat/node_modules/@eslint/core": {
|
|
2358
|
-
"version": "1.1.
|
|
2359
|
-
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.1.
|
|
2360
|
-
"integrity": "sha512
|
|
2457
|
+
"version": "1.1.1",
|
|
2458
|
+
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.1.1.tgz",
|
|
2459
|
+
"integrity": "sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==",
|
|
2361
2460
|
"dev": true,
|
|
2362
2461
|
"license": "Apache-2.0",
|
|
2363
2462
|
"dependencies": {
|
|
@@ -2368,15 +2467,15 @@
|
|
|
2368
2467
|
}
|
|
2369
2468
|
},
|
|
2370
2469
|
"node_modules/@eslint/config-array": {
|
|
2371
|
-
"version": "0.21.
|
|
2372
|
-
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.
|
|
2373
|
-
"integrity": "sha512-
|
|
2470
|
+
"version": "0.21.2",
|
|
2471
|
+
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz",
|
|
2472
|
+
"integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==",
|
|
2374
2473
|
"dev": true,
|
|
2375
2474
|
"license": "Apache-2.0",
|
|
2376
2475
|
"dependencies": {
|
|
2377
2476
|
"@eslint/object-schema": "^2.1.7",
|
|
2378
2477
|
"debug": "^4.3.1",
|
|
2379
|
-
"minimatch": "^3.1.
|
|
2478
|
+
"minimatch": "^3.1.5"
|
|
2380
2479
|
},
|
|
2381
2480
|
"engines": {
|
|
2382
2481
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2409,9 +2508,9 @@
|
|
|
2409
2508
|
}
|
|
2410
2509
|
},
|
|
2411
2510
|
"node_modules/@eslint/eslintrc": {
|
|
2412
|
-
"version": "3.3.
|
|
2413
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.
|
|
2414
|
-
"integrity": "sha512-
|
|
2511
|
+
"version": "3.3.5",
|
|
2512
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz",
|
|
2513
|
+
"integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==",
|
|
2415
2514
|
"dev": true,
|
|
2416
2515
|
"license": "MIT",
|
|
2417
2516
|
"dependencies": {
|
|
@@ -2422,7 +2521,7 @@
|
|
|
2422
2521
|
"ignore": "^5.2.0",
|
|
2423
2522
|
"import-fresh": "^3.2.1",
|
|
2424
2523
|
"js-yaml": "^4.1.1",
|
|
2425
|
-
"minimatch": "^3.1.
|
|
2524
|
+
"minimatch": "^3.1.5",
|
|
2426
2525
|
"strip-json-comments": "^3.1.1"
|
|
2427
2526
|
},
|
|
2428
2527
|
"engines": {
|
|
@@ -2470,9 +2569,9 @@
|
|
|
2470
2569
|
"license": "MIT"
|
|
2471
2570
|
},
|
|
2472
2571
|
"node_modules/@eslint/js": {
|
|
2473
|
-
"version": "9.39.
|
|
2474
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.
|
|
2475
|
-
"integrity": "sha512-
|
|
2572
|
+
"version": "9.39.4",
|
|
2573
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz",
|
|
2574
|
+
"integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==",
|
|
2476
2575
|
"dev": true,
|
|
2477
2576
|
"license": "MIT",
|
|
2478
2577
|
"engines": {
|
|
@@ -2551,9 +2650,9 @@
|
|
|
2551
2650
|
"optional": true
|
|
2552
2651
|
},
|
|
2553
2652
|
"node_modules/@hono/node-server": {
|
|
2554
|
-
"version": "1.19.
|
|
2555
|
-
"resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.
|
|
2556
|
-
"integrity": "sha512-
|
|
2653
|
+
"version": "1.19.10",
|
|
2654
|
+
"resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.10.tgz",
|
|
2655
|
+
"integrity": "sha512-hZ7nOssGqRgyV3FVVQdfi+U4q02uB23bpnYpdvNXkYTRRyWx84b7yf1ans+dnJ/7h41sGL3CeQTfO+ZGxuO+Iw==",
|
|
2557
2656
|
"dev": true,
|
|
2558
2657
|
"license": "MIT",
|
|
2559
2658
|
"engines": {
|
|
@@ -3715,6 +3814,13 @@
|
|
|
3715
3814
|
"win32"
|
|
3716
3815
|
]
|
|
3717
3816
|
},
|
|
3817
|
+
"node_modules/@mdn/browser-compat-data": {
|
|
3818
|
+
"version": "6.1.5",
|
|
3819
|
+
"resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-6.1.5.tgz",
|
|
3820
|
+
"integrity": "sha512-PzdZZzRhcXvKB0begee28n5lvwAcinGKYuLZOVxHAZm+n7y01ddEGfdS1ZXRuVcV+ndG6mSEAE8vgudom5UjYg==",
|
|
3821
|
+
"dev": true,
|
|
3822
|
+
"license": "CC0-1.0"
|
|
3823
|
+
},
|
|
3718
3824
|
"node_modules/@modelcontextprotocol/sdk": {
|
|
3719
3825
|
"version": "1.26.0",
|
|
3720
3826
|
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.26.0.tgz",
|
|
@@ -3834,6 +3940,25 @@
|
|
|
3834
3940
|
"win32"
|
|
3835
3941
|
]
|
|
3836
3942
|
},
|
|
3943
|
+
"node_modules/@nanostores/preact": {
|
|
3944
|
+
"version": "1.0.0",
|
|
3945
|
+
"resolved": "https://registry.npmjs.org/@nanostores/preact/-/preact-1.0.0.tgz",
|
|
3946
|
+
"integrity": "sha512-woHYvSwau1YtO9AEnGsh/jRPU2u5DTfNSrDHtKMZOeDUWV6EJfvyv7dJ7AaMps2I9uJcY6OlqXKkA9qTctEjyw==",
|
|
3947
|
+
"funding": [
|
|
3948
|
+
{
|
|
3949
|
+
"type": "github",
|
|
3950
|
+
"url": "https://github.com/sponsors/ai"
|
|
3951
|
+
}
|
|
3952
|
+
],
|
|
3953
|
+
"license": "MIT",
|
|
3954
|
+
"engines": {
|
|
3955
|
+
"node": "^20.0.0 || >=22.0.0"
|
|
3956
|
+
},
|
|
3957
|
+
"peerDependencies": {
|
|
3958
|
+
"nanostores": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^1.0.0",
|
|
3959
|
+
"preact": ">=10.0.0"
|
|
3960
|
+
}
|
|
3961
|
+
},
|
|
3837
3962
|
"node_modules/@nanostores/react": {
|
|
3838
3963
|
"version": "1.0.0",
|
|
3839
3964
|
"resolved": "https://registry.npmjs.org/@nanostores/react/-/react-1.0.0.tgz",
|
|
@@ -3854,9 +3979,9 @@
|
|
|
3854
3979
|
}
|
|
3855
3980
|
},
|
|
3856
3981
|
"node_modules/@nanostores/vue": {
|
|
3857
|
-
"version": "1.0
|
|
3858
|
-
"resolved": "https://registry.npmjs.org/@nanostores/vue/-/vue-1.0.
|
|
3859
|
-
"integrity": "sha512-
|
|
3982
|
+
"version": "1.1.0",
|
|
3983
|
+
"resolved": "https://registry.npmjs.org/@nanostores/vue/-/vue-1.1.0.tgz",
|
|
3984
|
+
"integrity": "sha512-14eY8/YA0AbtWkAjk8zHKxbjcuPubF+M7y9afQzg2b5VqRJcashwA0100vprau13BTBSynUmU6ZsU6x03YidjA==",
|
|
3860
3985
|
"funding": [
|
|
3861
3986
|
{
|
|
3862
3987
|
"type": "buymeacoffee",
|
|
@@ -4203,6 +4328,40 @@
|
|
|
4203
4328
|
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
4204
4329
|
}
|
|
4205
4330
|
},
|
|
4331
|
+
"node_modules/@nicolo-ribaudo/eslint-scope-5-internals": {
|
|
4332
|
+
"version": "5.1.1-v1",
|
|
4333
|
+
"resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz",
|
|
4334
|
+
"integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==",
|
|
4335
|
+
"dev": true,
|
|
4336
|
+
"license": "MIT",
|
|
4337
|
+
"dependencies": {
|
|
4338
|
+
"eslint-scope": "5.1.1"
|
|
4339
|
+
}
|
|
4340
|
+
},
|
|
4341
|
+
"node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": {
|
|
4342
|
+
"version": "5.1.1",
|
|
4343
|
+
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
|
|
4344
|
+
"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
|
|
4345
|
+
"dev": true,
|
|
4346
|
+
"license": "BSD-2-Clause",
|
|
4347
|
+
"dependencies": {
|
|
4348
|
+
"esrecurse": "^4.3.0",
|
|
4349
|
+
"estraverse": "^4.1.1"
|
|
4350
|
+
},
|
|
4351
|
+
"engines": {
|
|
4352
|
+
"node": ">=8.0.0"
|
|
4353
|
+
}
|
|
4354
|
+
},
|
|
4355
|
+
"node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": {
|
|
4356
|
+
"version": "4.3.0",
|
|
4357
|
+
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
|
|
4358
|
+
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
|
|
4359
|
+
"dev": true,
|
|
4360
|
+
"license": "BSD-2-Clause",
|
|
4361
|
+
"engines": {
|
|
4362
|
+
"node": ">=4.0"
|
|
4363
|
+
}
|
|
4364
|
+
},
|
|
4206
4365
|
"node_modules/@nodelib/fs.scandir": {
|
|
4207
4366
|
"version": "2.1.5",
|
|
4208
4367
|
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
|
@@ -4860,13 +5019,13 @@
|
|
|
4860
5019
|
}
|
|
4861
5020
|
},
|
|
4862
5021
|
"node_modules/@playwright/test": {
|
|
4863
|
-
"version": "1.
|
|
4864
|
-
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.
|
|
4865
|
-
"integrity": "sha512-
|
|
5022
|
+
"version": "1.58.2",
|
|
5023
|
+
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.58.2.tgz",
|
|
5024
|
+
"integrity": "sha512-akea+6bHYBBfA9uQqSYmlJXn61cTa+jbO87xVLCWbTqbWadRVmhxlXATaOjOgcBaWU4ePo0wB41KMFv3o35IXA==",
|
|
4866
5025
|
"dev": true,
|
|
4867
5026
|
"license": "Apache-2.0",
|
|
4868
5027
|
"dependencies": {
|
|
4869
|
-
"playwright": "1.
|
|
5028
|
+
"playwright": "1.58.2"
|
|
4870
5029
|
},
|
|
4871
5030
|
"bin": {
|
|
4872
5031
|
"playwright": "cli.js"
|
|
@@ -4881,6 +5040,115 @@
|
|
|
4881
5040
|
"integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==",
|
|
4882
5041
|
"license": "MIT"
|
|
4883
5042
|
},
|
|
5043
|
+
"node_modules/@preact/preset-vite": {
|
|
5044
|
+
"version": "2.10.3",
|
|
5045
|
+
"resolved": "https://registry.npmjs.org/@preact/preset-vite/-/preset-vite-2.10.3.tgz",
|
|
5046
|
+
"integrity": "sha512-1SiS+vFItpkNdBs7q585PSAIln0wBeBdcpJYbzPs1qipsb/FssnkUioNXuRsb8ZnU8YEQHr+3v8+/mzWSnTQmg==",
|
|
5047
|
+
"license": "MIT",
|
|
5048
|
+
"dependencies": {
|
|
5049
|
+
"@babel/plugin-transform-react-jsx": "^7.27.1",
|
|
5050
|
+
"@babel/plugin-transform-react-jsx-development": "^7.27.1",
|
|
5051
|
+
"@prefresh/vite": "^2.4.11",
|
|
5052
|
+
"@rollup/pluginutils": "^5.0.0",
|
|
5053
|
+
"babel-plugin-transform-hook-names": "^1.0.2",
|
|
5054
|
+
"debug": "^4.4.3",
|
|
5055
|
+
"picocolors": "^1.1.1",
|
|
5056
|
+
"vite-prerender-plugin": "^0.5.8"
|
|
5057
|
+
},
|
|
5058
|
+
"peerDependencies": {
|
|
5059
|
+
"@babel/core": "7.x",
|
|
5060
|
+
"vite": "2.x || 3.x || 4.x || 5.x || 6.x || 7.x"
|
|
5061
|
+
}
|
|
5062
|
+
},
|
|
5063
|
+
"node_modules/@preact/signals": {
|
|
5064
|
+
"version": "2.8.1",
|
|
5065
|
+
"resolved": "https://registry.npmjs.org/@preact/signals/-/signals-2.8.1.tgz",
|
|
5066
|
+
"integrity": "sha512-wX6U0SpcCukZTJBs5ChljvBZb3XmYzA5gd4vKHgX8wZZKaQCo2WHtmThdLx+mcVvlBa5u3XShC7ffbETJD4BiQ==",
|
|
5067
|
+
"license": "MIT",
|
|
5068
|
+
"dependencies": {
|
|
5069
|
+
"@preact/signals-core": "^1.13.0"
|
|
5070
|
+
},
|
|
5071
|
+
"funding": {
|
|
5072
|
+
"type": "opencollective",
|
|
5073
|
+
"url": "https://opencollective.com/preact"
|
|
5074
|
+
},
|
|
5075
|
+
"peerDependencies": {
|
|
5076
|
+
"preact": ">= 10.25.0 || >=11.0.0-0"
|
|
5077
|
+
}
|
|
5078
|
+
},
|
|
5079
|
+
"node_modules/@preact/signals-core": {
|
|
5080
|
+
"version": "1.13.0",
|
|
5081
|
+
"resolved": "https://registry.npmjs.org/@preact/signals-core/-/signals-core-1.13.0.tgz",
|
|
5082
|
+
"integrity": "sha512-slT6XeTCAbdql61GVLlGU4x7XHI7kCZV5Um5uhE4zLX4ApgiiXc0UYFvVOKq06xcovzp7p+61l68oPi563ARKg==",
|
|
5083
|
+
"license": "MIT",
|
|
5084
|
+
"funding": {
|
|
5085
|
+
"type": "opencollective",
|
|
5086
|
+
"url": "https://opencollective.com/preact"
|
|
5087
|
+
}
|
|
5088
|
+
},
|
|
5089
|
+
"node_modules/@prefresh/babel-plugin": {
|
|
5090
|
+
"version": "0.5.3",
|
|
5091
|
+
"resolved": "https://registry.npmjs.org/@prefresh/babel-plugin/-/babel-plugin-0.5.3.tgz",
|
|
5092
|
+
"integrity": "sha512-57LX2SHs4BX2s1IwCjNzTE2OJeEepRCNf1VTEpbNcUyHfMO68eeOWGDIt4ob9aYlW6PEWZ1SuwNikuoIXANDtQ==",
|
|
5093
|
+
"license": "MIT"
|
|
5094
|
+
},
|
|
5095
|
+
"node_modules/@prefresh/core": {
|
|
5096
|
+
"version": "1.5.9",
|
|
5097
|
+
"resolved": "https://registry.npmjs.org/@prefresh/core/-/core-1.5.9.tgz",
|
|
5098
|
+
"integrity": "sha512-IKBKCPaz34OFVC+adiQ2qaTF5qdztO2/4ZPf4KsRTgjKosWqxVXmEbxCiUydYZRY8GVie+DQlKzQr9gt6HQ+EQ==",
|
|
5099
|
+
"license": "MIT",
|
|
5100
|
+
"peerDependencies": {
|
|
5101
|
+
"preact": "^10.0.0 || ^11.0.0-0"
|
|
5102
|
+
}
|
|
5103
|
+
},
|
|
5104
|
+
"node_modules/@prefresh/utils": {
|
|
5105
|
+
"version": "1.2.1",
|
|
5106
|
+
"resolved": "https://registry.npmjs.org/@prefresh/utils/-/utils-1.2.1.tgz",
|
|
5107
|
+
"integrity": "sha512-vq/sIuN5nYfYzvyayXI4C2QkprfNaHUQ9ZX+3xLD8nL3rWyzpxOm1+K7RtMbhd+66QcaISViK7amjnheQ/4WZw==",
|
|
5108
|
+
"license": "MIT"
|
|
5109
|
+
},
|
|
5110
|
+
"node_modules/@prefresh/vite": {
|
|
5111
|
+
"version": "2.4.12",
|
|
5112
|
+
"resolved": "https://registry.npmjs.org/@prefresh/vite/-/vite-2.4.12.tgz",
|
|
5113
|
+
"integrity": "sha512-FY1fzXpUjiuosznMV0YM7XAOPZjB5FIdWS0W24+XnlxYkt9hNAwwsiKYn+cuTEoMtD/ZVazS5QVssBr9YhpCQA==",
|
|
5114
|
+
"license": "MIT",
|
|
5115
|
+
"dependencies": {
|
|
5116
|
+
"@babel/core": "^7.22.1",
|
|
5117
|
+
"@prefresh/babel-plugin": "^0.5.2",
|
|
5118
|
+
"@prefresh/core": "^1.5.0",
|
|
5119
|
+
"@prefresh/utils": "^1.2.0",
|
|
5120
|
+
"@rollup/pluginutils": "^4.2.1"
|
|
5121
|
+
},
|
|
5122
|
+
"peerDependencies": {
|
|
5123
|
+
"preact": "^10.4.0 || ^11.0.0-0",
|
|
5124
|
+
"vite": ">=2.0.0"
|
|
5125
|
+
}
|
|
5126
|
+
},
|
|
5127
|
+
"node_modules/@prefresh/vite/node_modules/@rollup/pluginutils": {
|
|
5128
|
+
"version": "4.2.1",
|
|
5129
|
+
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz",
|
|
5130
|
+
"integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==",
|
|
5131
|
+
"license": "MIT",
|
|
5132
|
+
"dependencies": {
|
|
5133
|
+
"estree-walker": "^2.0.1",
|
|
5134
|
+
"picomatch": "^2.2.2"
|
|
5135
|
+
},
|
|
5136
|
+
"engines": {
|
|
5137
|
+
"node": ">= 8.0.0"
|
|
5138
|
+
}
|
|
5139
|
+
},
|
|
5140
|
+
"node_modules/@prefresh/vite/node_modules/picomatch": {
|
|
5141
|
+
"version": "2.3.1",
|
|
5142
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
5143
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
5144
|
+
"license": "MIT",
|
|
5145
|
+
"engines": {
|
|
5146
|
+
"node": ">=8.6"
|
|
5147
|
+
},
|
|
5148
|
+
"funding": {
|
|
5149
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
5150
|
+
}
|
|
5151
|
+
},
|
|
4884
5152
|
"node_modules/@rolldown/binding-android-arm64": {
|
|
4885
5153
|
"version": "1.0.0-rc.4",
|
|
4886
5154
|
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.4.tgz",
|
|
@@ -5450,14 +5718,14 @@
|
|
|
5450
5718
|
"license": "MIT"
|
|
5451
5719
|
},
|
|
5452
5720
|
"node_modules/@schematics/angular": {
|
|
5453
|
-
"version": "21.2.
|
|
5454
|
-
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.2.
|
|
5455
|
-
"integrity": "sha512-
|
|
5721
|
+
"version": "21.2.1",
|
|
5722
|
+
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.2.1.tgz",
|
|
5723
|
+
"integrity": "sha512-DjrHRMoILhbZ6tc7aNZWuHA1wCm1iU/JN1TxAwNEyIBgyU3Fx8Z5baK4w0TCpOIPt0RLWVgP2L7kka9aXWCUFA==",
|
|
5456
5724
|
"dev": true,
|
|
5457
5725
|
"license": "MIT",
|
|
5458
5726
|
"dependencies": {
|
|
5459
|
-
"@angular-devkit/core": "21.2.
|
|
5460
|
-
"@angular-devkit/schematics": "21.2.
|
|
5727
|
+
"@angular-devkit/core": "21.2.1",
|
|
5728
|
+
"@angular-devkit/schematics": "21.2.1",
|
|
5461
5729
|
"jsonc-parser": "3.3.1"
|
|
5462
5730
|
},
|
|
5463
5731
|
"engines": {
|
|
@@ -5760,6 +6028,52 @@
|
|
|
5760
6028
|
"dev": true,
|
|
5761
6029
|
"license": "MIT"
|
|
5762
6030
|
},
|
|
6031
|
+
"node_modules/@testing-library/preact": {
|
|
6032
|
+
"version": "3.2.4",
|
|
6033
|
+
"resolved": "https://registry.npmjs.org/@testing-library/preact/-/preact-3.2.4.tgz",
|
|
6034
|
+
"integrity": "sha512-F+kJ243LP6VmEK1M809unzTE/ijg+bsMNuiRN0JEDIJBELKKDNhdgC/WrUSZ7klwJvtlO3wQZ9ix+jhObG07Fg==",
|
|
6035
|
+
"dev": true,
|
|
6036
|
+
"license": "MIT",
|
|
6037
|
+
"dependencies": {
|
|
6038
|
+
"@testing-library/dom": "^8.11.1"
|
|
6039
|
+
},
|
|
6040
|
+
"engines": {
|
|
6041
|
+
"node": ">= 12"
|
|
6042
|
+
},
|
|
6043
|
+
"peerDependencies": {
|
|
6044
|
+
"preact": ">=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0"
|
|
6045
|
+
}
|
|
6046
|
+
},
|
|
6047
|
+
"node_modules/@testing-library/preact/node_modules/@testing-library/dom": {
|
|
6048
|
+
"version": "8.20.1",
|
|
6049
|
+
"resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz",
|
|
6050
|
+
"integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==",
|
|
6051
|
+
"dev": true,
|
|
6052
|
+
"license": "MIT",
|
|
6053
|
+
"dependencies": {
|
|
6054
|
+
"@babel/code-frame": "^7.10.4",
|
|
6055
|
+
"@babel/runtime": "^7.12.5",
|
|
6056
|
+
"@types/aria-query": "^5.0.1",
|
|
6057
|
+
"aria-query": "5.1.3",
|
|
6058
|
+
"chalk": "^4.1.0",
|
|
6059
|
+
"dom-accessibility-api": "^0.5.9",
|
|
6060
|
+
"lz-string": "^1.5.0",
|
|
6061
|
+
"pretty-format": "^27.0.2"
|
|
6062
|
+
},
|
|
6063
|
+
"engines": {
|
|
6064
|
+
"node": ">=12"
|
|
6065
|
+
}
|
|
6066
|
+
},
|
|
6067
|
+
"node_modules/@testing-library/preact/node_modules/aria-query": {
|
|
6068
|
+
"version": "5.1.3",
|
|
6069
|
+
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz",
|
|
6070
|
+
"integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==",
|
|
6071
|
+
"dev": true,
|
|
6072
|
+
"license": "Apache-2.0",
|
|
6073
|
+
"dependencies": {
|
|
6074
|
+
"deep-equal": "^2.0.5"
|
|
6075
|
+
}
|
|
6076
|
+
},
|
|
5763
6077
|
"node_modules/@testing-library/react": {
|
|
5764
6078
|
"version": "16.3.2",
|
|
5765
6079
|
"resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.2.tgz",
|
|
@@ -6176,9 +6490,9 @@
|
|
|
6176
6490
|
}
|
|
6177
6491
|
},
|
|
6178
6492
|
"node_modules/@types/node": {
|
|
6179
|
-
"version": "25.3.
|
|
6180
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.3.
|
|
6181
|
-
"integrity": "sha512-
|
|
6493
|
+
"version": "25.3.5",
|
|
6494
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.3.5.tgz",
|
|
6495
|
+
"integrity": "sha512-oX8xrhvpiyRCQkG1MFchB09f+cXftgIXb3a7UUa4Y3wpmZPw5tyZGTLWhlESOLq1Rq6oDlc8npVU2/9xiCuXMA==",
|
|
6182
6496
|
"devOptional": true,
|
|
6183
6497
|
"license": "MIT",
|
|
6184
6498
|
"dependencies": {
|
|
@@ -7065,25 +7379,25 @@
|
|
|
7065
7379
|
}
|
|
7066
7380
|
},
|
|
7067
7381
|
"node_modules/angular-eslint": {
|
|
7068
|
-
"version": "21.
|
|
7069
|
-
"resolved": "https://registry.npmjs.org/angular-eslint/-/angular-eslint-21.
|
|
7070
|
-
"integrity": "sha512-
|
|
7382
|
+
"version": "21.3.0",
|
|
7383
|
+
"resolved": "https://registry.npmjs.org/angular-eslint/-/angular-eslint-21.3.0.tgz",
|
|
7384
|
+
"integrity": "sha512-K4+I41fSxzOavbv87EOnG5rdXiscs31j5pIAQG0aX21OHdSSjFCKOAQNmj8zv5OxUuYj5uYRToR3PuKQSN6i/A==",
|
|
7071
7385
|
"dev": true,
|
|
7072
7386
|
"license": "MIT",
|
|
7073
7387
|
"dependencies": {
|
|
7074
7388
|
"@angular-devkit/core": ">= 21.0.0 < 22.0.0",
|
|
7075
7389
|
"@angular-devkit/schematics": ">= 21.0.0 < 22.0.0",
|
|
7076
|
-
"@angular-eslint/builder": "21.
|
|
7077
|
-
"@angular-eslint/eslint-plugin": "21.
|
|
7078
|
-
"@angular-eslint/eslint-plugin-template": "21.
|
|
7079
|
-
"@angular-eslint/schematics": "21.
|
|
7080
|
-
"@angular-eslint/template-parser": "21.
|
|
7390
|
+
"@angular-eslint/builder": "21.3.0",
|
|
7391
|
+
"@angular-eslint/eslint-plugin": "21.3.0",
|
|
7392
|
+
"@angular-eslint/eslint-plugin-template": "21.3.0",
|
|
7393
|
+
"@angular-eslint/schematics": "21.3.0",
|
|
7394
|
+
"@angular-eslint/template-parser": "21.3.0",
|
|
7081
7395
|
"@typescript-eslint/types": "^8.0.0",
|
|
7082
7396
|
"@typescript-eslint/utils": "^8.0.0"
|
|
7083
7397
|
},
|
|
7084
7398
|
"peerDependencies": {
|
|
7085
7399
|
"@angular/cli": ">= 21.0.0 < 22.0.0",
|
|
7086
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
7400
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
7087
7401
|
"typescript": "*",
|
|
7088
7402
|
"typescript-eslint": "^8.0.0"
|
|
7089
7403
|
}
|
|
@@ -7389,6 +7703,23 @@
|
|
|
7389
7703
|
"node": ">=12"
|
|
7390
7704
|
}
|
|
7391
7705
|
},
|
|
7706
|
+
"node_modules/ast-metadata-inferer": {
|
|
7707
|
+
"version": "0.8.1",
|
|
7708
|
+
"resolved": "https://registry.npmjs.org/ast-metadata-inferer/-/ast-metadata-inferer-0.8.1.tgz",
|
|
7709
|
+
"integrity": "sha512-ht3Dm6Zr7SXv6t1Ra6gFo0+kLDglHGrEbYihTkcycrbHw7WCcuhBzPlJYHEsIpycaUwzsJHje+vUcxXUX4ztTA==",
|
|
7710
|
+
"dev": true,
|
|
7711
|
+
"license": "MIT",
|
|
7712
|
+
"dependencies": {
|
|
7713
|
+
"@mdn/browser-compat-data": "^5.6.19"
|
|
7714
|
+
}
|
|
7715
|
+
},
|
|
7716
|
+
"node_modules/ast-metadata-inferer/node_modules/@mdn/browser-compat-data": {
|
|
7717
|
+
"version": "5.7.6",
|
|
7718
|
+
"resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-5.7.6.tgz",
|
|
7719
|
+
"integrity": "sha512-7xdrMX0Wk7grrTZQwAoy1GkvPMFoizStUoL+VmtUkAxegbCCec+3FKwOM6yc/uGU5+BEczQHXAlWiqvM8JeENg==",
|
|
7720
|
+
"dev": true,
|
|
7721
|
+
"license": "CC0-1.0"
|
|
7722
|
+
},
|
|
7392
7723
|
"node_modules/astral-regex": {
|
|
7393
7724
|
"version": "2.0.0",
|
|
7394
7725
|
"resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
|
|
@@ -7584,6 +7915,15 @@
|
|
|
7584
7915
|
"node": ">= 0.4"
|
|
7585
7916
|
}
|
|
7586
7917
|
},
|
|
7918
|
+
"node_modules/babel-plugin-transform-hook-names": {
|
|
7919
|
+
"version": "1.0.2",
|
|
7920
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-transform-hook-names/-/babel-plugin-transform-hook-names-1.0.2.tgz",
|
|
7921
|
+
"integrity": "sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==",
|
|
7922
|
+
"license": "MIT",
|
|
7923
|
+
"peerDependencies": {
|
|
7924
|
+
"@babel/core": "^7.12.10"
|
|
7925
|
+
}
|
|
7926
|
+
},
|
|
7587
7927
|
"node_modules/bail": {
|
|
7588
7928
|
"version": "2.0.2",
|
|
7589
7929
|
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
|
|
@@ -9398,25 +9738,25 @@
|
|
|
9398
9738
|
}
|
|
9399
9739
|
},
|
|
9400
9740
|
"node_modules/eslint": {
|
|
9401
|
-
"version": "9.39.
|
|
9402
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.
|
|
9403
|
-
"integrity": "sha512-
|
|
9741
|
+
"version": "9.39.4",
|
|
9742
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz",
|
|
9743
|
+
"integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==",
|
|
9404
9744
|
"dev": true,
|
|
9405
9745
|
"license": "MIT",
|
|
9406
9746
|
"dependencies": {
|
|
9407
9747
|
"@eslint-community/eslint-utils": "^4.8.0",
|
|
9408
9748
|
"@eslint-community/regexpp": "^4.12.1",
|
|
9409
|
-
"@eslint/config-array": "^0.21.
|
|
9749
|
+
"@eslint/config-array": "^0.21.2",
|
|
9410
9750
|
"@eslint/config-helpers": "^0.4.2",
|
|
9411
9751
|
"@eslint/core": "^0.17.0",
|
|
9412
|
-
"@eslint/eslintrc": "^3.3.
|
|
9413
|
-
"@eslint/js": "9.39.
|
|
9752
|
+
"@eslint/eslintrc": "^3.3.5",
|
|
9753
|
+
"@eslint/js": "9.39.4",
|
|
9414
9754
|
"@eslint/plugin-kit": "^0.4.1",
|
|
9415
9755
|
"@humanfs/node": "^0.16.6",
|
|
9416
9756
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
9417
9757
|
"@humanwhocodes/retry": "^0.4.2",
|
|
9418
9758
|
"@types/estree": "^1.0.6",
|
|
9419
|
-
"ajv": "^6.
|
|
9759
|
+
"ajv": "^6.14.0",
|
|
9420
9760
|
"chalk": "^4.0.0",
|
|
9421
9761
|
"cross-spawn": "^7.0.6",
|
|
9422
9762
|
"debug": "^4.3.2",
|
|
@@ -9435,7 +9775,7 @@
|
|
|
9435
9775
|
"is-glob": "^4.0.0",
|
|
9436
9776
|
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
9437
9777
|
"lodash.merge": "^4.6.2",
|
|
9438
|
-
"minimatch": "^3.1.
|
|
9778
|
+
"minimatch": "^3.1.5",
|
|
9439
9779
|
"natural-compare": "^1.4.0",
|
|
9440
9780
|
"optionator": "^0.9.3"
|
|
9441
9781
|
},
|
|
@@ -9473,6 +9813,53 @@
|
|
|
9473
9813
|
"eslint": ">=6.0.0"
|
|
9474
9814
|
}
|
|
9475
9815
|
},
|
|
9816
|
+
"node_modules/eslint-config-preact": {
|
|
9817
|
+
"version": "2.0.0",
|
|
9818
|
+
"resolved": "https://registry.npmjs.org/eslint-config-preact/-/eslint-config-preact-2.0.0.tgz",
|
|
9819
|
+
"integrity": "sha512-TFj70lEE7y3R9DQAFJ/clRfVmyaXdwE3q56gA9zm+iTmlpYjtZKtV1jv/jtgdF2LqgvJjlGlGE1rHVwE9yNdkg==",
|
|
9820
|
+
"dev": true,
|
|
9821
|
+
"license": "MIT",
|
|
9822
|
+
"dependencies": {
|
|
9823
|
+
"@babel/core": "^7.13.16",
|
|
9824
|
+
"@babel/eslint-parser": "^7.27.5",
|
|
9825
|
+
"@babel/plugin-syntax-class-properties": "^7.12.13",
|
|
9826
|
+
"@babel/plugin-syntax-jsx": "^7.12.13",
|
|
9827
|
+
"@eslint/js": "^9.29.0",
|
|
9828
|
+
"eslint-plugin-compat": "^6.0.2",
|
|
9829
|
+
"eslint-plugin-react": "^7.37.5",
|
|
9830
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
9831
|
+
"globals": "^16.2.0"
|
|
9832
|
+
},
|
|
9833
|
+
"peerDependencies": {
|
|
9834
|
+
"eslint": "^8.57.1 || ^9.0.0"
|
|
9835
|
+
}
|
|
9836
|
+
},
|
|
9837
|
+
"node_modules/eslint-config-preact/node_modules/eslint-plugin-react-hooks": {
|
|
9838
|
+
"version": "5.2.0",
|
|
9839
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz",
|
|
9840
|
+
"integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==",
|
|
9841
|
+
"dev": true,
|
|
9842
|
+
"license": "MIT",
|
|
9843
|
+
"engines": {
|
|
9844
|
+
"node": ">=10"
|
|
9845
|
+
},
|
|
9846
|
+
"peerDependencies": {
|
|
9847
|
+
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
|
|
9848
|
+
}
|
|
9849
|
+
},
|
|
9850
|
+
"node_modules/eslint-config-preact/node_modules/globals": {
|
|
9851
|
+
"version": "16.5.0",
|
|
9852
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz",
|
|
9853
|
+
"integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==",
|
|
9854
|
+
"dev": true,
|
|
9855
|
+
"license": "MIT",
|
|
9856
|
+
"engines": {
|
|
9857
|
+
"node": ">=18"
|
|
9858
|
+
},
|
|
9859
|
+
"funding": {
|
|
9860
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
9861
|
+
}
|
|
9862
|
+
},
|
|
9476
9863
|
"node_modules/eslint-config-prettier": {
|
|
9477
9864
|
"version": "10.1.8",
|
|
9478
9865
|
"resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz",
|
|
@@ -9599,6 +9986,41 @@
|
|
|
9599
9986
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
9600
9987
|
}
|
|
9601
9988
|
},
|
|
9989
|
+
"node_modules/eslint-plugin-compat": {
|
|
9990
|
+
"version": "6.2.1",
|
|
9991
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-compat/-/eslint-plugin-compat-6.2.1.tgz",
|
|
9992
|
+
"integrity": "sha512-gLKqUH+lQcCL+HzsROUjBDvakc5Zaga51Y4ZAkPCXc41pzKBfyluqTr2j8zOx8QQQb7zyglu1LVoL5aSNWf2SQ==",
|
|
9993
|
+
"dev": true,
|
|
9994
|
+
"license": "MIT",
|
|
9995
|
+
"dependencies": {
|
|
9996
|
+
"@mdn/browser-compat-data": "^6.1.1",
|
|
9997
|
+
"ast-metadata-inferer": "^0.8.1",
|
|
9998
|
+
"browserslist": "^4.25.2",
|
|
9999
|
+
"find-up": "^5.0.0",
|
|
10000
|
+
"globals": "^15.7.0",
|
|
10001
|
+
"lodash.memoize": "^4.1.2",
|
|
10002
|
+
"semver": "^7.6.2"
|
|
10003
|
+
},
|
|
10004
|
+
"engines": {
|
|
10005
|
+
"node": ">=18.x"
|
|
10006
|
+
},
|
|
10007
|
+
"peerDependencies": {
|
|
10008
|
+
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
|
|
10009
|
+
}
|
|
10010
|
+
},
|
|
10011
|
+
"node_modules/eslint-plugin-compat/node_modules/globals": {
|
|
10012
|
+
"version": "15.15.0",
|
|
10013
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz",
|
|
10014
|
+
"integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==",
|
|
10015
|
+
"dev": true,
|
|
10016
|
+
"license": "MIT",
|
|
10017
|
+
"engines": {
|
|
10018
|
+
"node": ">=18"
|
|
10019
|
+
},
|
|
10020
|
+
"funding": {
|
|
10021
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
10022
|
+
}
|
|
10023
|
+
},
|
|
9602
10024
|
"node_modules/eslint-plugin-import": {
|
|
9603
10025
|
"version": "2.32.0",
|
|
9604
10026
|
"resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz",
|
|
@@ -9726,9 +10148,9 @@
|
|
|
9726
10148
|
}
|
|
9727
10149
|
},
|
|
9728
10150
|
"node_modules/eslint-plugin-playwright": {
|
|
9729
|
-
"version": "2.
|
|
9730
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-playwright/-/eslint-plugin-playwright-2.
|
|
9731
|
-
"integrity": "sha512-
|
|
10151
|
+
"version": "2.9.0",
|
|
10152
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-playwright/-/eslint-plugin-playwright-2.9.0.tgz",
|
|
10153
|
+
"integrity": "sha512-k3xrG6YzrallWNFMoGUjMNeu3SFFKXN79KJQBD2PkM4PasJegqV2Up+mPY5od2UmPKQGT+MeIhCmWH8r5eYuQQ==",
|
|
9732
10154
|
"dev": true,
|
|
9733
10155
|
"license": "MIT",
|
|
9734
10156
|
"dependencies": {
|
|
@@ -10202,13 +10624,13 @@
|
|
|
10202
10624
|
}
|
|
10203
10625
|
},
|
|
10204
10626
|
"node_modules/express-rate-limit": {
|
|
10205
|
-
"version": "8.2.
|
|
10206
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.2.
|
|
10207
|
-
"integrity": "sha512-
|
|
10627
|
+
"version": "8.2.2",
|
|
10628
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.2.2.tgz",
|
|
10629
|
+
"integrity": "sha512-Ybv7bqtOgA914MLwaHWVFXMpMYeR1MQu/D+z2MaLYteqBsTIp9sY3AU7mGNLMJv8eLg8uQMpE20I+L2Lv49nSg==",
|
|
10208
10630
|
"dev": true,
|
|
10209
10631
|
"license": "MIT",
|
|
10210
10632
|
"dependencies": {
|
|
10211
|
-
"ip-address": "10.0
|
|
10633
|
+
"ip-address": "10.1.0"
|
|
10212
10634
|
},
|
|
10213
10635
|
"engines": {
|
|
10214
10636
|
"node": ">= 16"
|
|
@@ -10810,9 +11232,9 @@
|
|
|
10810
11232
|
}
|
|
10811
11233
|
},
|
|
10812
11234
|
"node_modules/globals": {
|
|
10813
|
-
"version": "17.
|
|
10814
|
-
"resolved": "https://registry.npmjs.org/globals/-/globals-17.
|
|
10815
|
-
"integrity": "sha512-
|
|
11235
|
+
"version": "17.4.0",
|
|
11236
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-17.4.0.tgz",
|
|
11237
|
+
"integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==",
|
|
10816
11238
|
"dev": true,
|
|
10817
11239
|
"license": "MIT",
|
|
10818
11240
|
"engines": {
|
|
@@ -10876,9 +11298,9 @@
|
|
|
10876
11298
|
}
|
|
10877
11299
|
},
|
|
10878
11300
|
"node_modules/happy-dom": {
|
|
10879
|
-
"version": "20.
|
|
10880
|
-
"resolved": "https://registry.npmjs.org/happy-dom/-/happy-dom-20.
|
|
10881
|
-
"integrity": "sha512-
|
|
11301
|
+
"version": "20.8.3",
|
|
11302
|
+
"resolved": "https://registry.npmjs.org/happy-dom/-/happy-dom-20.8.3.tgz",
|
|
11303
|
+
"integrity": "sha512-lMHQRRwIPyJ70HV0kkFT7jH/gXzSI7yDkQFe07E2flwmNDFoWUTRMKpW2sglsnpeA7b6S2TJPp98EbQxai8eaQ==",
|
|
10882
11304
|
"devOptional": true,
|
|
10883
11305
|
"license": "MIT",
|
|
10884
11306
|
"dependencies": {
|
|
@@ -11177,6 +11599,15 @@
|
|
|
11177
11599
|
"url": "https://opencollective.com/unified"
|
|
11178
11600
|
}
|
|
11179
11601
|
},
|
|
11602
|
+
"node_modules/he": {
|
|
11603
|
+
"version": "1.2.0",
|
|
11604
|
+
"resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
|
|
11605
|
+
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
|
|
11606
|
+
"license": "MIT",
|
|
11607
|
+
"bin": {
|
|
11608
|
+
"he": "bin/he"
|
|
11609
|
+
}
|
|
11610
|
+
},
|
|
11180
11611
|
"node_modules/hermes-estree": {
|
|
11181
11612
|
"version": "0.25.1",
|
|
11182
11613
|
"resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
|
|
@@ -11195,9 +11626,9 @@
|
|
|
11195
11626
|
}
|
|
11196
11627
|
},
|
|
11197
11628
|
"node_modules/hono": {
|
|
11198
|
-
"version": "4.12.
|
|
11199
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.
|
|
11200
|
-
"integrity": "sha512-
|
|
11629
|
+
"version": "4.12.5",
|
|
11630
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.5.tgz",
|
|
11631
|
+
"integrity": "sha512-3qq+FUBtlTHhtYxbxheZgY8NIFnkkC/MR8u5TTsr7YZ3wixryQ3cCwn3iZbg8p8B88iDBBAYSfZDS75t8MN7Vg==",
|
|
11201
11632
|
"dev": true,
|
|
11202
11633
|
"license": "MIT",
|
|
11203
11634
|
"engines": {
|
|
@@ -11413,9 +11844,9 @@
|
|
|
11413
11844
|
}
|
|
11414
11845
|
},
|
|
11415
11846
|
"node_modules/immutable": {
|
|
11416
|
-
"version": "5.1.
|
|
11417
|
-
"resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.
|
|
11418
|
-
"integrity": "sha512-
|
|
11847
|
+
"version": "5.1.5",
|
|
11848
|
+
"resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.5.tgz",
|
|
11849
|
+
"integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==",
|
|
11419
11850
|
"license": "MIT"
|
|
11420
11851
|
},
|
|
11421
11852
|
"node_modules/import-fresh": {
|
|
@@ -11505,9 +11936,9 @@
|
|
|
11505
11936
|
}
|
|
11506
11937
|
},
|
|
11507
11938
|
"node_modules/ip-address": {
|
|
11508
|
-
"version": "10.0
|
|
11509
|
-
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.0.
|
|
11510
|
-
"integrity": "sha512-
|
|
11939
|
+
"version": "10.1.0",
|
|
11940
|
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.1.0.tgz",
|
|
11941
|
+
"integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==",
|
|
11511
11942
|
"dev": true,
|
|
11512
11943
|
"license": "MIT",
|
|
11513
11944
|
"engines": {
|
|
@@ -12497,6 +12928,13 @@
|
|
|
12497
12928
|
"dev": true,
|
|
12498
12929
|
"license": "MIT"
|
|
12499
12930
|
},
|
|
12931
|
+
"node_modules/lodash.memoize": {
|
|
12932
|
+
"version": "4.1.2",
|
|
12933
|
+
"resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
|
|
12934
|
+
"integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
|
|
12935
|
+
"dev": true,
|
|
12936
|
+
"license": "MIT"
|
|
12937
|
+
},
|
|
12500
12938
|
"node_modules/lodash.merge": {
|
|
12501
12939
|
"version": "4.6.2",
|
|
12502
12940
|
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
|
|
@@ -14044,6 +14482,16 @@
|
|
|
14044
14482
|
"node": "^20.17.0 || >=22.9.0"
|
|
14045
14483
|
}
|
|
14046
14484
|
},
|
|
14485
|
+
"node_modules/node-html-parser": {
|
|
14486
|
+
"version": "6.1.13",
|
|
14487
|
+
"resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.13.tgz",
|
|
14488
|
+
"integrity": "sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==",
|
|
14489
|
+
"license": "MIT",
|
|
14490
|
+
"dependencies": {
|
|
14491
|
+
"css-select": "^5.1.0",
|
|
14492
|
+
"he": "1.2.0"
|
|
14493
|
+
}
|
|
14494
|
+
},
|
|
14047
14495
|
"node_modules/node-mock-http": {
|
|
14048
14496
|
"version": "1.0.4",
|
|
14049
14497
|
"resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.4.tgz",
|
|
@@ -15005,13 +15453,13 @@
|
|
|
15005
15453
|
}
|
|
15006
15454
|
},
|
|
15007
15455
|
"node_modules/playwright": {
|
|
15008
|
-
"version": "1.
|
|
15009
|
-
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.
|
|
15010
|
-
"integrity": "sha512-
|
|
15456
|
+
"version": "1.58.2",
|
|
15457
|
+
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.58.2.tgz",
|
|
15458
|
+
"integrity": "sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A==",
|
|
15011
15459
|
"dev": true,
|
|
15012
15460
|
"license": "Apache-2.0",
|
|
15013
15461
|
"dependencies": {
|
|
15014
|
-
"playwright-core": "1.
|
|
15462
|
+
"playwright-core": "1.58.2"
|
|
15015
15463
|
},
|
|
15016
15464
|
"bin": {
|
|
15017
15465
|
"playwright": "cli.js"
|
|
@@ -15024,9 +15472,9 @@
|
|
|
15024
15472
|
}
|
|
15025
15473
|
},
|
|
15026
15474
|
"node_modules/playwright-core": {
|
|
15027
|
-
"version": "1.
|
|
15028
|
-
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.
|
|
15029
|
-
"integrity": "sha512-
|
|
15475
|
+
"version": "1.58.2",
|
|
15476
|
+
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.58.2.tgz",
|
|
15477
|
+
"integrity": "sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg==",
|
|
15030
15478
|
"dev": true,
|
|
15031
15479
|
"license": "Apache-2.0",
|
|
15032
15480
|
"bin": {
|
|
@@ -15202,6 +15650,25 @@
|
|
|
15202
15650
|
"node": ">=4"
|
|
15203
15651
|
}
|
|
15204
15652
|
},
|
|
15653
|
+
"node_modules/preact": {
|
|
15654
|
+
"version": "10.28.4",
|
|
15655
|
+
"resolved": "https://registry.npmjs.org/preact/-/preact-10.28.4.tgz",
|
|
15656
|
+
"integrity": "sha512-uKFfOHWuSNpRFVTnljsCluEFq57OKT+0QdOiQo8XWnQ/pSvg7OpX5eNOejELXJMWy+BwM2nobz0FkvzmnpCNsQ==",
|
|
15657
|
+
"license": "MIT",
|
|
15658
|
+
"funding": {
|
|
15659
|
+
"type": "opencollective",
|
|
15660
|
+
"url": "https://opencollective.com/preact"
|
|
15661
|
+
}
|
|
15662
|
+
},
|
|
15663
|
+
"node_modules/preact-render-to-string": {
|
|
15664
|
+
"version": "6.6.6",
|
|
15665
|
+
"resolved": "https://registry.npmjs.org/preact-render-to-string/-/preact-render-to-string-6.6.6.tgz",
|
|
15666
|
+
"integrity": "sha512-EfqZJytnjJldV+YaaqhthU2oXsEf5e+6rDv957p+zxAvNfFLQOPfvBOTncscQ+akzu6Wrl7s3Pa0LjUQmWJsGQ==",
|
|
15667
|
+
"license": "MIT",
|
|
15668
|
+
"peerDependencies": {
|
|
15669
|
+
"preact": ">=10 || >= 11.0.0-0"
|
|
15670
|
+
}
|
|
15671
|
+
},
|
|
15205
15672
|
"node_modules/prelude-ls": {
|
|
15206
15673
|
"version": "1.2.1",
|
|
15207
15674
|
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
|
|
@@ -15229,9 +15696,9 @@
|
|
|
15229
15696
|
}
|
|
15230
15697
|
},
|
|
15231
15698
|
"node_modules/prettier-plugin-svelte": {
|
|
15232
|
-
"version": "3.5.
|
|
15233
|
-
"resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.5.
|
|
15234
|
-
"integrity": "sha512-
|
|
15699
|
+
"version": "3.5.1",
|
|
15700
|
+
"resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.5.1.tgz",
|
|
15701
|
+
"integrity": "sha512-65+fr5+cgIKWKiqM1Doum4uX6bY8iFCdztvvp2RcF+AJoieaw9kJOFMNcJo/bkmKYsxFaM9OsVZK/gWauG/5mg==",
|
|
15235
15702
|
"dev": true,
|
|
15236
15703
|
"license": "MIT",
|
|
15237
15704
|
"peerDependencies": {
|
|
@@ -16156,9 +16623,9 @@
|
|
|
16156
16623
|
}
|
|
16157
16624
|
},
|
|
16158
16625
|
"node_modules/sax": {
|
|
16159
|
-
"version": "1.
|
|
16160
|
-
"resolved": "https://registry.npmjs.org/sax/-/sax-1.
|
|
16161
|
-
"integrity": "sha512-
|
|
16626
|
+
"version": "1.5.0",
|
|
16627
|
+
"resolved": "https://registry.npmjs.org/sax/-/sax-1.5.0.tgz",
|
|
16628
|
+
"integrity": "sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==",
|
|
16162
16629
|
"license": "BlueOak-1.0.0",
|
|
16163
16630
|
"engines": {
|
|
16164
16631
|
"node": ">=11.0.0"
|
|
@@ -16486,6 +16953,15 @@
|
|
|
16486
16953
|
"node": "^20.17.0 || >=22.9.0"
|
|
16487
16954
|
}
|
|
16488
16955
|
},
|
|
16956
|
+
"node_modules/simple-code-frame": {
|
|
16957
|
+
"version": "1.3.0",
|
|
16958
|
+
"resolved": "https://registry.npmjs.org/simple-code-frame/-/simple-code-frame-1.3.0.tgz",
|
|
16959
|
+
"integrity": "sha512-MB4pQmETUBlNs62BBeRjIFGeuy/x6gGKh7+eRUemn1rCFhqo7K+4slPqsyizCbcbYLnaYqaoZ2FWsZ/jN06D8w==",
|
|
16960
|
+
"license": "MIT",
|
|
16961
|
+
"dependencies": {
|
|
16962
|
+
"kolorist": "^1.6.0"
|
|
16963
|
+
}
|
|
16964
|
+
},
|
|
16489
16965
|
"node_modules/sirv": {
|
|
16490
16966
|
"version": "3.0.2",
|
|
16491
16967
|
"resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz",
|
|
@@ -16706,6 +17182,15 @@
|
|
|
16706
17182
|
"node": "^20.17.0 || >=22.9.0"
|
|
16707
17183
|
}
|
|
16708
17184
|
},
|
|
17185
|
+
"node_modules/stack-trace": {
|
|
17186
|
+
"version": "1.0.0-pre2",
|
|
17187
|
+
"resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-1.0.0-pre2.tgz",
|
|
17188
|
+
"integrity": "sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A==",
|
|
17189
|
+
"license": "MIT",
|
|
17190
|
+
"engines": {
|
|
17191
|
+
"node": ">=16"
|
|
17192
|
+
}
|
|
17193
|
+
},
|
|
16709
17194
|
"node_modules/stackback": {
|
|
16710
17195
|
"version": "0.0.2",
|
|
16711
17196
|
"resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
|
|
@@ -17049,9 +17534,9 @@
|
|
|
17049
17534
|
}
|
|
17050
17535
|
},
|
|
17051
17536
|
"node_modules/svelte": {
|
|
17052
|
-
"version": "5.53.
|
|
17053
|
-
"resolved": "https://registry.npmjs.org/svelte/-/svelte-5.53.
|
|
17054
|
-
"integrity": "sha512-
|
|
17537
|
+
"version": "5.53.7",
|
|
17538
|
+
"resolved": "https://registry.npmjs.org/svelte/-/svelte-5.53.7.tgz",
|
|
17539
|
+
"integrity": "sha512-uxck1KI7JWtlfP3H6HOWi/94soAl23jsGJkBzN2BAWcQng0+lTrRNhxActFqORgnO9BHVd1hKJhG+ljRuIUWfQ==",
|
|
17055
17540
|
"license": "MIT",
|
|
17056
17541
|
"dependencies": {
|
|
17057
17542
|
"@jridgewell/remapping": "^2.3.4",
|
|
@@ -17076,9 +17561,9 @@
|
|
|
17076
17561
|
}
|
|
17077
17562
|
},
|
|
17078
17563
|
"node_modules/svelte-eslint-parser": {
|
|
17079
|
-
"version": "1.
|
|
17080
|
-
"resolved": "https://registry.npmjs.org/svelte-eslint-parser/-/svelte-eslint-parser-1.
|
|
17081
|
-
"integrity": "sha512-
|
|
17564
|
+
"version": "1.6.0",
|
|
17565
|
+
"resolved": "https://registry.npmjs.org/svelte-eslint-parser/-/svelte-eslint-parser-1.6.0.tgz",
|
|
17566
|
+
"integrity": "sha512-qoB1ehychT6OxEtQAqc/guSqLS20SlA53Uijl7x375s8nlUT0lb9ol/gzraEEatQwsyPTJo87s2CmKL9Xab+Uw==",
|
|
17082
17567
|
"dev": true,
|
|
17083
17568
|
"license": "MIT",
|
|
17084
17569
|
"dependencies": {
|
|
@@ -17092,7 +17577,7 @@
|
|
|
17092
17577
|
},
|
|
17093
17578
|
"engines": {
|
|
17094
17579
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0",
|
|
17095
|
-
"pnpm": "10.30.
|
|
17580
|
+
"pnpm": "10.30.3"
|
|
17096
17581
|
},
|
|
17097
17582
|
"funding": {
|
|
17098
17583
|
"url": "https://github.com/sponsors/ota-meshi"
|
|
@@ -17130,9 +17615,9 @@
|
|
|
17130
17615
|
}
|
|
17131
17616
|
},
|
|
17132
17617
|
"node_modules/svgo": {
|
|
17133
|
-
"version": "4.0.
|
|
17134
|
-
"resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.
|
|
17135
|
-
"integrity": "sha512-
|
|
17618
|
+
"version": "4.0.1",
|
|
17619
|
+
"resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.1.tgz",
|
|
17620
|
+
"integrity": "sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==",
|
|
17136
17621
|
"license": "MIT",
|
|
17137
17622
|
"dependencies": {
|
|
17138
17623
|
"commander": "^11.1.0",
|
|
@@ -17141,7 +17626,7 @@
|
|
|
17141
17626
|
"css-what": "^6.1.0",
|
|
17142
17627
|
"csso": "^5.0.5",
|
|
17143
17628
|
"picocolors": "^1.1.1",
|
|
17144
|
-
"sax": "^1.
|
|
17629
|
+
"sax": "^1.5.0"
|
|
17145
17630
|
},
|
|
17146
17631
|
"bin": {
|
|
17147
17632
|
"svgo": "bin/svgo.js"
|
|
@@ -17243,9 +17728,9 @@
|
|
|
17243
17728
|
}
|
|
17244
17729
|
},
|
|
17245
17730
|
"node_modules/tar": {
|
|
17246
|
-
"version": "7.5.
|
|
17247
|
-
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.
|
|
17248
|
-
"integrity": "sha512-
|
|
17731
|
+
"version": "7.5.10",
|
|
17732
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.10.tgz",
|
|
17733
|
+
"integrity": "sha512-8mOPs1//5q/rlkNSPcCegA6hiHJYDmSLEI8aMH/CdSQJNWztHC9WHNam5zdQlfpTwB9Xp7IBEsHfV5LKMJGVAw==",
|
|
17249
17734
|
"dev": true,
|
|
17250
17735
|
"license": "BlueOak-1.0.0",
|
|
17251
17736
|
"dependencies": {
|
|
@@ -18319,6 +18804,23 @@
|
|
|
18319
18804
|
"vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0"
|
|
18320
18805
|
}
|
|
18321
18806
|
},
|
|
18807
|
+
"node_modules/vite-prerender-plugin": {
|
|
18808
|
+
"version": "0.5.12",
|
|
18809
|
+
"resolved": "https://registry.npmjs.org/vite-prerender-plugin/-/vite-prerender-plugin-0.5.12.tgz",
|
|
18810
|
+
"integrity": "sha512-EiwhbMn+flg14EysbLTmZSzq8NGTxhytgK3bf4aGRF1evWLGwZiHiUJ1KZDvbxgKbMf2pG6fJWGEa3UZXOnR1g==",
|
|
18811
|
+
"license": "MIT",
|
|
18812
|
+
"dependencies": {
|
|
18813
|
+
"kolorist": "^1.8.0",
|
|
18814
|
+
"magic-string": "0.x >= 0.26.0",
|
|
18815
|
+
"node-html-parser": "^6.1.12",
|
|
18816
|
+
"simple-code-frame": "^1.3.0",
|
|
18817
|
+
"source-map": "^0.7.4",
|
|
18818
|
+
"stack-trace": "^1.0.0-pre2"
|
|
18819
|
+
},
|
|
18820
|
+
"peerDependencies": {
|
|
18821
|
+
"vite": "5.x || 6.x || 7.x"
|
|
18822
|
+
}
|
|
18823
|
+
},
|
|
18322
18824
|
"node_modules/vite/node_modules/@esbuild/aix-ppc64": {
|
|
18323
18825
|
"version": "0.25.12",
|
|
18324
18826
|
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|