plum-e2e 1.0.9 → 1.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/.claude/settings.local.json +16 -1
- package/.vscode/settings.json +10 -0
- package/README.md +151 -37
- package/backend/_scaffold/features/LoginPage.feature +45 -3
- package/backend/_scaffold/pages/HomepagePage.ts +7 -0
- package/backend/_scaffold/pages/LoginPage.ts +37 -13
- package/backend/_scaffold/step_definitions/HomepageSteps.ts +6 -0
- package/backend/_scaffold/step_definitions/LoginSteps.ts +30 -4
- package/backend/_scaffold/utils/browser.ts +33 -0
- package/backend/_scaffold/utils/hooks.ts +8 -29
- package/backend/_scaffold/utils/utils.ts +3 -9
- package/backend/config/scripts/create-settings.js +7 -14
- package/backend/config/scripts/create-step.mjs +268 -0
- package/backend/config/scripts/generate-report.js +31 -75
- package/backend/config/scripts/run-tests.js +19 -4
- package/backend/package-lock.json +56 -641
- package/backend/package.json +4 -1
- package/backend/routes/reports.routes.js +6 -10
- package/backend/services/envService.js +4 -10
- package/backend/services/reportService.js +70 -20
- package/backend/services/testService.js +99 -24
- package/backend/tsconfig.json +2 -2
- package/backend/websockets/socketHandler.js +12 -6
- package/bin/plum.js +49 -3
- package/frontend/package-lock.json +436 -135
- package/frontend/package.json +1 -1
- package/frontend/src/app.css +241 -6
- package/frontend/src/app.html +14 -1
- package/frontend/src/lib/api/reports.js +68 -0
- package/frontend/src/lib/api/schedules.js +64 -0
- package/frontend/src/lib/api/tests.js +41 -0
- package/frontend/src/lib/components/layout/Nav.svelte +304 -0
- package/frontend/src/lib/components/layout/PageShell.svelte +28 -0
- package/frontend/src/lib/components/layout/RunnerPanel.svelte +378 -0
- package/frontend/src/lib/components/ui/Badge.svelte +63 -0
- package/frontend/src/lib/components/ui/Button.svelte +117 -0
- package/frontend/src/lib/components/ui/Modal.svelte +140 -0
- package/frontend/src/lib/components/ui/Pagination.svelte +100 -0
- package/frontend/src/lib/components/ui/Terminal.svelte +100 -0
- package/frontend/src/lib/stores/runner.js +55 -0
- package/frontend/src/lib/stores/theme.js +47 -0
- package/frontend/src/routes/+layout.svelte +7 -12
- package/frontend/src/routes/+page.svelte +690 -142
- package/frontend/src/routes/reports/+page.svelte +395 -125
- package/frontend/src/routes/reports/[slug]/+page.svelte +749 -0
- package/frontend/src/routes/scheduled-tests/+page.svelte +267 -303
- package/frontend/svelte.config.js +1 -4
- package/frontend/tailwind.config.js +2 -23
- package/package.json +2 -2
- package/backend/_scaffold/utils/world.ts +0 -25
- package/frontend/src/routes/components/Navigation.svelte +0 -53
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@sveltejs/adapter-auto": "^4.0.0",
|
|
15
|
+
"@sveltejs/adapter-node": "^5.5.4",
|
|
15
16
|
"@sveltejs/kit": "^2.16.0",
|
|
16
17
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
17
18
|
"autoprefixer": "^10.4.20",
|
|
18
|
-
"daisyui": "^4.12.23",
|
|
19
19
|
"postcss": "^8.5.1",
|
|
20
20
|
"svelte": "^5.0.0",
|
|
21
21
|
"tailwindcss": "^3.4.17",
|
|
@@ -563,248 +563,540 @@
|
|
|
563
563
|
"integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==",
|
|
564
564
|
"dev": true
|
|
565
565
|
},
|
|
566
|
+
"node_modules/@rollup/plugin-commonjs": {
|
|
567
|
+
"version": "29.0.3",
|
|
568
|
+
"resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-29.0.3.tgz",
|
|
569
|
+
"integrity": "sha512-ZaOxZceP7SOUW7Lqw5IRVweSQYWaeIPnXIGLiB690EBA3FGJTO40EEr2L5yZplJWsgTCogILRSpcAe7+U0Otdg==",
|
|
570
|
+
"dev": true,
|
|
571
|
+
"license": "MIT",
|
|
572
|
+
"dependencies": {
|
|
573
|
+
"@rollup/pluginutils": "^5.0.1",
|
|
574
|
+
"commondir": "^1.0.1",
|
|
575
|
+
"estree-walker": "^2.0.2",
|
|
576
|
+
"fdir": "^6.2.0",
|
|
577
|
+
"is-reference": "1.2.1",
|
|
578
|
+
"magic-string": "^0.30.3",
|
|
579
|
+
"picomatch": "^4.0.2"
|
|
580
|
+
},
|
|
581
|
+
"engines": {
|
|
582
|
+
"node": ">=16.0.0 || 14 >= 14.17"
|
|
583
|
+
},
|
|
584
|
+
"peerDependencies": {
|
|
585
|
+
"rollup": "^2.68.0||^3.0.0||^4.0.0"
|
|
586
|
+
},
|
|
587
|
+
"peerDependenciesMeta": {
|
|
588
|
+
"rollup": {
|
|
589
|
+
"optional": true
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"node_modules/@rollup/plugin-commonjs/node_modules/fdir": {
|
|
594
|
+
"version": "6.5.0",
|
|
595
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
596
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
597
|
+
"dev": true,
|
|
598
|
+
"license": "MIT",
|
|
599
|
+
"engines": {
|
|
600
|
+
"node": ">=12.0.0"
|
|
601
|
+
},
|
|
602
|
+
"peerDependencies": {
|
|
603
|
+
"picomatch": "^3 || ^4"
|
|
604
|
+
},
|
|
605
|
+
"peerDependenciesMeta": {
|
|
606
|
+
"picomatch": {
|
|
607
|
+
"optional": true
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"node_modules/@rollup/plugin-commonjs/node_modules/is-reference": {
|
|
612
|
+
"version": "1.2.1",
|
|
613
|
+
"resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz",
|
|
614
|
+
"integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==",
|
|
615
|
+
"dev": true,
|
|
616
|
+
"license": "MIT",
|
|
617
|
+
"dependencies": {
|
|
618
|
+
"@types/estree": "*"
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
"node_modules/@rollup/plugin-commonjs/node_modules/picomatch": {
|
|
622
|
+
"version": "4.0.4",
|
|
623
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
624
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
625
|
+
"dev": true,
|
|
626
|
+
"license": "MIT",
|
|
627
|
+
"engines": {
|
|
628
|
+
"node": ">=12"
|
|
629
|
+
},
|
|
630
|
+
"funding": {
|
|
631
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
"node_modules/@rollup/plugin-json": {
|
|
635
|
+
"version": "6.1.0",
|
|
636
|
+
"resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz",
|
|
637
|
+
"integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==",
|
|
638
|
+
"dev": true,
|
|
639
|
+
"license": "MIT",
|
|
640
|
+
"dependencies": {
|
|
641
|
+
"@rollup/pluginutils": "^5.1.0"
|
|
642
|
+
},
|
|
643
|
+
"engines": {
|
|
644
|
+
"node": ">=14.0.0"
|
|
645
|
+
},
|
|
646
|
+
"peerDependencies": {
|
|
647
|
+
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
|
|
648
|
+
},
|
|
649
|
+
"peerDependenciesMeta": {
|
|
650
|
+
"rollup": {
|
|
651
|
+
"optional": true
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
},
|
|
655
|
+
"node_modules/@rollup/plugin-node-resolve": {
|
|
656
|
+
"version": "16.0.3",
|
|
657
|
+
"resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-16.0.3.tgz",
|
|
658
|
+
"integrity": "sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==",
|
|
659
|
+
"dev": true,
|
|
660
|
+
"license": "MIT",
|
|
661
|
+
"dependencies": {
|
|
662
|
+
"@rollup/pluginutils": "^5.0.1",
|
|
663
|
+
"@types/resolve": "1.20.2",
|
|
664
|
+
"deepmerge": "^4.2.2",
|
|
665
|
+
"is-module": "^1.0.0",
|
|
666
|
+
"resolve": "^1.22.1"
|
|
667
|
+
},
|
|
668
|
+
"engines": {
|
|
669
|
+
"node": ">=14.0.0"
|
|
670
|
+
},
|
|
671
|
+
"peerDependencies": {
|
|
672
|
+
"rollup": "^2.78.0||^3.0.0||^4.0.0"
|
|
673
|
+
},
|
|
674
|
+
"peerDependenciesMeta": {
|
|
675
|
+
"rollup": {
|
|
676
|
+
"optional": true
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"node_modules/@rollup/pluginutils": {
|
|
681
|
+
"version": "5.4.0",
|
|
682
|
+
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.4.0.tgz",
|
|
683
|
+
"integrity": "sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==",
|
|
684
|
+
"dev": true,
|
|
685
|
+
"license": "MIT",
|
|
686
|
+
"dependencies": {
|
|
687
|
+
"@types/estree": "^1.0.0",
|
|
688
|
+
"estree-walker": "^2.0.2",
|
|
689
|
+
"picomatch": "^4.0.2"
|
|
690
|
+
},
|
|
691
|
+
"engines": {
|
|
692
|
+
"node": ">=14.0.0"
|
|
693
|
+
},
|
|
694
|
+
"peerDependencies": {
|
|
695
|
+
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
|
|
696
|
+
},
|
|
697
|
+
"peerDependenciesMeta": {
|
|
698
|
+
"rollup": {
|
|
699
|
+
"optional": true
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"node_modules/@rollup/pluginutils/node_modules/picomatch": {
|
|
704
|
+
"version": "4.0.4",
|
|
705
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
706
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
707
|
+
"dev": true,
|
|
708
|
+
"license": "MIT",
|
|
709
|
+
"engines": {
|
|
710
|
+
"node": ">=12"
|
|
711
|
+
},
|
|
712
|
+
"funding": {
|
|
713
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
566
716
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
567
|
-
"version": "4.
|
|
568
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
|
569
|
-
"integrity": "sha512-
|
|
717
|
+
"version": "4.62.0",
|
|
718
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.62.0.tgz",
|
|
719
|
+
"integrity": "sha512-IPIQ55ythEHkfEd9jMEi32OQ7SxURsGA43JI22lj01OLZNt2NUbJX8YUHxkVWyQ6daHPNn0truF5nSj3DQp6YQ==",
|
|
570
720
|
"cpu": [
|
|
571
721
|
"arm"
|
|
572
722
|
],
|
|
573
723
|
"dev": true,
|
|
724
|
+
"license": "MIT",
|
|
574
725
|
"optional": true,
|
|
575
726
|
"os": [
|
|
576
727
|
"android"
|
|
577
728
|
]
|
|
578
729
|
},
|
|
579
730
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
580
|
-
"version": "4.
|
|
581
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
|
582
|
-
"integrity": "sha512-
|
|
731
|
+
"version": "4.62.0",
|
|
732
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.62.0.tgz",
|
|
733
|
+
"integrity": "sha512-M6s9cr10MibETyo8JsOkq+Lo1+lU6hcvb1MApnUql5qte/5hMEgzlN8/ReIKNfRV8rrqX50W1BX9zoUhC192RA==",
|
|
583
734
|
"cpu": [
|
|
584
735
|
"arm64"
|
|
585
736
|
],
|
|
586
737
|
"dev": true,
|
|
738
|
+
"license": "MIT",
|
|
587
739
|
"optional": true,
|
|
588
740
|
"os": [
|
|
589
741
|
"android"
|
|
590
742
|
]
|
|
591
743
|
},
|
|
592
744
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
593
|
-
"version": "4.
|
|
594
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
|
595
|
-
"integrity": "sha512-
|
|
745
|
+
"version": "4.62.0",
|
|
746
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.62.0.tgz",
|
|
747
|
+
"integrity": "sha512-BqCoMoIbn0keKys+dEAdBa70EtOwV1bEsQCUgU9FdiZmmMge/Zk7LlkYGqbrdHR+Frnt0E1FOanly+rlwvvQzw==",
|
|
596
748
|
"cpu": [
|
|
597
749
|
"arm64"
|
|
598
750
|
],
|
|
599
751
|
"dev": true,
|
|
752
|
+
"license": "MIT",
|
|
600
753
|
"optional": true,
|
|
601
754
|
"os": [
|
|
602
755
|
"darwin"
|
|
603
756
|
]
|
|
604
757
|
},
|
|
605
758
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
606
|
-
"version": "4.
|
|
607
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
|
608
|
-
"integrity": "sha512-
|
|
759
|
+
"version": "4.62.0",
|
|
760
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.62.0.tgz",
|
|
761
|
+
"integrity": "sha512-SIMzST3VFNXDAbeIWDWiFCNM5qncUBDWaEV7NfE7oZbDt2mgfW4MvbKdbYiGOLoM32gbTv608UMd0XktEYSD7w==",
|
|
609
762
|
"cpu": [
|
|
610
763
|
"x64"
|
|
611
764
|
],
|
|
612
765
|
"dev": true,
|
|
766
|
+
"license": "MIT",
|
|
613
767
|
"optional": true,
|
|
614
768
|
"os": [
|
|
615
769
|
"darwin"
|
|
616
770
|
]
|
|
617
771
|
},
|
|
618
772
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
619
|
-
"version": "4.
|
|
620
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.
|
|
621
|
-
"integrity": "sha512-
|
|
773
|
+
"version": "4.62.0",
|
|
774
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.62.0.tgz",
|
|
775
|
+
"integrity": "sha512-ezjfSQMP7ArdUsbBwbQIfwAlhE84I2iVnzQNCFSveqV42q+BmKlzVpf7mxv5EchLcoWU4y6/heFzVg1F+hodUQ==",
|
|
622
776
|
"cpu": [
|
|
623
777
|
"arm64"
|
|
624
778
|
],
|
|
625
779
|
"dev": true,
|
|
780
|
+
"license": "MIT",
|
|
626
781
|
"optional": true,
|
|
627
782
|
"os": [
|
|
628
783
|
"freebsd"
|
|
629
784
|
]
|
|
630
785
|
},
|
|
631
786
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
632
|
-
"version": "4.
|
|
633
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.
|
|
634
|
-
"integrity": "sha512-
|
|
787
|
+
"version": "4.62.0",
|
|
788
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.62.0.tgz",
|
|
789
|
+
"integrity": "sha512-9+qTWGW9AZRhnUgwtTwzNwcPlL87ngkeN0LA+q1bADvmY9aNvWaF2TFW8BZgnQPYxpDI7+rMVLivcd4V737TAQ==",
|
|
635
790
|
"cpu": [
|
|
636
791
|
"x64"
|
|
637
792
|
],
|
|
638
793
|
"dev": true,
|
|
794
|
+
"license": "MIT",
|
|
639
795
|
"optional": true,
|
|
640
796
|
"os": [
|
|
641
797
|
"freebsd"
|
|
642
798
|
]
|
|
643
799
|
},
|
|
644
800
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
645
|
-
"version": "4.
|
|
646
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.
|
|
647
|
-
"integrity": "sha512-
|
|
801
|
+
"version": "4.62.0",
|
|
802
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.62.0.tgz",
|
|
803
|
+
"integrity": "sha512-T1dMEQhXA/jkJ/jyMIw9IovK8bSUq7A8kLIlvZTb/6YIVsp2zLavr4F3oyllHWo7eIVJRyE5n3tUjQJEbE1IuQ==",
|
|
648
804
|
"cpu": [
|
|
649
805
|
"arm"
|
|
650
806
|
],
|
|
651
807
|
"dev": true,
|
|
808
|
+
"libc": [
|
|
809
|
+
"glibc"
|
|
810
|
+
],
|
|
811
|
+
"license": "MIT",
|
|
652
812
|
"optional": true,
|
|
653
813
|
"os": [
|
|
654
814
|
"linux"
|
|
655
815
|
]
|
|
656
816
|
},
|
|
657
817
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
658
|
-
"version": "4.
|
|
659
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.
|
|
660
|
-
"integrity": "sha512-
|
|
818
|
+
"version": "4.62.0",
|
|
819
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.62.0.tgz",
|
|
820
|
+
"integrity": "sha512-2as0LgT7qQpyceQq6VUJYnumUMUrgGQCWIiDIN9DE0/tglsk6o66uCB4f3djRawAltvfCNLyZZrsqbPA6inCsA==",
|
|
661
821
|
"cpu": [
|
|
662
822
|
"arm"
|
|
663
823
|
],
|
|
664
824
|
"dev": true,
|
|
825
|
+
"libc": [
|
|
826
|
+
"musl"
|
|
827
|
+
],
|
|
828
|
+
"license": "MIT",
|
|
665
829
|
"optional": true,
|
|
666
830
|
"os": [
|
|
667
831
|
"linux"
|
|
668
832
|
]
|
|
669
833
|
},
|
|
670
834
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
671
|
-
"version": "4.
|
|
672
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.
|
|
673
|
-
"integrity": "sha512-
|
|
835
|
+
"version": "4.62.0",
|
|
836
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.62.0.tgz",
|
|
837
|
+
"integrity": "sha512-bVURMg+6eNN9C/yc0aVjooZcwTTtYF4YW3xta5pP0//r3o1V8gXEHXWCndj47w/HhwsFroZrFhR+6uQP5T0n0g==",
|
|
674
838
|
"cpu": [
|
|
675
839
|
"arm64"
|
|
676
840
|
],
|
|
677
841
|
"dev": true,
|
|
842
|
+
"libc": [
|
|
843
|
+
"glibc"
|
|
844
|
+
],
|
|
845
|
+
"license": "MIT",
|
|
678
846
|
"optional": true,
|
|
679
847
|
"os": [
|
|
680
848
|
"linux"
|
|
681
849
|
]
|
|
682
850
|
},
|
|
683
851
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
684
|
-
"version": "4.
|
|
685
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.
|
|
686
|
-
"integrity": "sha512-
|
|
852
|
+
"version": "4.62.0",
|
|
853
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.62.0.tgz",
|
|
854
|
+
"integrity": "sha512-Ful8pM/2yYI83PViWdFdpZhdI8HJ5qsXANe5atypbHDf+KIBBDsZsbyy8hbXnULVvW9NsTh5DHwbcBftyLTfiw==",
|
|
687
855
|
"cpu": [
|
|
688
856
|
"arm64"
|
|
689
857
|
],
|
|
690
858
|
"dev": true,
|
|
859
|
+
"libc": [
|
|
860
|
+
"musl"
|
|
861
|
+
],
|
|
862
|
+
"license": "MIT",
|
|
863
|
+
"optional": true,
|
|
864
|
+
"os": [
|
|
865
|
+
"linux"
|
|
866
|
+
]
|
|
867
|
+
},
|
|
868
|
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
869
|
+
"version": "4.62.0",
|
|
870
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.62.0.tgz",
|
|
871
|
+
"integrity": "sha512-9Gp/DgrkzfUBmNPVTyPTvay+4xEP7M/clXpj3efXBcm6uTIVIgDg4rqUpqKXvLEuFRVuEpSAOkhgNeecvaZ4Cg==",
|
|
872
|
+
"cpu": [
|
|
873
|
+
"loong64"
|
|
874
|
+
],
|
|
875
|
+
"dev": true,
|
|
876
|
+
"libc": [
|
|
877
|
+
"glibc"
|
|
878
|
+
],
|
|
879
|
+
"license": "MIT",
|
|
691
880
|
"optional": true,
|
|
692
881
|
"os": [
|
|
693
882
|
"linux"
|
|
694
883
|
]
|
|
695
884
|
},
|
|
696
|
-
"node_modules/@rollup/rollup-linux-
|
|
697
|
-
"version": "4.
|
|
698
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-
|
|
699
|
-
"integrity": "sha512-
|
|
885
|
+
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
886
|
+
"version": "4.62.0",
|
|
887
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.62.0.tgz",
|
|
888
|
+
"integrity": "sha512-m9tsJz54LUXkSYM8+8PG81B9IKK5r+2T0clMq4QrS16xFosufU7firBDAZEsDheDs7wTlP7h3++S7lMsU955HA==",
|
|
700
889
|
"cpu": [
|
|
701
890
|
"loong64"
|
|
702
891
|
],
|
|
703
892
|
"dev": true,
|
|
893
|
+
"libc": [
|
|
894
|
+
"musl"
|
|
895
|
+
],
|
|
896
|
+
"license": "MIT",
|
|
897
|
+
"optional": true,
|
|
898
|
+
"os": [
|
|
899
|
+
"linux"
|
|
900
|
+
]
|
|
901
|
+
},
|
|
902
|
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
903
|
+
"version": "4.62.0",
|
|
904
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.62.0.tgz",
|
|
905
|
+
"integrity": "sha512-3UvJ5PNVU16aJf6M3tFI24pWzAl2/ynfbyRN3ICyQajK1lSkrnVYNnLz3v04J32qKa0FczJc22zeToc0lr2A3w==",
|
|
906
|
+
"cpu": [
|
|
907
|
+
"ppc64"
|
|
908
|
+
],
|
|
909
|
+
"dev": true,
|
|
910
|
+
"libc": [
|
|
911
|
+
"glibc"
|
|
912
|
+
],
|
|
913
|
+
"license": "MIT",
|
|
704
914
|
"optional": true,
|
|
705
915
|
"os": [
|
|
706
916
|
"linux"
|
|
707
917
|
]
|
|
708
918
|
},
|
|
709
|
-
"node_modules/@rollup/rollup-linux-
|
|
710
|
-
"version": "4.
|
|
711
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-
|
|
712
|
-
"integrity": "sha512-
|
|
919
|
+
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
920
|
+
"version": "4.62.0",
|
|
921
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.62.0.tgz",
|
|
922
|
+
"integrity": "sha512-vRWUAbYLGHBZS6Q8Msb2sfnf1fvJf+47t8l/TwOerM2qArzy+IeNMTHrYLHXh95h8MoatPHI5hhSZNs+mGXKPg==",
|
|
713
923
|
"cpu": [
|
|
714
924
|
"ppc64"
|
|
715
925
|
],
|
|
716
926
|
"dev": true,
|
|
927
|
+
"libc": [
|
|
928
|
+
"musl"
|
|
929
|
+
],
|
|
930
|
+
"license": "MIT",
|
|
717
931
|
"optional": true,
|
|
718
932
|
"os": [
|
|
719
933
|
"linux"
|
|
720
934
|
]
|
|
721
935
|
},
|
|
722
936
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
723
|
-
"version": "4.
|
|
724
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.
|
|
725
|
-
"integrity": "sha512-
|
|
937
|
+
"version": "4.62.0",
|
|
938
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.62.0.tgz",
|
|
939
|
+
"integrity": "sha512-c00T5SYENHAt86cfW47URaP3Us5vLC/4QO7GYud1G5VNRffCwwCuBspwqYrriuJB+5m0WFzClCn9wed0FBjKvg==",
|
|
940
|
+
"cpu": [
|
|
941
|
+
"riscv64"
|
|
942
|
+
],
|
|
943
|
+
"dev": true,
|
|
944
|
+
"libc": [
|
|
945
|
+
"glibc"
|
|
946
|
+
],
|
|
947
|
+
"license": "MIT",
|
|
948
|
+
"optional": true,
|
|
949
|
+
"os": [
|
|
950
|
+
"linux"
|
|
951
|
+
]
|
|
952
|
+
},
|
|
953
|
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
954
|
+
"version": "4.62.0",
|
|
955
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.62.0.tgz",
|
|
956
|
+
"integrity": "sha512-krrCDilhXOwFkSkO3Wm9I/f9H0L92XHHwy2fwxjukxIbh0dem8gZqOW5Y8BsHrpJv5qwlRBV+Wl4ZFyRWhUpwg==",
|
|
726
957
|
"cpu": [
|
|
727
958
|
"riscv64"
|
|
728
959
|
],
|
|
729
960
|
"dev": true,
|
|
961
|
+
"libc": [
|
|
962
|
+
"musl"
|
|
963
|
+
],
|
|
964
|
+
"license": "MIT",
|
|
730
965
|
"optional": true,
|
|
731
966
|
"os": [
|
|
732
967
|
"linux"
|
|
733
968
|
]
|
|
734
969
|
},
|
|
735
970
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
736
|
-
"version": "4.
|
|
737
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.
|
|
738
|
-
"integrity": "sha512-
|
|
971
|
+
"version": "4.62.0",
|
|
972
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.62.0.tgz",
|
|
973
|
+
"integrity": "sha512-7pfYFSTc4/rUC/FtAI0Qp6QthDBCIi6/AuP1xYqFk5vanI6KnL5dWKP60OM/05LOsbwTmIcvr6eXC4CJuJ75IA==",
|
|
739
974
|
"cpu": [
|
|
740
975
|
"s390x"
|
|
741
976
|
],
|
|
742
977
|
"dev": true,
|
|
978
|
+
"libc": [
|
|
979
|
+
"glibc"
|
|
980
|
+
],
|
|
981
|
+
"license": "MIT",
|
|
743
982
|
"optional": true,
|
|
744
983
|
"os": [
|
|
745
984
|
"linux"
|
|
746
985
|
]
|
|
747
986
|
},
|
|
748
987
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
749
|
-
"version": "4.
|
|
750
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.
|
|
751
|
-
"integrity": "sha512-
|
|
988
|
+
"version": "4.62.0",
|
|
989
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.62.0.tgz",
|
|
990
|
+
"integrity": "sha512-7SDIalKeIpG0Ifogbbdn58HmSotYMlf23K3dCJEmiVd9Fg36Vmni82iPQec27N3wY4Bvbxftkxz6vSx9OcouTg==",
|
|
752
991
|
"cpu": [
|
|
753
992
|
"x64"
|
|
754
993
|
],
|
|
755
994
|
"dev": true,
|
|
995
|
+
"libc": [
|
|
996
|
+
"glibc"
|
|
997
|
+
],
|
|
998
|
+
"license": "MIT",
|
|
756
999
|
"optional": true,
|
|
757
1000
|
"os": [
|
|
758
1001
|
"linux"
|
|
759
1002
|
]
|
|
760
1003
|
},
|
|
761
1004
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
762
|
-
"version": "4.
|
|
763
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.
|
|
764
|
-
"integrity": "sha512-
|
|
1005
|
+
"version": "4.62.0",
|
|
1006
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.62.0.tgz",
|
|
1007
|
+
"integrity": "sha512-eRZevouTH2i1HeAVLqJuLnt256krQkGY0TN6WsTmsIhuzbh457HuWDMakKwmi0Cjadux983CoSr8Lim2QhUIFw==",
|
|
765
1008
|
"cpu": [
|
|
766
1009
|
"x64"
|
|
767
1010
|
],
|
|
768
1011
|
"dev": true,
|
|
1012
|
+
"libc": [
|
|
1013
|
+
"musl"
|
|
1014
|
+
],
|
|
1015
|
+
"license": "MIT",
|
|
769
1016
|
"optional": true,
|
|
770
1017
|
"os": [
|
|
771
1018
|
"linux"
|
|
772
1019
|
]
|
|
773
1020
|
},
|
|
1021
|
+
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
1022
|
+
"version": "4.62.0",
|
|
1023
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.62.0.tgz",
|
|
1024
|
+
"integrity": "sha512-3oVS7FLGa4U1qcvao9ylGxrjXZyUQqR8UwxEcnUEyPX53O/C/mKDZegNXTdHCP+h3e6ta/f1EN38Yif1mmZHYg==",
|
|
1025
|
+
"cpu": [
|
|
1026
|
+
"x64"
|
|
1027
|
+
],
|
|
1028
|
+
"dev": true,
|
|
1029
|
+
"license": "MIT",
|
|
1030
|
+
"optional": true,
|
|
1031
|
+
"os": [
|
|
1032
|
+
"openbsd"
|
|
1033
|
+
]
|
|
1034
|
+
},
|
|
1035
|
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1036
|
+
"version": "4.62.0",
|
|
1037
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.62.0.tgz",
|
|
1038
|
+
"integrity": "sha512-yTB9TgfWj5wHe5QgktAgXTLLot1gvEjl1NiPPAUiCs4oPrIWFl5V4nC3GrkNdj9LaAU4s94nVrGbGOCqUpyWsg==",
|
|
1039
|
+
"cpu": [
|
|
1040
|
+
"arm64"
|
|
1041
|
+
],
|
|
1042
|
+
"dev": true,
|
|
1043
|
+
"license": "MIT",
|
|
1044
|
+
"optional": true,
|
|
1045
|
+
"os": [
|
|
1046
|
+
"openharmony"
|
|
1047
|
+
]
|
|
1048
|
+
},
|
|
774
1049
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
775
|
-
"version": "4.
|
|
776
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.
|
|
777
|
-
"integrity": "sha512-
|
|
1050
|
+
"version": "4.62.0",
|
|
1051
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.62.0.tgz",
|
|
1052
|
+
"integrity": "sha512-5LOhoaesY3doG1c+ac/2JtgREpKoJr5bUHH8tKY0V8di7+uSV6BwLs2PlR0/yzefGOkR+wE7ZolZphHCsyG5Rw==",
|
|
778
1053
|
"cpu": [
|
|
779
1054
|
"arm64"
|
|
780
1055
|
],
|
|
781
1056
|
"dev": true,
|
|
1057
|
+
"license": "MIT",
|
|
782
1058
|
"optional": true,
|
|
783
1059
|
"os": [
|
|
784
1060
|
"win32"
|
|
785
1061
|
]
|
|
786
1062
|
},
|
|
787
1063
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
788
|
-
"version": "4.
|
|
789
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.
|
|
790
|
-
"integrity": "sha512-
|
|
1064
|
+
"version": "4.62.0",
|
|
1065
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.62.0.tgz",
|
|
1066
|
+
"integrity": "sha512-yYkWHhmbhRTWTnWos5HC4GcPQfjlzzCNbM9e/+GXrLuaBXYA3qSDR9f0Vgufd5S8yX81U8jPKp7ZnAjZFMtRnw==",
|
|
791
1067
|
"cpu": [
|
|
792
1068
|
"ia32"
|
|
793
1069
|
],
|
|
794
1070
|
"dev": true,
|
|
1071
|
+
"license": "MIT",
|
|
1072
|
+
"optional": true,
|
|
1073
|
+
"os": [
|
|
1074
|
+
"win32"
|
|
1075
|
+
]
|
|
1076
|
+
},
|
|
1077
|
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1078
|
+
"version": "4.62.0",
|
|
1079
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.62.0.tgz",
|
|
1080
|
+
"integrity": "sha512-SoTb6lPg25xZlA2ibwQ++ahCCnH+FP0qmEuafMJ4gznZKOlXioKEAeJLgCrqjM98ACziXM9V1amFjICVL4IFoA==",
|
|
1081
|
+
"cpu": [
|
|
1082
|
+
"x64"
|
|
1083
|
+
],
|
|
1084
|
+
"dev": true,
|
|
1085
|
+
"license": "MIT",
|
|
795
1086
|
"optional": true,
|
|
796
1087
|
"os": [
|
|
797
1088
|
"win32"
|
|
798
1089
|
]
|
|
799
1090
|
},
|
|
800
1091
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
801
|
-
"version": "4.
|
|
802
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.
|
|
803
|
-
"integrity": "sha512-
|
|
1092
|
+
"version": "4.62.0",
|
|
1093
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.62.0.tgz",
|
|
1094
|
+
"integrity": "sha512-5L+T1fMX4RIEBoZzT0+sQ0PhTS36NULFmMXtl1TZo44TMAROIMHbZufSOjVWt/Y622BtxgxtaNOokbTDvfsrZA==",
|
|
804
1095
|
"cpu": [
|
|
805
1096
|
"x64"
|
|
806
1097
|
],
|
|
807
1098
|
"dev": true,
|
|
1099
|
+
"license": "MIT",
|
|
808
1100
|
"optional": true,
|
|
809
1101
|
"os": [
|
|
810
1102
|
"win32"
|
|
@@ -827,6 +1119,22 @@
|
|
|
827
1119
|
"@sveltejs/kit": "^2.0.0"
|
|
828
1120
|
}
|
|
829
1121
|
},
|
|
1122
|
+
"node_modules/@sveltejs/adapter-node": {
|
|
1123
|
+
"version": "5.5.4",
|
|
1124
|
+
"resolved": "https://registry.npmjs.org/@sveltejs/adapter-node/-/adapter-node-5.5.4.tgz",
|
|
1125
|
+
"integrity": "sha512-45X92CXW+2J8ZUzPv3eLlKWEzINKiiGeFWTjyER4ZN4sGgNoaoeSkCY/QYNxHpPXy71QPsctwccBo9jJs0ySPQ==",
|
|
1126
|
+
"dev": true,
|
|
1127
|
+
"license": "MIT",
|
|
1128
|
+
"dependencies": {
|
|
1129
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
1130
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
1131
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
1132
|
+
"rollup": "^4.59.0"
|
|
1133
|
+
},
|
|
1134
|
+
"peerDependencies": {
|
|
1135
|
+
"@sveltejs/kit": "^2.4.0"
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
830
1138
|
"node_modules/@sveltejs/kit": {
|
|
831
1139
|
"version": "2.17.2",
|
|
832
1140
|
"resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.17.2.tgz",
|
|
@@ -902,10 +1210,18 @@
|
|
|
902
1210
|
"dev": true
|
|
903
1211
|
},
|
|
904
1212
|
"node_modules/@types/estree": {
|
|
905
|
-
"version": "1.0.
|
|
906
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.
|
|
907
|
-
"integrity": "sha512-
|
|
908
|
-
"dev": true
|
|
1213
|
+
"version": "1.0.9",
|
|
1214
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
|
|
1215
|
+
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
1216
|
+
"dev": true,
|
|
1217
|
+
"license": "MIT"
|
|
1218
|
+
},
|
|
1219
|
+
"node_modules/@types/resolve": {
|
|
1220
|
+
"version": "1.20.2",
|
|
1221
|
+
"resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz",
|
|
1222
|
+
"integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==",
|
|
1223
|
+
"dev": true,
|
|
1224
|
+
"license": "MIT"
|
|
909
1225
|
},
|
|
910
1226
|
"node_modules/acorn": {
|
|
911
1227
|
"version": "8.14.0",
|
|
@@ -1113,9 +1429,9 @@
|
|
|
1113
1429
|
}
|
|
1114
1430
|
},
|
|
1115
1431
|
"node_modules/caniuse-lite": {
|
|
1116
|
-
"version": "1.0.
|
|
1117
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
1118
|
-
"integrity": "sha512-
|
|
1432
|
+
"version": "1.0.30001799",
|
|
1433
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
|
|
1434
|
+
"integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
|
|
1119
1435
|
"dev": true,
|
|
1120
1436
|
"funding": [
|
|
1121
1437
|
{
|
|
@@ -1130,7 +1446,8 @@
|
|
|
1130
1446
|
"type": "github",
|
|
1131
1447
|
"url": "https://github.com/sponsors/ai"
|
|
1132
1448
|
}
|
|
1133
|
-
]
|
|
1449
|
+
],
|
|
1450
|
+
"license": "CC-BY-4.0"
|
|
1134
1451
|
},
|
|
1135
1452
|
"node_modules/chokidar": {
|
|
1136
1453
|
"version": "3.6.0",
|
|
@@ -1204,6 +1521,13 @@
|
|
|
1204
1521
|
"node": ">= 6"
|
|
1205
1522
|
}
|
|
1206
1523
|
},
|
|
1524
|
+
"node_modules/commondir": {
|
|
1525
|
+
"version": "1.0.1",
|
|
1526
|
+
"resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
|
|
1527
|
+
"integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
|
|
1528
|
+
"dev": true,
|
|
1529
|
+
"license": "MIT"
|
|
1530
|
+
},
|
|
1207
1531
|
"node_modules/cookie": {
|
|
1208
1532
|
"version": "0.6.0",
|
|
1209
1533
|
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
|
|
@@ -1227,16 +1551,6 @@
|
|
|
1227
1551
|
"node": ">= 8"
|
|
1228
1552
|
}
|
|
1229
1553
|
},
|
|
1230
|
-
"node_modules/css-selector-tokenizer": {
|
|
1231
|
-
"version": "0.8.0",
|
|
1232
|
-
"resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.8.0.tgz",
|
|
1233
|
-
"integrity": "sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==",
|
|
1234
|
-
"dev": true,
|
|
1235
|
-
"dependencies": {
|
|
1236
|
-
"cssesc": "^3.0.0",
|
|
1237
|
-
"fastparse": "^1.1.2"
|
|
1238
|
-
}
|
|
1239
|
-
},
|
|
1240
1554
|
"node_modules/cssesc": {
|
|
1241
1555
|
"version": "3.0.0",
|
|
1242
1556
|
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
|
@@ -1249,34 +1563,6 @@
|
|
|
1249
1563
|
"node": ">=4"
|
|
1250
1564
|
}
|
|
1251
1565
|
},
|
|
1252
|
-
"node_modules/culori": {
|
|
1253
|
-
"version": "3.3.0",
|
|
1254
|
-
"resolved": "https://registry.npmjs.org/culori/-/culori-3.3.0.tgz",
|
|
1255
|
-
"integrity": "sha512-pHJg+jbuFsCjz9iclQBqyL3B2HLCBF71BwVNujUYEvCeQMvV97R59MNK3R2+jgJ3a1fcZgI9B3vYgz8lzr/BFQ==",
|
|
1256
|
-
"dev": true,
|
|
1257
|
-
"engines": {
|
|
1258
|
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1259
|
-
}
|
|
1260
|
-
},
|
|
1261
|
-
"node_modules/daisyui": {
|
|
1262
|
-
"version": "4.12.23",
|
|
1263
|
-
"resolved": "https://registry.npmjs.org/daisyui/-/daisyui-4.12.23.tgz",
|
|
1264
|
-
"integrity": "sha512-EM38duvxutJ5PD65lO/AFMpcw+9qEy6XAZrTpzp7WyaPeO/l+F/Qiq0ECHHmFNcFXh5aVoALY4MGrrxtCiaQCQ==",
|
|
1265
|
-
"dev": true,
|
|
1266
|
-
"dependencies": {
|
|
1267
|
-
"css-selector-tokenizer": "^0.8",
|
|
1268
|
-
"culori": "^3",
|
|
1269
|
-
"picocolors": "^1",
|
|
1270
|
-
"postcss-js": "^4"
|
|
1271
|
-
},
|
|
1272
|
-
"engines": {
|
|
1273
|
-
"node": ">=16.9.0"
|
|
1274
|
-
},
|
|
1275
|
-
"funding": {
|
|
1276
|
-
"type": "opencollective",
|
|
1277
|
-
"url": "https://opencollective.com/daisyui"
|
|
1278
|
-
}
|
|
1279
|
-
},
|
|
1280
1566
|
"node_modules/debug": {
|
|
1281
1567
|
"version": "4.4.0",
|
|
1282
1568
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
|
|
@@ -1439,6 +1725,13 @@
|
|
|
1439
1725
|
"@jridgewell/sourcemap-codec": "^1.4.15"
|
|
1440
1726
|
}
|
|
1441
1727
|
},
|
|
1728
|
+
"node_modules/estree-walker": {
|
|
1729
|
+
"version": "2.0.2",
|
|
1730
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
|
|
1731
|
+
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
|
|
1732
|
+
"dev": true,
|
|
1733
|
+
"license": "MIT"
|
|
1734
|
+
},
|
|
1442
1735
|
"node_modules/fast-glob": {
|
|
1443
1736
|
"version": "3.3.3",
|
|
1444
1737
|
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
|
|
@@ -1467,12 +1760,6 @@
|
|
|
1467
1760
|
"node": ">= 6"
|
|
1468
1761
|
}
|
|
1469
1762
|
},
|
|
1470
|
-
"node_modules/fastparse": {
|
|
1471
|
-
"version": "1.1.2",
|
|
1472
|
-
"resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
|
|
1473
|
-
"integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==",
|
|
1474
|
-
"dev": true
|
|
1475
|
-
},
|
|
1476
1763
|
"node_modules/fastq": {
|
|
1477
1764
|
"version": "1.19.0",
|
|
1478
1765
|
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz",
|
|
@@ -1657,6 +1944,13 @@
|
|
|
1657
1944
|
"node": ">=0.10.0"
|
|
1658
1945
|
}
|
|
1659
1946
|
},
|
|
1947
|
+
"node_modules/is-module": {
|
|
1948
|
+
"version": "1.0.0",
|
|
1949
|
+
"resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
|
|
1950
|
+
"integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==",
|
|
1951
|
+
"dev": true,
|
|
1952
|
+
"license": "MIT"
|
|
1953
|
+
},
|
|
1660
1954
|
"node_modules/is-number": {
|
|
1661
1955
|
"version": "7.0.0",
|
|
1662
1956
|
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
@@ -2181,12 +2475,13 @@
|
|
|
2181
2475
|
}
|
|
2182
2476
|
},
|
|
2183
2477
|
"node_modules/rollup": {
|
|
2184
|
-
"version": "4.
|
|
2185
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.
|
|
2186
|
-
"integrity": "sha512-
|
|
2478
|
+
"version": "4.62.0",
|
|
2479
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.62.0.tgz",
|
|
2480
|
+
"integrity": "sha512-nc72Wgq62I7rtDV4izT5/aaS0zxy3kttkinf9586ApknY3jZO9NYsmtc24fUckA0X7Q2v+ML4a15pdUlV5V/jA==",
|
|
2187
2481
|
"dev": true,
|
|
2482
|
+
"license": "MIT",
|
|
2188
2483
|
"dependencies": {
|
|
2189
|
-
"@types/estree": "1.0.
|
|
2484
|
+
"@types/estree": "1.0.9"
|
|
2190
2485
|
},
|
|
2191
2486
|
"bin": {
|
|
2192
2487
|
"rollup": "dist/bin/rollup"
|
|
@@ -2196,25 +2491,31 @@
|
|
|
2196
2491
|
"npm": ">=8.0.0"
|
|
2197
2492
|
},
|
|
2198
2493
|
"optionalDependencies": {
|
|
2199
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
2200
|
-
"@rollup/rollup-android-arm64": "4.
|
|
2201
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
2202
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
2203
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
2204
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
2205
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
2206
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
2207
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
2208
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
2209
|
-
"@rollup/rollup-linux-
|
|
2210
|
-
"@rollup/rollup-linux-
|
|
2211
|
-
"@rollup/rollup-linux-
|
|
2212
|
-
"@rollup/rollup-linux-
|
|
2213
|
-
"@rollup/rollup-linux-
|
|
2214
|
-
"@rollup/rollup-linux-
|
|
2215
|
-
"@rollup/rollup-
|
|
2216
|
-
"@rollup/rollup-
|
|
2217
|
-
"@rollup/rollup-
|
|
2494
|
+
"@rollup/rollup-android-arm-eabi": "4.62.0",
|
|
2495
|
+
"@rollup/rollup-android-arm64": "4.62.0",
|
|
2496
|
+
"@rollup/rollup-darwin-arm64": "4.62.0",
|
|
2497
|
+
"@rollup/rollup-darwin-x64": "4.62.0",
|
|
2498
|
+
"@rollup/rollup-freebsd-arm64": "4.62.0",
|
|
2499
|
+
"@rollup/rollup-freebsd-x64": "4.62.0",
|
|
2500
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.62.0",
|
|
2501
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.62.0",
|
|
2502
|
+
"@rollup/rollup-linux-arm64-gnu": "4.62.0",
|
|
2503
|
+
"@rollup/rollup-linux-arm64-musl": "4.62.0",
|
|
2504
|
+
"@rollup/rollup-linux-loong64-gnu": "4.62.0",
|
|
2505
|
+
"@rollup/rollup-linux-loong64-musl": "4.62.0",
|
|
2506
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.62.0",
|
|
2507
|
+
"@rollup/rollup-linux-ppc64-musl": "4.62.0",
|
|
2508
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.62.0",
|
|
2509
|
+
"@rollup/rollup-linux-riscv64-musl": "4.62.0",
|
|
2510
|
+
"@rollup/rollup-linux-s390x-gnu": "4.62.0",
|
|
2511
|
+
"@rollup/rollup-linux-x64-gnu": "4.62.0",
|
|
2512
|
+
"@rollup/rollup-linux-x64-musl": "4.62.0",
|
|
2513
|
+
"@rollup/rollup-openbsd-x64": "4.62.0",
|
|
2514
|
+
"@rollup/rollup-openharmony-arm64": "4.62.0",
|
|
2515
|
+
"@rollup/rollup-win32-arm64-msvc": "4.62.0",
|
|
2516
|
+
"@rollup/rollup-win32-ia32-msvc": "4.62.0",
|
|
2517
|
+
"@rollup/rollup-win32-x64-gnu": "4.62.0",
|
|
2518
|
+
"@rollup/rollup-win32-x64-msvc": "4.62.0",
|
|
2218
2519
|
"fsevents": "~2.3.2"
|
|
2219
2520
|
}
|
|
2220
2521
|
},
|