@salesforce/templates 66.11.0 → 66.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +361 -332
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +354 -325
- package/lib/templates/uiBundles/angularbasic/angular.json +11 -7
- package/lib/templates/uiBundles/angularbasic/eslint.config.js +4 -0
- package/lib/templates/uiBundles/angularbasic/package-lock.json +292 -239
- package/lib/templates/uiBundles/angularbasic/package.json +4 -0
- package/lib/templates/uiBundles/angularbasic/src/app/api/{graphql-client.service.spec.ts → data-client.service.spec.ts} +36 -6
- package/lib/templates/uiBundles/angularbasic/src/app/api/data-client.service.ts +74 -0
- package/lib/templates/uiBundles/angularbasic/src/app/app.config.ts +15 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.routes.ts +6 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.ts +7 -2
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.html +2 -1
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.ts +9 -3
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/_field-size.scss +42 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.html +31 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.ts +53 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.html +18 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.scss +112 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.ts +57 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.scss +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.ts +110 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.ts +26 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.html +25 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.scss +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.ts +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.html +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.scss +33 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.ts +66 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.html +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.ts +55 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.html +21 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field-size.ts +8 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.html +19 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.html +3 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.ts +17 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.ts +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.html +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.ts +40 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.html +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.ts +72 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.scss +23 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.ts +56 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.scss +28 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.ts +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/spinner/spinner.component.ts +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/pages/home/home.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/pages/not-found/not-found.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/utils/async-data.ts +99 -0
- package/lib/templates/uiBundles/angularbasic/src/index.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.scss +170 -0
- package/lib/templates/uiBundles/angularbasic/src/theme.scss +39 -0
- package/lib/templates/uiBundles/reactbasic/package-lock.json +354 -325
- package/package.json +3 -3
- package/lib/templates/uiBundles/angularbasic/src/app/api/graphql-client.service.ts +0 -48
- package/lib/templates/uiBundles/angularbasic/src/app/app.css +0 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.css +0 -12
- /package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.spec.ts +0 -0
|
@@ -93,14 +93,14 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"node_modules/@ardatan/relay-compiler": {
|
|
96
|
-
"version": "13.0.
|
|
97
|
-
"resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-13.0.
|
|
98
|
-
"integrity": "sha512-
|
|
96
|
+
"version": "13.0.2",
|
|
97
|
+
"resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-13.0.2.tgz",
|
|
98
|
+
"integrity": "sha512-VFpv9UP820SiwDUPYtq7PmD3jifzZlevkQ26bhbSzFeruSTys0eHzQCZyKg+IhgmZzwPI9AFjPe26ABNjGeIKg==",
|
|
99
99
|
"dev": true,
|
|
100
100
|
"license": "MIT",
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@babel/runtime": "^
|
|
103
|
-
"immutable": "^5.1.
|
|
102
|
+
"@babel/runtime": "^8.0.0",
|
|
103
|
+
"immutable": "^5.1.9",
|
|
104
104
|
"invariant": "^2.2.4"
|
|
105
105
|
},
|
|
106
106
|
"peerDependencies": {
|
|
@@ -537,14 +537,11 @@
|
|
|
537
537
|
}
|
|
538
538
|
},
|
|
539
539
|
"node_modules/@babel/runtime": {
|
|
540
|
-
"version": "
|
|
541
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-
|
|
542
|
-
"integrity": "sha512-
|
|
540
|
+
"version": "8.0.0",
|
|
541
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-8.0.0.tgz",
|
|
542
|
+
"integrity": "sha512-sL6cvO2IfkSu/iU+zs2S/w01B7A8V7suXSIKEN4hPFFdZoiPGxrj5pAG0lCaqLWiEIrjKzdznIWuaLcxPR53qw==",
|
|
543
543
|
"dev": true,
|
|
544
|
-
"license": "MIT"
|
|
545
|
-
"engines": {
|
|
546
|
-
"node": ">=6.9.0"
|
|
547
|
-
}
|
|
544
|
+
"license": "MIT"
|
|
548
545
|
},
|
|
549
546
|
"node_modules/@babel/template": {
|
|
550
547
|
"version": "7.29.7",
|
|
@@ -1668,9 +1665,9 @@
|
|
|
1668
1665
|
}
|
|
1669
1666
|
},
|
|
1670
1667
|
"node_modules/@eslint/eslintrc": {
|
|
1671
|
-
"version": "3.3.
|
|
1672
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.
|
|
1673
|
-
"integrity": "sha512-
|
|
1668
|
+
"version": "3.3.6",
|
|
1669
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.6.tgz",
|
|
1670
|
+
"integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==",
|
|
1674
1671
|
"dev": true,
|
|
1675
1672
|
"license": "MIT",
|
|
1676
1673
|
"dependencies": {
|
|
@@ -1680,7 +1677,7 @@
|
|
|
1680
1677
|
"globals": "^14.0.0",
|
|
1681
1678
|
"ignore": "^5.2.0",
|
|
1682
1679
|
"import-fresh": "^3.2.1",
|
|
1683
|
-
"js-yaml": "^4.
|
|
1680
|
+
"js-yaml": "^4.3.0",
|
|
1684
1681
|
"minimatch": "^3.1.5",
|
|
1685
1682
|
"strip-json-comments": "^3.1.1"
|
|
1686
1683
|
},
|
|
@@ -1729,9 +1726,9 @@
|
|
|
1729
1726
|
"license": "MIT"
|
|
1730
1727
|
},
|
|
1731
1728
|
"node_modules/@eslint/js": {
|
|
1732
|
-
"version": "9.39.
|
|
1733
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.
|
|
1734
|
-
"integrity": "sha512-
|
|
1729
|
+
"version": "9.39.5",
|
|
1730
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.5.tgz",
|
|
1731
|
+
"integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==",
|
|
1735
1732
|
"dev": true,
|
|
1736
1733
|
"license": "MIT",
|
|
1737
1734
|
"engines": {
|
|
@@ -1773,31 +1770,31 @@
|
|
|
1773
1770
|
"license": "MIT"
|
|
1774
1771
|
},
|
|
1775
1772
|
"node_modules/@floating-ui/core": {
|
|
1776
|
-
"version": "1.
|
|
1777
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.
|
|
1778
|
-
"integrity": "sha512-
|
|
1773
|
+
"version": "1.8.0",
|
|
1774
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.8.0.tgz",
|
|
1775
|
+
"integrity": "sha512-0CIZ5itps/8x7BG8dEIhs53BvCUH2PCoogtakwRTut+Arm58sJooJ0AuZhLw2HJYIR5cMLNPBSS728sPho2khQ==",
|
|
1779
1776
|
"license": "MIT",
|
|
1780
1777
|
"dependencies": {
|
|
1781
|
-
"@floating-ui/utils": "^0.2.
|
|
1778
|
+
"@floating-ui/utils": "^0.2.12"
|
|
1782
1779
|
}
|
|
1783
1780
|
},
|
|
1784
1781
|
"node_modules/@floating-ui/dom": {
|
|
1785
|
-
"version": "1.
|
|
1786
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.
|
|
1787
|
-
"integrity": "sha512-
|
|
1782
|
+
"version": "1.8.0",
|
|
1783
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.8.0.tgz",
|
|
1784
|
+
"integrity": "sha512-yXSrzeHZBTZadLOlfyhCkJHNeLJnHRnRInwdZ40L7ZiaAtrBwoYlsDrX3v5zB1Utk7CLfzcOVnVVWoXEky7Ceg==",
|
|
1788
1785
|
"license": "MIT",
|
|
1789
1786
|
"dependencies": {
|
|
1790
|
-
"@floating-ui/core": "^1.
|
|
1791
|
-
"@floating-ui/utils": "^0.2.
|
|
1787
|
+
"@floating-ui/core": "^1.8.0",
|
|
1788
|
+
"@floating-ui/utils": "^0.2.12"
|
|
1792
1789
|
}
|
|
1793
1790
|
},
|
|
1794
1791
|
"node_modules/@floating-ui/react-dom": {
|
|
1795
|
-
"version": "2.1.
|
|
1796
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.
|
|
1797
|
-
"integrity": "sha512-
|
|
1792
|
+
"version": "2.1.9",
|
|
1793
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.9.tgz",
|
|
1794
|
+
"integrity": "sha512-JDjEFGCpImxDCA7JJKviA0M9+RtmJdj0m/NVU5IMgBK+AmZouAQQ7/+2GLH0GXXY0YMw9oXPB8hKdbPYg5QLYg==",
|
|
1798
1795
|
"license": "MIT",
|
|
1799
1796
|
"dependencies": {
|
|
1800
|
-
"@floating-ui/dom": "^1.
|
|
1797
|
+
"@floating-ui/dom": "^1.8.0"
|
|
1801
1798
|
},
|
|
1802
1799
|
"peerDependencies": {
|
|
1803
1800
|
"react": ">=16.8.0",
|
|
@@ -1805,9 +1802,9 @@
|
|
|
1805
1802
|
}
|
|
1806
1803
|
},
|
|
1807
1804
|
"node_modules/@floating-ui/utils": {
|
|
1808
|
-
"version": "0.2.
|
|
1809
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.
|
|
1810
|
-
"integrity": "sha512-
|
|
1805
|
+
"version": "0.2.12",
|
|
1806
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.12.tgz",
|
|
1807
|
+
"integrity": "sha512-HpCo8tmWzLVad5s2d19EhAz5zqrrQ6s69qd6moPMQvkOuSwDT1YgRfWSVuc4ennqrgv3OHppiOGMQ7oC13yIww==",
|
|
1811
1808
|
"license": "MIT"
|
|
1812
1809
|
},
|
|
1813
1810
|
"node_modules/@graphql-codegen/add": {
|
|
@@ -2155,13 +2152,13 @@
|
|
|
2155
2152
|
}
|
|
2156
2153
|
},
|
|
2157
2154
|
"node_modules/@graphql-tools/apollo-engine-loader": {
|
|
2158
|
-
"version": "8.0.
|
|
2159
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.
|
|
2160
|
-
"integrity": "sha512-
|
|
2155
|
+
"version": "8.0.34",
|
|
2156
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.34.tgz",
|
|
2157
|
+
"integrity": "sha512-pxmrIbUtpiH2/Dx0093EQ0x7dXWdlfAZ97uSY280CkUxIB8EYZeNeV2pvk6HksZzBtHrprLRysrjnegLOmQBRA==",
|
|
2161
2158
|
"dev": true,
|
|
2162
2159
|
"license": "MIT",
|
|
2163
2160
|
"dependencies": {
|
|
2164
|
-
"@graphql-tools/utils": "^11.2.
|
|
2161
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2165
2162
|
"@whatwg-node/fetch": "^0.10.13",
|
|
2166
2163
|
"sync-fetch": "0.6.0",
|
|
2167
2164
|
"tslib": "^2.4.0"
|
|
@@ -2193,14 +2190,14 @@
|
|
|
2193
2190
|
}
|
|
2194
2191
|
},
|
|
2195
2192
|
"node_modules/@graphql-tools/code-file-loader": {
|
|
2196
|
-
"version": "8.1.
|
|
2197
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.
|
|
2198
|
-
"integrity": "sha512-
|
|
2193
|
+
"version": "8.1.36",
|
|
2194
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.36.tgz",
|
|
2195
|
+
"integrity": "sha512-EAIogV/vUmcrNa4icqnx5Xr5z3uLNSZ6867DEJyizuUfOCnD5JzCBQNsBjOBl3R5rzUiV3+GGSzzo15/jLN4oQ==",
|
|
2199
2196
|
"dev": true,
|
|
2200
2197
|
"license": "MIT",
|
|
2201
2198
|
"dependencies": {
|
|
2202
|
-
"@graphql-tools/graphql-tag-pluck": "8.3.
|
|
2203
|
-
"@graphql-tools/utils": "^11.2.
|
|
2199
|
+
"@graphql-tools/graphql-tag-pluck": "8.3.35",
|
|
2200
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2204
2201
|
"globby": "^11.0.3",
|
|
2205
2202
|
"tslib": "^2.4.0",
|
|
2206
2203
|
"unixify": "^1.0.0"
|
|
@@ -2213,9 +2210,9 @@
|
|
|
2213
2210
|
}
|
|
2214
2211
|
},
|
|
2215
2212
|
"node_modules/@graphql-tools/delegate": {
|
|
2216
|
-
"version": "12.0.
|
|
2217
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.
|
|
2218
|
-
"integrity": "sha512-
|
|
2213
|
+
"version": "12.0.20",
|
|
2214
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.20.tgz",
|
|
2215
|
+
"integrity": "sha512-87XNqi0Um62ecXCi/k0clvdIPCBvbIrAddZXY9rKWe1jMpHN8BgkEnHUOEI4S6LSOvyT/9y/22clVk0OOSTi9g==",
|
|
2219
2216
|
"dev": true,
|
|
2220
2217
|
"license": "MIT",
|
|
2221
2218
|
"dependencies": {
|
|
@@ -2253,15 +2250,15 @@
|
|
|
2253
2250
|
}
|
|
2254
2251
|
},
|
|
2255
2252
|
"node_modules/@graphql-tools/executor": {
|
|
2256
|
-
"version": "1.5.
|
|
2257
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.
|
|
2258
|
-
"integrity": "sha512-
|
|
2253
|
+
"version": "1.5.7",
|
|
2254
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.7.tgz",
|
|
2255
|
+
"integrity": "sha512-UcXVClkBml+qyGEsQxfEaAkboqySVGFUd9ivn7pDc9jZSckgF6zL21cNxuRH5ZA2exneV3PTtcc0I0rDOdE0Tg==",
|
|
2259
2256
|
"dev": true,
|
|
2260
2257
|
"license": "MIT",
|
|
2261
2258
|
"dependencies": {
|
|
2262
|
-
"@graphql-tools/utils": "^11.2.
|
|
2259
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2263
2260
|
"@graphql-typed-document-node/core": "^3.2.0",
|
|
2264
|
-
"@repeaterjs/repeater": "^3.0
|
|
2261
|
+
"@repeaterjs/repeater": "^3.1.0",
|
|
2265
2262
|
"@whatwg-node/disposablestack": "^0.0.6",
|
|
2266
2263
|
"@whatwg-node/promise-helpers": "^1.0.0",
|
|
2267
2264
|
"tslib": "^2.4.0"
|
|
@@ -2337,17 +2334,17 @@
|
|
|
2337
2334
|
}
|
|
2338
2335
|
},
|
|
2339
2336
|
"node_modules/@graphql-tools/executor-legacy-ws": {
|
|
2340
|
-
"version": "1.1.
|
|
2341
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.
|
|
2342
|
-
"integrity": "sha512-
|
|
2337
|
+
"version": "1.1.32",
|
|
2338
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.32.tgz",
|
|
2339
|
+
"integrity": "sha512-rmSp846dAgEGtwdQ7ntdgpLJzzRvw5rE8sR7ASPci2QoIn3McxVYwjq52SMNntoH4VaBeI/BrpyQIN5L68zAfA==",
|
|
2343
2340
|
"dev": true,
|
|
2344
2341
|
"license": "MIT",
|
|
2345
2342
|
"dependencies": {
|
|
2346
|
-
"@graphql-tools/utils": "^11.2.
|
|
2343
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2347
2344
|
"@types/ws": "^8.0.0",
|
|
2348
2345
|
"isomorphic-ws": "^5.0.0",
|
|
2349
2346
|
"tslib": "^2.4.0",
|
|
2350
|
-
"ws": "^8.21.
|
|
2347
|
+
"ws": "^8.21.1"
|
|
2351
2348
|
},
|
|
2352
2349
|
"engines": {
|
|
2353
2350
|
"node": ">=16.0.0"
|
|
@@ -2357,14 +2354,14 @@
|
|
|
2357
2354
|
}
|
|
2358
2355
|
},
|
|
2359
2356
|
"node_modules/@graphql-tools/git-loader": {
|
|
2360
|
-
"version": "8.0.
|
|
2361
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.
|
|
2362
|
-
"integrity": "sha512-
|
|
2357
|
+
"version": "8.0.40",
|
|
2358
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.40.tgz",
|
|
2359
|
+
"integrity": "sha512-aQkcTTymjeQBREoH8/x5JZWt/banq9D7fs8Gqqd2HGirh8JBYGoEbKm45bSdUqCLnqsOJ2oal5A73rsC7ASASw==",
|
|
2363
2360
|
"dev": true,
|
|
2364
2361
|
"license": "MIT",
|
|
2365
2362
|
"dependencies": {
|
|
2366
|
-
"@graphql-tools/graphql-tag-pluck": "8.3.
|
|
2367
|
-
"@graphql-tools/utils": "^11.2.
|
|
2363
|
+
"@graphql-tools/graphql-tag-pluck": "8.3.35",
|
|
2364
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2368
2365
|
"is-glob": "4.0.3",
|
|
2369
2366
|
"micromatch": "^4.0.8",
|
|
2370
2367
|
"tslib": "^2.4.0",
|
|
@@ -2378,15 +2375,15 @@
|
|
|
2378
2375
|
}
|
|
2379
2376
|
},
|
|
2380
2377
|
"node_modules/@graphql-tools/github-loader": {
|
|
2381
|
-
"version": "9.1.
|
|
2382
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.
|
|
2383
|
-
"integrity": "sha512
|
|
2378
|
+
"version": "9.1.6",
|
|
2379
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.6.tgz",
|
|
2380
|
+
"integrity": "sha512-hWsCcTZJ5NLKDUYynZjK7kVh/xmc/MpnLkBII+WQHCLOOXimaESZRnUuoo/nMqOwBKghBC0iF1nHiG9PqD9t3w==",
|
|
2384
2381
|
"dev": true,
|
|
2385
2382
|
"license": "MIT",
|
|
2386
2383
|
"dependencies": {
|
|
2387
2384
|
"@graphql-tools/executor-http": "^3.3.0",
|
|
2388
|
-
"@graphql-tools/graphql-tag-pluck": "^8.3.
|
|
2389
|
-
"@graphql-tools/utils": "^11.2.
|
|
2385
|
+
"@graphql-tools/graphql-tag-pluck": "^8.3.35",
|
|
2386
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2390
2387
|
"@whatwg-node/fetch": "^0.10.13",
|
|
2391
2388
|
"@whatwg-node/promise-helpers": "^1.0.0",
|
|
2392
2389
|
"sync-fetch": "0.6.0",
|
|
@@ -2400,14 +2397,14 @@
|
|
|
2400
2397
|
}
|
|
2401
2398
|
},
|
|
2402
2399
|
"node_modules/@graphql-tools/graphql-file-loader": {
|
|
2403
|
-
"version": "8.1.
|
|
2404
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.
|
|
2405
|
-
"integrity": "sha512-
|
|
2400
|
+
"version": "8.1.18",
|
|
2401
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.18.tgz",
|
|
2402
|
+
"integrity": "sha512-MBbAPFfGZN+jaRQQkqfY1Ztj4ftFgk9m7zh0h1jQC83xsVJ8zvMk2TGwg7g3lEGqa0cLOOEp/a1/78MSdhj2Zg==",
|
|
2406
2403
|
"dev": true,
|
|
2407
2404
|
"license": "MIT",
|
|
2408
2405
|
"dependencies": {
|
|
2409
|
-
"@graphql-tools/import": "^7.1.
|
|
2410
|
-
"@graphql-tools/utils": "^11.2.
|
|
2406
|
+
"@graphql-tools/import": "^7.1.18",
|
|
2407
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2411
2408
|
"globby": "^11.0.3",
|
|
2412
2409
|
"tslib": "^2.4.0",
|
|
2413
2410
|
"unixify": "^1.0.0"
|
|
@@ -2420,9 +2417,9 @@
|
|
|
2420
2417
|
}
|
|
2421
2418
|
},
|
|
2422
2419
|
"node_modules/@graphql-tools/graphql-tag-pluck": {
|
|
2423
|
-
"version": "8.3.
|
|
2424
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.
|
|
2425
|
-
"integrity": "sha512-
|
|
2420
|
+
"version": "8.3.35",
|
|
2421
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.35.tgz",
|
|
2422
|
+
"integrity": "sha512-k6udGhRFzf/FnfV/pl+2dxVURHtqdOj8evG3xFJahMS9bSMLkmTRCqTaR8e+ErYZEUODE2zCSPth3JLQEfAEqQ==",
|
|
2426
2423
|
"dev": true,
|
|
2427
2424
|
"license": "MIT",
|
|
2428
2425
|
"dependencies": {
|
|
@@ -2431,7 +2428,7 @@
|
|
|
2431
2428
|
"@babel/plugin-syntax-import-assertions": "^7.26.0",
|
|
2432
2429
|
"@babel/traverse": "^7.26.10",
|
|
2433
2430
|
"@babel/types": "^7.26.10",
|
|
2434
|
-
"@graphql-tools/utils": "^11.2.
|
|
2431
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2435
2432
|
"tslib": "^2.4.0"
|
|
2436
2433
|
},
|
|
2437
2434
|
"engines": {
|
|
@@ -2442,13 +2439,13 @@
|
|
|
2442
2439
|
}
|
|
2443
2440
|
},
|
|
2444
2441
|
"node_modules/@graphql-tools/import": {
|
|
2445
|
-
"version": "7.1.
|
|
2446
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.
|
|
2447
|
-
"integrity": "sha512
|
|
2442
|
+
"version": "7.1.18",
|
|
2443
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.18.tgz",
|
|
2444
|
+
"integrity": "sha512-/lCEk28rbUiypbX8jl5x0RBiHDsXk3YJ5jAU1nlqXEdxNiNI6p5ts+vt0N7UximIuolwV7BeRxLn5RUejyKZYQ==",
|
|
2448
2445
|
"dev": true,
|
|
2449
2446
|
"license": "MIT",
|
|
2450
2447
|
"dependencies": {
|
|
2451
|
-
"@graphql-tools/utils": "^11.2.
|
|
2448
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2452
2449
|
"resolve-from": "5.0.0",
|
|
2453
2450
|
"tslib": "^2.4.0"
|
|
2454
2451
|
},
|
|
@@ -2460,13 +2457,13 @@
|
|
|
2460
2457
|
}
|
|
2461
2458
|
},
|
|
2462
2459
|
"node_modules/@graphql-tools/json-file-loader": {
|
|
2463
|
-
"version": "8.0.
|
|
2464
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.
|
|
2465
|
-
"integrity": "sha512-
|
|
2460
|
+
"version": "8.0.32",
|
|
2461
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.32.tgz",
|
|
2462
|
+
"integrity": "sha512-PJ06nGC836vWWLCAPignLKAnIF+CKNkXlCIe9zkkb02jFPNdG5nA0PUxa1rqt/lqZd/x/ravZQ4yM47pxtLajg==",
|
|
2466
2463
|
"dev": true,
|
|
2467
2464
|
"license": "MIT",
|
|
2468
2465
|
"dependencies": {
|
|
2469
|
-
"@graphql-tools/utils": "^11.2.
|
|
2466
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2470
2467
|
"globby": "^11.0.3",
|
|
2471
2468
|
"tslib": "^2.4.0",
|
|
2472
2469
|
"unixify": "^1.0.0"
|
|
@@ -2479,14 +2476,14 @@
|
|
|
2479
2476
|
}
|
|
2480
2477
|
},
|
|
2481
2478
|
"node_modules/@graphql-tools/load": {
|
|
2482
|
-
"version": "8.1.
|
|
2483
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.
|
|
2484
|
-
"integrity": "sha512-
|
|
2479
|
+
"version": "8.1.15",
|
|
2480
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.15.tgz",
|
|
2481
|
+
"integrity": "sha512-QpCve0kf1IxNOWAk99VjS4CEZinQjKAfsgDDRWGUg9+9TqBbvCdsLAQshykHcfueEUPetVRVqqqOIRKo9eJ2xQ==",
|
|
2485
2482
|
"dev": true,
|
|
2486
2483
|
"license": "MIT",
|
|
2487
2484
|
"dependencies": {
|
|
2488
|
-
"@graphql-tools/schema": "^10.0.
|
|
2489
|
-
"@graphql-tools/utils": "^11.2.
|
|
2485
|
+
"@graphql-tools/schema": "^10.0.38",
|
|
2486
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2490
2487
|
"p-limit": "3.1.0",
|
|
2491
2488
|
"tslib": "^2.4.0"
|
|
2492
2489
|
},
|
|
@@ -2498,13 +2495,13 @@
|
|
|
2498
2495
|
}
|
|
2499
2496
|
},
|
|
2500
2497
|
"node_modules/@graphql-tools/merge": {
|
|
2501
|
-
"version": "9.2.
|
|
2502
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.2.
|
|
2503
|
-
"integrity": "sha512-
|
|
2498
|
+
"version": "9.2.2",
|
|
2499
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.2.2.tgz",
|
|
2500
|
+
"integrity": "sha512-DSLLAztOIQId7QE3m8Ehk5lV+0pjxNSSRDHPzlYQ9E4KJ9AoUMBprC4C+eX3v4srh05S2ujm5/veqAr5yEWFSQ==",
|
|
2504
2501
|
"dev": true,
|
|
2505
2502
|
"license": "MIT",
|
|
2506
2503
|
"dependencies": {
|
|
2507
|
-
"@graphql-tools/utils": "^11.2.
|
|
2504
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2508
2505
|
"tslib": "^2.4.0"
|
|
2509
2506
|
},
|
|
2510
2507
|
"engines": {
|
|
@@ -2531,14 +2528,14 @@
|
|
|
2531
2528
|
}
|
|
2532
2529
|
},
|
|
2533
2530
|
"node_modules/@graphql-tools/relay-operation-optimizer": {
|
|
2534
|
-
"version": "7.1.
|
|
2535
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.
|
|
2536
|
-
"integrity": "sha512-
|
|
2531
|
+
"version": "7.1.8",
|
|
2532
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.8.tgz",
|
|
2533
|
+
"integrity": "sha512-s16NYT+66VSLCITBURoGNTwh+YvZRSlW3MtFJC2gsvrHZHf6KpCvIR3Qju4yh0FtCoN7Wg7yOI/JT/UzaMEOwQ==",
|
|
2537
2534
|
"dev": true,
|
|
2538
2535
|
"license": "MIT",
|
|
2539
2536
|
"dependencies": {
|
|
2540
|
-
"@ardatan/relay-compiler": "^13.0.
|
|
2541
|
-
"@graphql-tools/utils": "^11.2.
|
|
2537
|
+
"@ardatan/relay-compiler": "^13.0.2",
|
|
2538
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2542
2539
|
"tslib": "^2.4.0"
|
|
2543
2540
|
},
|
|
2544
2541
|
"engines": {
|
|
@@ -2549,14 +2546,14 @@
|
|
|
2549
2546
|
}
|
|
2550
2547
|
},
|
|
2551
2548
|
"node_modules/@graphql-tools/schema": {
|
|
2552
|
-
"version": "10.0.
|
|
2553
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.
|
|
2554
|
-
"integrity": "sha512-
|
|
2549
|
+
"version": "10.0.38",
|
|
2550
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.38.tgz",
|
|
2551
|
+
"integrity": "sha512-Kckk2/vm+rELJ7ijvFaAn9ouWSVUTD0D4SJIvYF4rKeuQHAfCzE/jzMFonZVpTXleqJjPXLZjVbuaMorw7A5Og==",
|
|
2555
2552
|
"dev": true,
|
|
2556
2553
|
"license": "MIT",
|
|
2557
2554
|
"dependencies": {
|
|
2558
|
-
"@graphql-tools/merge": "^9.2.
|
|
2559
|
-
"@graphql-tools/utils": "^11.2.
|
|
2555
|
+
"@graphql-tools/merge": "^9.2.2",
|
|
2556
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2560
2557
|
"tslib": "^2.4.0"
|
|
2561
2558
|
},
|
|
2562
2559
|
"engines": {
|
|
@@ -2567,16 +2564,16 @@
|
|
|
2567
2564
|
}
|
|
2568
2565
|
},
|
|
2569
2566
|
"node_modules/@graphql-tools/url-loader": {
|
|
2570
|
-
"version": "9.1.
|
|
2571
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.
|
|
2572
|
-
"integrity": "sha512-
|
|
2567
|
+
"version": "9.1.6",
|
|
2568
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.6.tgz",
|
|
2569
|
+
"integrity": "sha512-BUFafQJv1OVZ/pZvzqXx4oLi2SKeqiWUAIDgz9HGRF/UpJuLY98tYMFzxhYurXg7lAuJMrDjUfl2nFSCX743Nw==",
|
|
2573
2570
|
"dev": true,
|
|
2574
2571
|
"license": "MIT",
|
|
2575
2572
|
"dependencies": {
|
|
2576
2573
|
"@graphql-tools/executor-graphql-ws": "^3.1.4",
|
|
2577
2574
|
"@graphql-tools/executor-http": "^3.3.0",
|
|
2578
|
-
"@graphql-tools/executor-legacy-ws": "^1.1.
|
|
2579
|
-
"@graphql-tools/utils": "^11.2.
|
|
2575
|
+
"@graphql-tools/executor-legacy-ws": "^1.1.32",
|
|
2576
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2580
2577
|
"@graphql-tools/wrap": "^11.1.1",
|
|
2581
2578
|
"@types/ws": "^8.0.0",
|
|
2582
2579
|
"@whatwg-node/fetch": "^0.10.13",
|
|
@@ -2584,7 +2581,7 @@
|
|
|
2584
2581
|
"isomorphic-ws": "^5.0.0",
|
|
2585
2582
|
"sync-fetch": "0.6.0",
|
|
2586
2583
|
"tslib": "^2.4.0",
|
|
2587
|
-
"ws": "^8.21.
|
|
2584
|
+
"ws": "^8.21.1"
|
|
2588
2585
|
},
|
|
2589
2586
|
"engines": {
|
|
2590
2587
|
"node": ">=20.0.0"
|
|
@@ -2594,9 +2591,9 @@
|
|
|
2594
2591
|
}
|
|
2595
2592
|
},
|
|
2596
2593
|
"node_modules/@graphql-tools/utils": {
|
|
2597
|
-
"version": "11.2.
|
|
2598
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.2.
|
|
2599
|
-
"integrity": "sha512-
|
|
2594
|
+
"version": "11.2.2",
|
|
2595
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.2.2.tgz",
|
|
2596
|
+
"integrity": "sha512-Do2A/t6ayqOma8m7PvpYMsCBswL+NB35BQSng4GWSBqafL2/BnfAZy/NSENPwV721Rm2fG0BHETFC0+FJJZmLw==",
|
|
2600
2597
|
"dev": true,
|
|
2601
2598
|
"license": "MIT",
|
|
2602
2599
|
"dependencies": {
|
|
@@ -2613,13 +2610,13 @@
|
|
|
2613
2610
|
}
|
|
2614
2611
|
},
|
|
2615
2612
|
"node_modules/@graphql-tools/wrap": {
|
|
2616
|
-
"version": "11.1.
|
|
2617
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.
|
|
2618
|
-
"integrity": "sha512-
|
|
2613
|
+
"version": "11.1.19",
|
|
2614
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.19.tgz",
|
|
2615
|
+
"integrity": "sha512-d7ZplubDSkPeFqH4hYYYSK0UjTA2s+2HoLMPIRG0vP7dsjxm3z+J5C7zFboE+bXiWA9cNEoP9puOR4ep4EMjiQ==",
|
|
2619
2616
|
"dev": true,
|
|
2620
2617
|
"license": "MIT",
|
|
2621
2618
|
"dependencies": {
|
|
2622
|
-
"@graphql-tools/delegate": "^12.0.
|
|
2619
|
+
"@graphql-tools/delegate": "^12.0.20",
|
|
2623
2620
|
"@graphql-tools/schema": "^10.0.29",
|
|
2624
2621
|
"@graphql-tools/utils": "^11.0.0",
|
|
2625
2622
|
"@whatwg-node/promise-helpers": "^1.3.2",
|
|
@@ -10347,9 +10344,9 @@
|
|
|
10347
10344
|
}
|
|
10348
10345
|
},
|
|
10349
10346
|
"node_modules/@salesforce/core": {
|
|
10350
|
-
"version": "8.32.
|
|
10351
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.
|
|
10352
|
-
"integrity": "sha512-
|
|
10347
|
+
"version": "8.32.4",
|
|
10348
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.4.tgz",
|
|
10349
|
+
"integrity": "sha512-0p/nQ24nfPGD0ERp/NHAccgo+66+rDx6c9M88wItDYAMu9+CHcW+FHOLNDAAUsYwinHHVsqVSL8Eyag7gvitqA==",
|
|
10353
10350
|
"license": "BSD-3-Clause",
|
|
10354
10351
|
"dependencies": {
|
|
10355
10352
|
"@jsforce/jsforce-node": "^3.10.17",
|
|
@@ -10591,47 +10588,47 @@
|
|
|
10591
10588
|
}
|
|
10592
10589
|
},
|
|
10593
10590
|
"node_modules/@tailwindcss/node": {
|
|
10594
|
-
"version": "4.3.
|
|
10595
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.
|
|
10596
|
-
"integrity": "sha512
|
|
10591
|
+
"version": "4.3.3",
|
|
10592
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.3.tgz",
|
|
10593
|
+
"integrity": "sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg==",
|
|
10597
10594
|
"license": "MIT",
|
|
10598
10595
|
"dependencies": {
|
|
10599
10596
|
"@jridgewell/remapping": "^2.3.5",
|
|
10600
|
-
"enhanced-resolve": "5.
|
|
10597
|
+
"enhanced-resolve": "^5.24.1",
|
|
10601
10598
|
"jiti": "^2.7.0",
|
|
10602
10599
|
"lightningcss": "1.32.0",
|
|
10603
10600
|
"magic-string": "^0.30.21",
|
|
10604
10601
|
"source-map-js": "^1.2.1",
|
|
10605
|
-
"tailwindcss": "4.3.
|
|
10602
|
+
"tailwindcss": "4.3.3"
|
|
10606
10603
|
}
|
|
10607
10604
|
},
|
|
10608
10605
|
"node_modules/@tailwindcss/oxide": {
|
|
10609
|
-
"version": "4.3.
|
|
10610
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.
|
|
10611
|
-
"integrity": "sha512-
|
|
10606
|
+
"version": "4.3.3",
|
|
10607
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.3.tgz",
|
|
10608
|
+
"integrity": "sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA==",
|
|
10612
10609
|
"license": "MIT",
|
|
10613
10610
|
"engines": {
|
|
10614
10611
|
"node": ">= 20"
|
|
10615
10612
|
},
|
|
10616
10613
|
"optionalDependencies": {
|
|
10617
|
-
"@tailwindcss/oxide-android-arm64": "4.3.
|
|
10618
|
-
"@tailwindcss/oxide-darwin-arm64": "4.3.
|
|
10619
|
-
"@tailwindcss/oxide-darwin-x64": "4.3.
|
|
10620
|
-
"@tailwindcss/oxide-freebsd-x64": "4.3.
|
|
10621
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.
|
|
10622
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.
|
|
10623
|
-
"@tailwindcss/oxide-linux-arm64-musl": "4.3.
|
|
10624
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.3.
|
|
10625
|
-
"@tailwindcss/oxide-linux-x64-musl": "4.3.
|
|
10626
|
-
"@tailwindcss/oxide-wasm32-wasi": "4.3.
|
|
10627
|
-
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.
|
|
10628
|
-
"@tailwindcss/oxide-win32-x64-msvc": "4.3.
|
|
10614
|
+
"@tailwindcss/oxide-android-arm64": "4.3.3",
|
|
10615
|
+
"@tailwindcss/oxide-darwin-arm64": "4.3.3",
|
|
10616
|
+
"@tailwindcss/oxide-darwin-x64": "4.3.3",
|
|
10617
|
+
"@tailwindcss/oxide-freebsd-x64": "4.3.3",
|
|
10618
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.3",
|
|
10619
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.3",
|
|
10620
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.3.3",
|
|
10621
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.3.3",
|
|
10622
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.3.3",
|
|
10623
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.3.3",
|
|
10624
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.3",
|
|
10625
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.3.3"
|
|
10629
10626
|
}
|
|
10630
10627
|
},
|
|
10631
10628
|
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
10632
|
-
"version": "4.3.
|
|
10633
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.
|
|
10634
|
-
"integrity": "sha512-
|
|
10629
|
+
"version": "4.3.3",
|
|
10630
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.3.tgz",
|
|
10631
|
+
"integrity": "sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw==",
|
|
10635
10632
|
"cpu": [
|
|
10636
10633
|
"arm64"
|
|
10637
10634
|
],
|
|
@@ -10645,9 +10642,9 @@
|
|
|
10645
10642
|
}
|
|
10646
10643
|
},
|
|
10647
10644
|
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
10648
|
-
"version": "4.3.
|
|
10649
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.
|
|
10650
|
-
"integrity": "sha512-
|
|
10645
|
+
"version": "4.3.3",
|
|
10646
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.3.tgz",
|
|
10647
|
+
"integrity": "sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw==",
|
|
10651
10648
|
"cpu": [
|
|
10652
10649
|
"arm64"
|
|
10653
10650
|
],
|
|
@@ -10661,9 +10658,9 @@
|
|
|
10661
10658
|
}
|
|
10662
10659
|
},
|
|
10663
10660
|
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
10664
|
-
"version": "4.3.
|
|
10665
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.
|
|
10666
|
-
"integrity": "sha512-
|
|
10661
|
+
"version": "4.3.3",
|
|
10662
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.3.tgz",
|
|
10663
|
+
"integrity": "sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw==",
|
|
10667
10664
|
"cpu": [
|
|
10668
10665
|
"x64"
|
|
10669
10666
|
],
|
|
@@ -10677,9 +10674,9 @@
|
|
|
10677
10674
|
}
|
|
10678
10675
|
},
|
|
10679
10676
|
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
10680
|
-
"version": "4.3.
|
|
10681
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.
|
|
10682
|
-
"integrity": "sha512-
|
|
10677
|
+
"version": "4.3.3",
|
|
10678
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.3.tgz",
|
|
10679
|
+
"integrity": "sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw==",
|
|
10683
10680
|
"cpu": [
|
|
10684
10681
|
"x64"
|
|
10685
10682
|
],
|
|
@@ -10693,9 +10690,9 @@
|
|
|
10693
10690
|
}
|
|
10694
10691
|
},
|
|
10695
10692
|
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
10696
|
-
"version": "4.3.
|
|
10697
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.
|
|
10698
|
-
"integrity": "sha512-
|
|
10693
|
+
"version": "4.3.3",
|
|
10694
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.3.tgz",
|
|
10695
|
+
"integrity": "sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ==",
|
|
10699
10696
|
"cpu": [
|
|
10700
10697
|
"arm"
|
|
10701
10698
|
],
|
|
@@ -10709,9 +10706,9 @@
|
|
|
10709
10706
|
}
|
|
10710
10707
|
},
|
|
10711
10708
|
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
10712
|
-
"version": "4.3.
|
|
10713
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.
|
|
10714
|
-
"integrity": "sha512-
|
|
10709
|
+
"version": "4.3.3",
|
|
10710
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.3.tgz",
|
|
10711
|
+
"integrity": "sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w==",
|
|
10715
10712
|
"cpu": [
|
|
10716
10713
|
"arm64"
|
|
10717
10714
|
],
|
|
@@ -10728,9 +10725,9 @@
|
|
|
10728
10725
|
}
|
|
10729
10726
|
},
|
|
10730
10727
|
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
10731
|
-
"version": "4.3.
|
|
10732
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.
|
|
10733
|
-
"integrity": "sha512-
|
|
10728
|
+
"version": "4.3.3",
|
|
10729
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.3.tgz",
|
|
10730
|
+
"integrity": "sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==",
|
|
10734
10731
|
"cpu": [
|
|
10735
10732
|
"arm64"
|
|
10736
10733
|
],
|
|
@@ -10747,9 +10744,9 @@
|
|
|
10747
10744
|
}
|
|
10748
10745
|
},
|
|
10749
10746
|
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
10750
|
-
"version": "4.3.
|
|
10751
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.
|
|
10752
|
-
"integrity": "sha512-
|
|
10747
|
+
"version": "4.3.3",
|
|
10748
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.3.tgz",
|
|
10749
|
+
"integrity": "sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==",
|
|
10753
10750
|
"cpu": [
|
|
10754
10751
|
"x64"
|
|
10755
10752
|
],
|
|
@@ -10766,9 +10763,9 @@
|
|
|
10766
10763
|
}
|
|
10767
10764
|
},
|
|
10768
10765
|
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
10769
|
-
"version": "4.3.
|
|
10770
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.
|
|
10771
|
-
"integrity": "sha512-
|
|
10766
|
+
"version": "4.3.3",
|
|
10767
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.3.tgz",
|
|
10768
|
+
"integrity": "sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==",
|
|
10772
10769
|
"cpu": [
|
|
10773
10770
|
"x64"
|
|
10774
10771
|
],
|
|
@@ -10785,9 +10782,9 @@
|
|
|
10785
10782
|
}
|
|
10786
10783
|
},
|
|
10787
10784
|
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
10788
|
-
"version": "4.3.
|
|
10789
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.
|
|
10790
|
-
"integrity": "sha512-
|
|
10785
|
+
"version": "4.3.3",
|
|
10786
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.3.tgz",
|
|
10787
|
+
"integrity": "sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==",
|
|
10791
10788
|
"bundleDependencies": [
|
|
10792
10789
|
"@napi-rs/wasm-runtime",
|
|
10793
10790
|
"@emnapi/core",
|
|
@@ -10874,9 +10871,9 @@
|
|
|
10874
10871
|
"optional": true
|
|
10875
10872
|
},
|
|
10876
10873
|
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
10877
|
-
"version": "4.3.
|
|
10878
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.
|
|
10879
|
-
"integrity": "sha512-
|
|
10874
|
+
"version": "4.3.3",
|
|
10875
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.3.tgz",
|
|
10876
|
+
"integrity": "sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==",
|
|
10880
10877
|
"cpu": [
|
|
10881
10878
|
"arm64"
|
|
10882
10879
|
],
|
|
@@ -10890,9 +10887,9 @@
|
|
|
10890
10887
|
}
|
|
10891
10888
|
},
|
|
10892
10889
|
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
10893
|
-
"version": "4.3.
|
|
10894
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.
|
|
10895
|
-
"integrity": "sha512-
|
|
10890
|
+
"version": "4.3.3",
|
|
10891
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.3.tgz",
|
|
10892
|
+
"integrity": "sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw==",
|
|
10896
10893
|
"cpu": [
|
|
10897
10894
|
"x64"
|
|
10898
10895
|
],
|
|
@@ -10906,14 +10903,14 @@
|
|
|
10906
10903
|
}
|
|
10907
10904
|
},
|
|
10908
10905
|
"node_modules/@tailwindcss/vite": {
|
|
10909
|
-
"version": "4.3.
|
|
10910
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.
|
|
10911
|
-
"integrity": "sha512-
|
|
10906
|
+
"version": "4.3.3",
|
|
10907
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.3.tgz",
|
|
10908
|
+
"integrity": "sha512-yYU8cogLeSh/ms2jh8Fj7jaba/EWa7Ja6GoUqYZaraEuCI5YS6ms6ObZgjjedm+jm6XZjdNRWBpPP6Z86oOxcw==",
|
|
10912
10909
|
"license": "MIT",
|
|
10913
10910
|
"dependencies": {
|
|
10914
|
-
"@tailwindcss/node": "4.3.
|
|
10915
|
-
"@tailwindcss/oxide": "4.3.
|
|
10916
|
-
"tailwindcss": "4.3.
|
|
10911
|
+
"@tailwindcss/node": "4.3.3",
|
|
10912
|
+
"@tailwindcss/oxide": "4.3.3",
|
|
10913
|
+
"tailwindcss": "4.3.3"
|
|
10917
10914
|
},
|
|
10918
10915
|
"peerDependencies": {
|
|
10919
10916
|
"vite": "^5.2.0 || ^6 || ^7 || ^8"
|
|
@@ -10940,6 +10937,17 @@
|
|
|
10940
10937
|
"node": ">=18"
|
|
10941
10938
|
}
|
|
10942
10939
|
},
|
|
10940
|
+
"node_modules/@testing-library/dom/node_modules/@babel/runtime": {
|
|
10941
|
+
"version": "7.29.7",
|
|
10942
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
10943
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
10944
|
+
"dev": true,
|
|
10945
|
+
"license": "MIT",
|
|
10946
|
+
"peer": true,
|
|
10947
|
+
"engines": {
|
|
10948
|
+
"node": ">=6.9.0"
|
|
10949
|
+
}
|
|
10950
|
+
},
|
|
10943
10951
|
"node_modules/@testing-library/jest-dom": {
|
|
10944
10952
|
"version": "6.9.1",
|
|
10945
10953
|
"resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz",
|
|
@@ -10995,6 +11003,16 @@
|
|
|
10995
11003
|
}
|
|
10996
11004
|
}
|
|
10997
11005
|
},
|
|
11006
|
+
"node_modules/@testing-library/react/node_modules/@babel/runtime": {
|
|
11007
|
+
"version": "7.29.7",
|
|
11008
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
11009
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
11010
|
+
"dev": true,
|
|
11011
|
+
"license": "MIT",
|
|
11012
|
+
"engines": {
|
|
11013
|
+
"node": ">=6.9.0"
|
|
11014
|
+
}
|
|
11015
|
+
},
|
|
10998
11016
|
"node_modules/@testing-library/user-event": {
|
|
10999
11017
|
"version": "14.6.1",
|
|
11000
11018
|
"resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz",
|
|
@@ -11201,17 +11219,17 @@
|
|
|
11201
11219
|
}
|
|
11202
11220
|
},
|
|
11203
11221
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
11204
|
-
"version": "8.
|
|
11205
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.
|
|
11206
|
-
"integrity": "sha512-
|
|
11222
|
+
"version": "8.64.0",
|
|
11223
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.64.0.tgz",
|
|
11224
|
+
"integrity": "sha512-CGvQPBxN3wZLu6Rz2kFUpZeoCm78xUic92ck39KPePkO1NPOwjCqdQnm5Q87tpWw9vcBvW8XLrDXjH9PWYtJ3Q==",
|
|
11207
11225
|
"dev": true,
|
|
11208
11226
|
"license": "MIT",
|
|
11209
11227
|
"dependencies": {
|
|
11210
11228
|
"@eslint-community/regexpp": "^4.12.2",
|
|
11211
|
-
"@typescript-eslint/scope-manager": "8.
|
|
11212
|
-
"@typescript-eslint/type-utils": "8.
|
|
11213
|
-
"@typescript-eslint/utils": "8.
|
|
11214
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11229
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
11230
|
+
"@typescript-eslint/type-utils": "8.64.0",
|
|
11231
|
+
"@typescript-eslint/utils": "8.64.0",
|
|
11232
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
11215
11233
|
"ignore": "^7.0.5",
|
|
11216
11234
|
"natural-compare": "^1.4.0",
|
|
11217
11235
|
"ts-api-utils": "^2.5.0"
|
|
@@ -11224,15 +11242,15 @@
|
|
|
11224
11242
|
"url": "https://opencollective.com/typescript-eslint"
|
|
11225
11243
|
},
|
|
11226
11244
|
"peerDependencies": {
|
|
11227
|
-
"@typescript-eslint/parser": "^8.
|
|
11245
|
+
"@typescript-eslint/parser": "^8.64.0",
|
|
11228
11246
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
11229
11247
|
"typescript": ">=4.8.4 <6.1.0"
|
|
11230
11248
|
}
|
|
11231
11249
|
},
|
|
11232
11250
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
11233
|
-
"version": "7.0.
|
|
11234
|
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.
|
|
11235
|
-
"integrity": "sha512-
|
|
11251
|
+
"version": "7.0.6",
|
|
11252
|
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.6.tgz",
|
|
11253
|
+
"integrity": "sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==",
|
|
11236
11254
|
"dev": true,
|
|
11237
11255
|
"license": "MIT",
|
|
11238
11256
|
"engines": {
|
|
@@ -11240,16 +11258,16 @@
|
|
|
11240
11258
|
}
|
|
11241
11259
|
},
|
|
11242
11260
|
"node_modules/@typescript-eslint/parser": {
|
|
11243
|
-
"version": "8.
|
|
11244
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.
|
|
11245
|
-
"integrity": "sha512-
|
|
11261
|
+
"version": "8.64.0",
|
|
11262
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.64.0.tgz",
|
|
11263
|
+
"integrity": "sha512-KA0OshtlcCCXmbfqyZkM5pV3/WNraJf7DkJRLpyrmwPtud57H5BDX7C3k0LPSPxpprfRL+cJDGabF10mvNCoCw==",
|
|
11246
11264
|
"dev": true,
|
|
11247
11265
|
"license": "MIT",
|
|
11248
11266
|
"dependencies": {
|
|
11249
|
-
"@typescript-eslint/scope-manager": "8.
|
|
11250
|
-
"@typescript-eslint/types": "8.
|
|
11251
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
11252
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11267
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
11268
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11269
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
11270
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
11253
11271
|
"debug": "^4.4.3"
|
|
11254
11272
|
},
|
|
11255
11273
|
"engines": {
|
|
@@ -11265,14 +11283,14 @@
|
|
|
11265
11283
|
}
|
|
11266
11284
|
},
|
|
11267
11285
|
"node_modules/@typescript-eslint/project-service": {
|
|
11268
|
-
"version": "8.
|
|
11269
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.
|
|
11270
|
-
"integrity": "sha512-
|
|
11286
|
+
"version": "8.64.0",
|
|
11287
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.64.0.tgz",
|
|
11288
|
+
"integrity": "sha512-tk4WpOJ6IEbGrVHaNmM0YRrwAD3exZlIK3iadQNAxh4YKk6jvUQ4ecq18n+v7+meh+cJ3j+D8nbk8sRKhlwLQg==",
|
|
11271
11289
|
"dev": true,
|
|
11272
11290
|
"license": "MIT",
|
|
11273
11291
|
"dependencies": {
|
|
11274
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
11275
|
-
"@typescript-eslint/types": "^8.
|
|
11292
|
+
"@typescript-eslint/tsconfig-utils": "^8.64.0",
|
|
11293
|
+
"@typescript-eslint/types": "^8.64.0",
|
|
11276
11294
|
"debug": "^4.4.3"
|
|
11277
11295
|
},
|
|
11278
11296
|
"engines": {
|
|
@@ -11287,14 +11305,14 @@
|
|
|
11287
11305
|
}
|
|
11288
11306
|
},
|
|
11289
11307
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
11290
|
-
"version": "8.
|
|
11291
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
11292
|
-
"integrity": "sha512-
|
|
11308
|
+
"version": "8.64.0",
|
|
11309
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.64.0.tgz",
|
|
11310
|
+
"integrity": "sha512-CXEaFdYXjSTgKhisNkwCcJwTP8Pl+fmRrEQrri4nm3vU743bALrxzLmq7fHG/7e6a5xO0lDYeURpZmBuhHk54w==",
|
|
11293
11311
|
"dev": true,
|
|
11294
11312
|
"license": "MIT",
|
|
11295
11313
|
"dependencies": {
|
|
11296
|
-
"@typescript-eslint/types": "8.
|
|
11297
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11314
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11315
|
+
"@typescript-eslint/visitor-keys": "8.64.0"
|
|
11298
11316
|
},
|
|
11299
11317
|
"engines": {
|
|
11300
11318
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -11305,9 +11323,9 @@
|
|
|
11305
11323
|
}
|
|
11306
11324
|
},
|
|
11307
11325
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
11308
|
-
"version": "8.
|
|
11309
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.
|
|
11310
|
-
"integrity": "sha512-
|
|
11326
|
+
"version": "8.64.0",
|
|
11327
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.64.0.tgz",
|
|
11328
|
+
"integrity": "sha512-2yo8rRNKuzbVWQp5kslhANqZ2uDAeROQHBRZNPu8JDsHmeFNj/XJJhX/FhNUWmkHHvoNsKa6+tHJiig87EzsQw==",
|
|
11311
11329
|
"dev": true,
|
|
11312
11330
|
"license": "MIT",
|
|
11313
11331
|
"engines": {
|
|
@@ -11322,15 +11340,15 @@
|
|
|
11322
11340
|
}
|
|
11323
11341
|
},
|
|
11324
11342
|
"node_modules/@typescript-eslint/type-utils": {
|
|
11325
|
-
"version": "8.
|
|
11326
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.
|
|
11327
|
-
"integrity": "sha512-
|
|
11343
|
+
"version": "8.64.0",
|
|
11344
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.64.0.tgz",
|
|
11345
|
+
"integrity": "sha512-XWG4Fmmv/6SvyS9nH8jWrKs6terwJvE8cyRt1CzYYqzp9OrPhCT4cMc/f7C6RZCwG+qMmiffJS1/qJP8G1URtg==",
|
|
11328
11346
|
"dev": true,
|
|
11329
11347
|
"license": "MIT",
|
|
11330
11348
|
"dependencies": {
|
|
11331
|
-
"@typescript-eslint/types": "8.
|
|
11332
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
11333
|
-
"@typescript-eslint/utils": "8.
|
|
11349
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11350
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
11351
|
+
"@typescript-eslint/utils": "8.64.0",
|
|
11334
11352
|
"debug": "^4.4.3",
|
|
11335
11353
|
"ts-api-utils": "^2.5.0"
|
|
11336
11354
|
},
|
|
@@ -11347,9 +11365,9 @@
|
|
|
11347
11365
|
}
|
|
11348
11366
|
},
|
|
11349
11367
|
"node_modules/@typescript-eslint/types": {
|
|
11350
|
-
"version": "8.
|
|
11351
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.
|
|
11352
|
-
"integrity": "sha512-
|
|
11368
|
+
"version": "8.64.0",
|
|
11369
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.64.0.tgz",
|
|
11370
|
+
"integrity": "sha512-qjhfuTfLXjA4IOzXvz0rTjT01BqEiIgPoUeMwiEjnaHKJMTNo8rH5pYW1a2L/0Dnux2fPC85AeyJoWaGa8WxTA==",
|
|
11353
11371
|
"dev": true,
|
|
11354
11372
|
"license": "MIT",
|
|
11355
11373
|
"engines": {
|
|
@@ -11361,16 +11379,16 @@
|
|
|
11361
11379
|
}
|
|
11362
11380
|
},
|
|
11363
11381
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
11364
|
-
"version": "8.
|
|
11365
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
11366
|
-
"integrity": "sha512-
|
|
11382
|
+
"version": "8.64.0",
|
|
11383
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.64.0.tgz",
|
|
11384
|
+
"integrity": "sha512-Pztpsn1aCE1oWDvDEfUk31nngvvF7vUB5SwHFEaZIFpvw7WJtqUHHL4plBZDA9HfWJJjL13BdG0YrJInTUvoVA==",
|
|
11367
11385
|
"dev": true,
|
|
11368
11386
|
"license": "MIT",
|
|
11369
11387
|
"dependencies": {
|
|
11370
|
-
"@typescript-eslint/project-service": "8.
|
|
11371
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
11372
|
-
"@typescript-eslint/types": "8.
|
|
11373
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11388
|
+
"@typescript-eslint/project-service": "8.64.0",
|
|
11389
|
+
"@typescript-eslint/tsconfig-utils": "8.64.0",
|
|
11390
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11391
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
11374
11392
|
"debug": "^4.4.3",
|
|
11375
11393
|
"minimatch": "^10.2.2",
|
|
11376
11394
|
"semver": "^7.7.3",
|
|
@@ -11441,16 +11459,16 @@
|
|
|
11441
11459
|
}
|
|
11442
11460
|
},
|
|
11443
11461
|
"node_modules/@typescript-eslint/utils": {
|
|
11444
|
-
"version": "8.
|
|
11445
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.
|
|
11446
|
-
"integrity": "sha512-
|
|
11462
|
+
"version": "8.64.0",
|
|
11463
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.64.0.tgz",
|
|
11464
|
+
"integrity": "sha512-aJUGVB3+U0htrrCjoA8qukw8cm8fNCGAxK/tVoS70k8aeb7DETKeFozRiVFIwEeN9WJLsjaP3ph8I60tY2XZoQ==",
|
|
11447
11465
|
"dev": true,
|
|
11448
11466
|
"license": "MIT",
|
|
11449
11467
|
"dependencies": {
|
|
11450
11468
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
11451
|
-
"@typescript-eslint/scope-manager": "8.
|
|
11452
|
-
"@typescript-eslint/types": "8.
|
|
11453
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
11469
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
11470
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11471
|
+
"@typescript-eslint/typescript-estree": "8.64.0"
|
|
11454
11472
|
},
|
|
11455
11473
|
"engines": {
|
|
11456
11474
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -11465,13 +11483,13 @@
|
|
|
11465
11483
|
}
|
|
11466
11484
|
},
|
|
11467
11485
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
11468
|
-
"version": "8.
|
|
11469
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
11470
|
-
"integrity": "sha512-
|
|
11486
|
+
"version": "8.64.0",
|
|
11487
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.64.0.tgz",
|
|
11488
|
+
"integrity": "sha512-mrtuL8Nsn6gi2H4mo5KMTp823M+3Q19Ew/i+Zlikq20tIMm99C3Ez0dCmkWWnxut20esQvTg8aUSEhMcAOXhEw==",
|
|
11471
11489
|
"dev": true,
|
|
11472
11490
|
"license": "MIT",
|
|
11473
11491
|
"dependencies": {
|
|
11474
|
-
"@typescript-eslint/types": "8.
|
|
11492
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11475
11493
|
"eslint-visitor-keys": "^5.0.0"
|
|
11476
11494
|
},
|
|
11477
11495
|
"engines": {
|
|
@@ -12253,9 +12271,9 @@
|
|
|
12253
12271
|
}
|
|
12254
12272
|
},
|
|
12255
12273
|
"node_modules/baseline-browser-mapping": {
|
|
12256
|
-
"version": "2.10.
|
|
12257
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
12258
|
-
"integrity": "sha512-
|
|
12274
|
+
"version": "2.10.43",
|
|
12275
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.43.tgz",
|
|
12276
|
+
"integrity": "sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==",
|
|
12259
12277
|
"license": "Apache-2.0",
|
|
12260
12278
|
"bin": {
|
|
12261
12279
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -12417,9 +12435,9 @@
|
|
|
12417
12435
|
}
|
|
12418
12436
|
},
|
|
12419
12437
|
"node_modules/browserslist": {
|
|
12420
|
-
"version": "4.28.
|
|
12421
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.
|
|
12422
|
-
"integrity": "sha512-
|
|
12438
|
+
"version": "4.28.6",
|
|
12439
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.6.tgz",
|
|
12440
|
+
"integrity": "sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==",
|
|
12423
12441
|
"funding": [
|
|
12424
12442
|
{
|
|
12425
12443
|
"type": "opencollective",
|
|
@@ -12437,9 +12455,9 @@
|
|
|
12437
12455
|
"license": "MIT",
|
|
12438
12456
|
"dependencies": {
|
|
12439
12457
|
"baseline-browser-mapping": "^2.10.42",
|
|
12440
|
-
"caniuse-lite": "^1.0.
|
|
12441
|
-
"electron-to-chromium": "^1.5.
|
|
12442
|
-
"node-releases": "^2.0.
|
|
12458
|
+
"caniuse-lite": "^1.0.30001803",
|
|
12459
|
+
"electron-to-chromium": "^1.5.389",
|
|
12460
|
+
"node-releases": "^2.0.51",
|
|
12443
12461
|
"update-browserslist-db": "^1.2.3"
|
|
12444
12462
|
},
|
|
12445
12463
|
"bin": {
|
|
@@ -12584,9 +12602,9 @@
|
|
|
12584
12602
|
}
|
|
12585
12603
|
},
|
|
12586
12604
|
"node_modules/caniuse-lite": {
|
|
12587
|
-
"version": "1.0.
|
|
12588
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
12589
|
-
"integrity": "sha512-
|
|
12605
|
+
"version": "1.0.30001806",
|
|
12606
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz",
|
|
12607
|
+
"integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==",
|
|
12590
12608
|
"funding": [
|
|
12591
12609
|
{
|
|
12592
12610
|
"type": "opencollective",
|
|
@@ -13743,6 +13761,16 @@
|
|
|
13743
13761
|
"react": ">=16.12.0"
|
|
13744
13762
|
}
|
|
13745
13763
|
},
|
|
13764
|
+
"node_modules/downshift/node_modules/@babel/runtime": {
|
|
13765
|
+
"version": "7.29.7",
|
|
13766
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
13767
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
13768
|
+
"dev": true,
|
|
13769
|
+
"license": "MIT",
|
|
13770
|
+
"engines": {
|
|
13771
|
+
"node": ">=6.9.0"
|
|
13772
|
+
}
|
|
13773
|
+
},
|
|
13746
13774
|
"node_modules/dunder-proto": {
|
|
13747
13775
|
"version": "1.0.1",
|
|
13748
13776
|
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
@@ -13780,9 +13808,9 @@
|
|
|
13780
13808
|
"license": "MIT"
|
|
13781
13809
|
},
|
|
13782
13810
|
"node_modules/electron-to-chromium": {
|
|
13783
|
-
"version": "1.5.
|
|
13784
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
13785
|
-
"integrity": "sha512-
|
|
13811
|
+
"version": "1.5.393",
|
|
13812
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.393.tgz",
|
|
13813
|
+
"integrity": "sha512-kiDJdIUawuEIcp9XoICKp1iTYDEbgguIPq526N1Q7jIQDeQ3CqoMx71025PI/7E48Ddtw2HuWsVjY7afEgNxmg==",
|
|
13786
13814
|
"license": "ISC"
|
|
13787
13815
|
},
|
|
13788
13816
|
"node_modules/emoji-regex": {
|
|
@@ -13810,9 +13838,9 @@
|
|
|
13810
13838
|
}
|
|
13811
13839
|
},
|
|
13812
13840
|
"node_modules/enhanced-resolve": {
|
|
13813
|
-
"version": "5.
|
|
13814
|
-
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.
|
|
13815
|
-
"integrity": "sha512-
|
|
13841
|
+
"version": "5.24.2",
|
|
13842
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.2.tgz",
|
|
13843
|
+
"integrity": "sha512-rpsZEGT1jFuve6QlpyRp9ckQ+kN61hvF9BzCPyMdaKTm8UJce96KBn3sorXOFXlzjPrs3Vc4T1NsSroZ3PxlFw==",
|
|
13816
13844
|
"license": "MIT",
|
|
13817
13845
|
"dependencies": {
|
|
13818
13846
|
"graceful-fs": "^4.2.4",
|
|
@@ -13998,9 +14026,9 @@
|
|
|
13998
14026
|
}
|
|
13999
14027
|
},
|
|
14000
14028
|
"node_modules/es-iterator-helpers": {
|
|
14001
|
-
"version": "1.
|
|
14002
|
-
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.
|
|
14003
|
-
"integrity": "sha512-
|
|
14029
|
+
"version": "1.4.0",
|
|
14030
|
+
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.4.0.tgz",
|
|
14031
|
+
"integrity": "sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==",
|
|
14004
14032
|
"dev": true,
|
|
14005
14033
|
"license": "MIT",
|
|
14006
14034
|
"dependencies": {
|
|
@@ -14026,9 +14054,9 @@
|
|
|
14026
14054
|
}
|
|
14027
14055
|
},
|
|
14028
14056
|
"node_modules/es-module-lexer": {
|
|
14029
|
-
"version": "2.3.
|
|
14030
|
-
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.
|
|
14031
|
-
"integrity": "sha512-
|
|
14057
|
+
"version": "2.3.1",
|
|
14058
|
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.1.tgz",
|
|
14059
|
+
"integrity": "sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==",
|
|
14032
14060
|
"dev": true,
|
|
14033
14061
|
"license": "MIT"
|
|
14034
14062
|
},
|
|
@@ -14163,9 +14191,9 @@
|
|
|
14163
14191
|
}
|
|
14164
14192
|
},
|
|
14165
14193
|
"node_modules/eslint": {
|
|
14166
|
-
"version": "9.39.
|
|
14167
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.
|
|
14168
|
-
"integrity": "sha512-
|
|
14194
|
+
"version": "9.39.5",
|
|
14195
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.5.tgz",
|
|
14196
|
+
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
14169
14197
|
"dev": true,
|
|
14170
14198
|
"license": "MIT",
|
|
14171
14199
|
"dependencies": {
|
|
@@ -14174,8 +14202,8 @@
|
|
|
14174
14202
|
"@eslint/config-array": "^0.21.2",
|
|
14175
14203
|
"@eslint/config-helpers": "^0.4.2",
|
|
14176
14204
|
"@eslint/core": "^0.17.0",
|
|
14177
|
-
"@eslint/eslintrc": "^3.3.
|
|
14178
|
-
"@eslint/js": "9.39.
|
|
14205
|
+
"@eslint/eslintrc": "^3.3.6",
|
|
14206
|
+
"@eslint/js": "9.39.5",
|
|
14179
14207
|
"@eslint/plugin-kit": "^0.4.1",
|
|
14180
14208
|
"@humanfs/node": "^0.16.6",
|
|
14181
14209
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -14588,11 +14616,12 @@
|
|
|
14588
14616
|
}
|
|
14589
14617
|
},
|
|
14590
14618
|
"node_modules/express-rate-limit": {
|
|
14591
|
-
"version": "8.
|
|
14592
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.
|
|
14593
|
-
"integrity": "sha512-
|
|
14619
|
+
"version": "8.6.0",
|
|
14620
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.6.0.tgz",
|
|
14621
|
+
"integrity": "sha512-XKJXDsASUOo0LLtFwW5hCcQGH0N4WQc/Rn8/Pvoia+TJFOkkFPvrtW9lZOeeNcxQJspvOIERMwiRLsVFlhHEkA==",
|
|
14594
14622
|
"license": "MIT",
|
|
14595
14623
|
"dependencies": {
|
|
14624
|
+
"debug": "^4.4.3",
|
|
14596
14625
|
"ip-address": "^10.2.0"
|
|
14597
14626
|
},
|
|
14598
14627
|
"engines": {
|
|
@@ -15561,9 +15590,9 @@
|
|
|
15561
15590
|
}
|
|
15562
15591
|
},
|
|
15563
15592
|
"node_modules/graphql-ws": {
|
|
15564
|
-
"version": "6.0
|
|
15565
|
-
"resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-6.0.
|
|
15566
|
-
"integrity": "sha512-
|
|
15593
|
+
"version": "6.1.0",
|
|
15594
|
+
"resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-6.1.0.tgz",
|
|
15595
|
+
"integrity": "sha512-7ft6KWkuaLnLABwzEIimjUMeF0iByo2ThD6q0MICgsvp6nDuT5ppubKzEHniu8Kmlp5GNsLgr5dil8JMrIwUEQ==",
|
|
15567
15596
|
"dev": true,
|
|
15568
15597
|
"license": "MIT",
|
|
15569
15598
|
"engines": {
|
|
@@ -15572,7 +15601,7 @@
|
|
|
15572
15601
|
"peerDependencies": {
|
|
15573
15602
|
"@fastify/websocket": "^10 || ^11",
|
|
15574
15603
|
"crossws": "~0.3",
|
|
15575
|
-
"graphql": "^15.10.1 || ^16",
|
|
15604
|
+
"graphql": "^15.10.1 || ^16 || ^17",
|
|
15576
15605
|
"ws": "^8"
|
|
15577
15606
|
},
|
|
15578
15607
|
"peerDependenciesMeta": {
|
|
@@ -15699,9 +15728,9 @@
|
|
|
15699
15728
|
}
|
|
15700
15729
|
},
|
|
15701
15730
|
"node_modules/headers-polyfill/node_modules/set-cookie-parser": {
|
|
15702
|
-
"version": "3.1.
|
|
15703
|
-
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-3.1.
|
|
15704
|
-
"integrity": "sha512-
|
|
15731
|
+
"version": "3.1.2",
|
|
15732
|
+
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-3.1.2.tgz",
|
|
15733
|
+
"integrity": "sha512-5/r/lTwbJ3zQ+qwdUFZYeRNqda7P5HD8zQKqlSjdGt1/S0cjLAphHusj4Y58ahDtWn/g32xrIS58/ikOvwl0Lw==",
|
|
15705
15734
|
"license": "MIT"
|
|
15706
15735
|
},
|
|
15707
15736
|
"node_modules/help-me": {
|
|
@@ -15728,9 +15757,9 @@
|
|
|
15728
15757
|
}
|
|
15729
15758
|
},
|
|
15730
15759
|
"node_modules/hono": {
|
|
15731
|
-
"version": "4.12.
|
|
15732
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.
|
|
15733
|
-
"integrity": "sha512-
|
|
15760
|
+
"version": "4.12.31",
|
|
15761
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.31.tgz",
|
|
15762
|
+
"integrity": "sha512-zJIHFrl6bq3RDd2YusFNCDlM8qUprxKswyi/OPzPyzKDdyBXDqWx8bZlZ7R+saTdSTatUmb3O7K4SspGPaEOQg==",
|
|
15734
15763
|
"license": "MIT",
|
|
15735
15764
|
"engines": {
|
|
15736
15765
|
"node": ">=16.9.0"
|
|
@@ -18088,9 +18117,9 @@
|
|
|
18088
18117
|
}
|
|
18089
18118
|
},
|
|
18090
18119
|
"node_modules/nanoid": {
|
|
18091
|
-
"version": "3.3.
|
|
18092
|
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.
|
|
18093
|
-
"integrity": "sha512-
|
|
18120
|
+
"version": "3.3.16",
|
|
18121
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
|
|
18122
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
18094
18123
|
"funding": [
|
|
18095
18124
|
{
|
|
18096
18125
|
"type": "github",
|
|
@@ -18242,9 +18271,9 @@
|
|
|
18242
18271
|
}
|
|
18243
18272
|
},
|
|
18244
18273
|
"node_modules/o11y_schema": {
|
|
18245
|
-
"version": "264.
|
|
18246
|
-
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.
|
|
18247
|
-
"integrity": "sha512-
|
|
18274
|
+
"version": "264.97.0",
|
|
18275
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.97.0.tgz",
|
|
18276
|
+
"integrity": "sha512-UMDNXEJy3ABnSXMFRVp0dPiXKuldkfQvt1EMWh/M7wWObJH8hDYK2dmn8oAAqVowD/OdtSiXmHLmSuUFSWlsVw==",
|
|
18248
18277
|
"license": "BSD-3-Clause",
|
|
18249
18278
|
"peer": true
|
|
18250
18279
|
},
|
|
@@ -18371,9 +18400,9 @@
|
|
|
18371
18400
|
}
|
|
18372
18401
|
},
|
|
18373
18402
|
"node_modules/obug": {
|
|
18374
|
-
"version": "2.1.
|
|
18375
|
-
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.
|
|
18376
|
-
"integrity": "sha512-
|
|
18403
|
+
"version": "2.1.4",
|
|
18404
|
+
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.4.tgz",
|
|
18405
|
+
"integrity": "sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==",
|
|
18377
18406
|
"dev": true,
|
|
18378
18407
|
"funding": [
|
|
18379
18408
|
"https://github.com/sponsors/sxzz",
|
|
@@ -19131,9 +19160,9 @@
|
|
|
19131
19160
|
}
|
|
19132
19161
|
},
|
|
19133
19162
|
"node_modules/postcss": {
|
|
19134
|
-
"version": "8.5.
|
|
19135
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
19136
|
-
"integrity": "sha512-
|
|
19163
|
+
"version": "8.5.19",
|
|
19164
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.19.tgz",
|
|
19165
|
+
"integrity": "sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==",
|
|
19137
19166
|
"funding": [
|
|
19138
19167
|
{
|
|
19139
19168
|
"type": "opencollective",
|
|
@@ -19194,9 +19223,9 @@
|
|
|
19194
19223
|
}
|
|
19195
19224
|
},
|
|
19196
19225
|
"node_modules/prettier": {
|
|
19197
|
-
"version": "3.9.
|
|
19198
|
-
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.
|
|
19199
|
-
"integrity": "sha512
|
|
19226
|
+
"version": "3.9.5",
|
|
19227
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.5.tgz",
|
|
19228
|
+
"integrity": "sha512-/FVl766LpUfB5vXgCYOYa0MeV/441Ia99AeICQIQFTY/Nw0roZwULcXpku5i1/m5kt/baz+s4Zogspd839HSMg==",
|
|
19200
19229
|
"dev": true,
|
|
19201
19230
|
"license": "MIT",
|
|
19202
19231
|
"peer": true,
|
|
@@ -21085,9 +21114,9 @@
|
|
|
21085
21114
|
}
|
|
21086
21115
|
},
|
|
21087
21116
|
"node_modules/shell-quote": {
|
|
21088
|
-
"version": "1.
|
|
21089
|
-
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.
|
|
21090
|
-
"integrity": "sha512-
|
|
21117
|
+
"version": "1.10.0",
|
|
21118
|
+
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.10.0.tgz",
|
|
21119
|
+
"integrity": "sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==",
|
|
21091
21120
|
"dev": true,
|
|
21092
21121
|
"license": "MIT",
|
|
21093
21122
|
"engines": {
|
|
@@ -21666,9 +21695,9 @@
|
|
|
21666
21695
|
}
|
|
21667
21696
|
},
|
|
21668
21697
|
"node_modules/systeminformation": {
|
|
21669
|
-
"version": "5.
|
|
21670
|
-
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.
|
|
21671
|
-
"integrity": "sha512-
|
|
21698
|
+
"version": "5.32.0",
|
|
21699
|
+
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.32.0.tgz",
|
|
21700
|
+
"integrity": "sha512-7gfXs43T91miPxxTTtrYitotR/8MPsI2gy3XgUMs6kmOE/JCVqZp6nJpx4XkSutoSqDh6+Y2ovvb2A3RQCR+8w==",
|
|
21672
21701
|
"license": "MIT",
|
|
21673
21702
|
"os": [
|
|
21674
21703
|
"darwin",
|
|
@@ -21684,7 +21713,7 @@
|
|
|
21684
21713
|
"systeminformation": "lib/cli.js"
|
|
21685
21714
|
},
|
|
21686
21715
|
"engines": {
|
|
21687
|
-
"node": ">=
|
|
21716
|
+
"node": ">=10.0.0"
|
|
21688
21717
|
},
|
|
21689
21718
|
"funding": {
|
|
21690
21719
|
"type": "Buy me a coffee",
|
|
@@ -21714,9 +21743,9 @@
|
|
|
21714
21743
|
}
|
|
21715
21744
|
},
|
|
21716
21745
|
"node_modules/tailwindcss": {
|
|
21717
|
-
"version": "4.3.
|
|
21718
|
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.
|
|
21719
|
-
"integrity": "sha512-
|
|
21746
|
+
"version": "4.3.3",
|
|
21747
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.3.tgz",
|
|
21748
|
+
"integrity": "sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ==",
|
|
21720
21749
|
"license": "MIT"
|
|
21721
21750
|
},
|
|
21722
21751
|
"node_modules/tapable": {
|
|
@@ -21855,21 +21884,21 @@
|
|
|
21855
21884
|
}
|
|
21856
21885
|
},
|
|
21857
21886
|
"node_modules/tldts": {
|
|
21858
|
-
"version": "7.4.
|
|
21859
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.
|
|
21860
|
-
"integrity": "sha512-
|
|
21887
|
+
"version": "7.4.9",
|
|
21888
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.9.tgz",
|
|
21889
|
+
"integrity": "sha512-3kZ8wQQ/k5DrChD4X4FVvr2D7E5uoRgAqkPyLpSCGUvqOvqu+JEdr3mwMUaVWb+vMHZaKhF5fp2PBigKsui7hA==",
|
|
21861
21890
|
"license": "MIT",
|
|
21862
21891
|
"dependencies": {
|
|
21863
|
-
"tldts-core": "^7.4.
|
|
21892
|
+
"tldts-core": "^7.4.9"
|
|
21864
21893
|
},
|
|
21865
21894
|
"bin": {
|
|
21866
21895
|
"tldts": "bin/cli.js"
|
|
21867
21896
|
}
|
|
21868
21897
|
},
|
|
21869
21898
|
"node_modules/tldts-core": {
|
|
21870
|
-
"version": "7.4.
|
|
21871
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.
|
|
21872
|
-
"integrity": "sha512-
|
|
21899
|
+
"version": "7.4.9",
|
|
21900
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.9.tgz",
|
|
21901
|
+
"integrity": "sha512-DxKfPBI52p2msTEu7MPhdpdDTBhhVQg1a/8PjQckeyAvO13eMYElX545grIp6nnTGIMZlRvFZPvFhvI/WIz2Vg==",
|
|
21873
21902
|
"license": "MIT"
|
|
21874
21903
|
},
|
|
21875
21904
|
"node_modules/to-regex-range": {
|
|
@@ -22174,16 +22203,16 @@
|
|
|
22174
22203
|
}
|
|
22175
22204
|
},
|
|
22176
22205
|
"node_modules/typescript-eslint": {
|
|
22177
|
-
"version": "8.
|
|
22178
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.
|
|
22179
|
-
"integrity": "sha512-
|
|
22206
|
+
"version": "8.64.0",
|
|
22207
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.64.0.tgz",
|
|
22208
|
+
"integrity": "sha512-0qg+pDNMnqYzqH9AnNK+39tejHvsShUOUUoRUgtnTGE7QuMZhiFDnozq8nHJVq+Wae6NMLKNWLg5WmkcC/ndyQ==",
|
|
22180
22209
|
"dev": true,
|
|
22181
22210
|
"license": "MIT",
|
|
22182
22211
|
"dependencies": {
|
|
22183
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
22184
|
-
"@typescript-eslint/parser": "8.
|
|
22185
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
22186
|
-
"@typescript-eslint/utils": "8.
|
|
22212
|
+
"@typescript-eslint/eslint-plugin": "8.64.0",
|
|
22213
|
+
"@typescript-eslint/parser": "8.64.0",
|
|
22214
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
22215
|
+
"@typescript-eslint/utils": "8.64.0"
|
|
22187
22216
|
},
|
|
22188
22217
|
"engines": {
|
|
22189
22218
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -23033,9 +23062,9 @@
|
|
|
23033
23062
|
"license": "ISC"
|
|
23034
23063
|
},
|
|
23035
23064
|
"node_modules/ws": {
|
|
23036
|
-
"version": "8.21.
|
|
23037
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.
|
|
23038
|
-
"integrity": "sha512
|
|
23065
|
+
"version": "8.21.1",
|
|
23066
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.1.tgz",
|
|
23067
|
+
"integrity": "sha512-+0NTnW77fFN/DjQi6k/Sq/Yvk4Sgajw7urW8V+asjXnRgDs9gyGkdb7EzgfhA4goXsRIZKE28fzIXBHEzhuiWw==",
|
|
23039
23068
|
"dev": true,
|
|
23040
23069
|
"license": "MIT",
|
|
23041
23070
|
"engines": {
|
|
@@ -23237,9 +23266,9 @@
|
|
|
23237
23266
|
}
|
|
23238
23267
|
},
|
|
23239
23268
|
"node_modules/yocto-spinner": {
|
|
23240
|
-
"version": "1.2.
|
|
23241
|
-
"resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-1.2.
|
|
23242
|
-
"integrity": "sha512-
|
|
23269
|
+
"version": "1.2.2",
|
|
23270
|
+
"resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-1.2.2.tgz",
|
|
23271
|
+
"integrity": "sha512-DODGl1wJjA/s5pnJFKau9lIYHT81lnhob1i3e1TjxZRxEhWRKl74nTbWE6H5KlkViQQTo/Z29YFdxzTZAMY3ng==",
|
|
23243
23272
|
"license": "MIT",
|
|
23244
23273
|
"dependencies": {
|
|
23245
23274
|
"yoctocolors": "^2.1.1"
|