create-pixi-vn 2.0.13 → 2.0.14
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/dist/index.mjs +36 -35
- package/package.json +1 -1
- package/template-react-vite-muijoy/components.json +1 -1
- package/template-react-vite-muijoy/package-lock.json +663 -967
- package/template-react-vite-muijoy/package.json +10 -11
- package/template-react-vite-muijoy/src/components/dev-devtools.tsx +25 -0
- package/template-react-vite-muijoy/src/components/menus/settings/menus/history.tsx +78 -62
- package/template-react-vite-muijoy/src/components/screens/narration/index.tsx +5 -2
- package/template-react-vite-muijoy/src/components/ui/alert-dialog.tsx +3 -2
- package/template-react-vite-muijoy/src/components/ui/avatar.tsx +2 -2
- package/template-react-vite-muijoy/src/components/ui/breadcrumb.tsx +5 -4
- package/template-react-vite-muijoy/src/components/ui/button-group.tsx +3 -2
- package/template-react-vite-muijoy/src/components/ui/button.tsx +2 -2
- package/template-react-vite-muijoy/src/components/ui/card.tsx +6 -10
- package/template-react-vite-muijoy/src/components/ui/carousel.tsx +10 -7
- package/template-react-vite-muijoy/src/components/ui/drawer.tsx +2 -0
- package/template-react-vite-muijoy/src/components/ui/field.tsx +8 -5
- package/template-react-vite-muijoy/src/components/ui/input-group.tsx +4 -3
- package/template-react-vite-muijoy/src/components/ui/input.tsx +1 -1
- package/template-react-vite-muijoy/src/components/ui/item.tsx +9 -8
- package/template-react-vite-muijoy/src/components/ui/label.tsx +1 -1
- package/template-react-vite-muijoy/src/components/ui/radio-group.tsx +4 -1
- package/template-react-vite-muijoy/src/components/ui/scroll-area.tsx +5 -2
- package/template-react-vite-muijoy/src/components/ui/select.tsx +3 -2
- package/template-react-vite-muijoy/src/components/ui/separator.tsx +2 -0
- package/template-react-vite-muijoy/src/components/ui/sonner.tsx +4 -4
- package/template-react-vite-muijoy/src/components/ui/spinner.tsx +2 -1
- package/template-react-vite-muijoy/src/components/ui/switch.tsx +3 -0
- package/template-react-vite-muijoy/src/components/ui/textarea.tsx +2 -1
- package/template-react-vite-muijoy/src/components/ui/tooltip.tsx +2 -0
- package/template-react-vite-muijoy/src/lib/hooks/hotkeys-hooks.ts +2 -0
- package/template-react-vite-muijoy/src/lib/hooks/narration-hooks.ts +24 -9
- package/template-react-vite-muijoy/src/lib/hooks/navigation-hooks.ts +29 -10
- package/template-react-vite-muijoy/src/main.tsx +0 -1
- package/{template-react-vite-muijoy-tauri/src/pixi-vn-keys.gen.d.ts → template-react-vite-muijoy/src/pixi-vn.keys.gen.ts} +4 -2
- package/template-react-vite-muijoy/src/routeTree.gen.ts +3 -21
- package/template-react-vite-muijoy/src/routes/__root.tsx +10 -20
- package/template-react-vite-muijoy/src/styles.css +43 -43
- package/template-react-vite-muijoy/vite.config.ts +1 -1
- package/template-react-vite-muijoy-ink/components.json +1 -1
- package/template-react-vite-muijoy-ink/package-lock.json +709 -1051
- package/template-react-vite-muijoy-ink/package.json +11 -12
- package/template-react-vite-muijoy-ink/src/components/dev-devtools.tsx +25 -0
- package/template-react-vite-muijoy-ink/src/components/menus/settings/menus/history.tsx +78 -62
- package/template-react-vite-muijoy-ink/src/components/screens/narration/index.tsx +5 -2
- package/template-react-vite-muijoy-ink/src/components/ui/alert-dialog.tsx +3 -2
- package/template-react-vite-muijoy-ink/src/components/ui/avatar.tsx +2 -2
- package/template-react-vite-muijoy-ink/src/components/ui/breadcrumb.tsx +5 -4
- package/template-react-vite-muijoy-ink/src/components/ui/button-group.tsx +3 -2
- package/template-react-vite-muijoy-ink/src/components/ui/button.tsx +2 -2
- package/template-react-vite-muijoy-ink/src/components/ui/card.tsx +6 -10
- package/template-react-vite-muijoy-ink/src/components/ui/carousel.tsx +10 -7
- package/template-react-vite-muijoy-ink/src/components/ui/drawer.tsx +2 -0
- package/template-react-vite-muijoy-ink/src/components/ui/field.tsx +8 -5
- package/template-react-vite-muijoy-ink/src/components/ui/input-group.tsx +4 -3
- package/template-react-vite-muijoy-ink/src/components/ui/input.tsx +1 -1
- package/template-react-vite-muijoy-ink/src/components/ui/item.tsx +9 -8
- package/template-react-vite-muijoy-ink/src/components/ui/label.tsx +1 -1
- package/template-react-vite-muijoy-ink/src/components/ui/radio-group.tsx +4 -1
- package/template-react-vite-muijoy-ink/src/components/ui/scroll-area.tsx +5 -2
- package/template-react-vite-muijoy-ink/src/components/ui/select.tsx +3 -2
- package/template-react-vite-muijoy-ink/src/components/ui/separator.tsx +2 -0
- package/template-react-vite-muijoy-ink/src/components/ui/sonner.tsx +4 -4
- package/template-react-vite-muijoy-ink/src/components/ui/spinner.tsx +2 -1
- package/template-react-vite-muijoy-ink/src/components/ui/switch.tsx +3 -0
- package/template-react-vite-muijoy-ink/src/components/ui/textarea.tsx +2 -1
- package/template-react-vite-muijoy-ink/src/components/ui/tooltip.tsx +2 -0
- package/template-react-vite-muijoy-ink/src/content/ink/hashtag-commands.ts +2 -1
- package/template-react-vite-muijoy-ink/src/lib/hooks/hotkeys-hooks.ts +2 -0
- package/template-react-vite-muijoy-ink/src/lib/hooks/narration-hooks.ts +24 -9
- package/template-react-vite-muijoy-ink/src/lib/hooks/navigation-hooks.ts +29 -10
- package/template-react-vite-muijoy-ink/src/main.tsx +0 -1
- package/template-react-vite-muijoy-ink/src/pixi-vn.keys.gen.ts +24 -0
- package/template-react-vite-muijoy-ink/src/routeTree.gen.ts +3 -21
- package/template-react-vite-muijoy-ink/src/routes/__root.tsx +10 -20
- package/template-react-vite-muijoy-ink/src/styles.css +43 -43
- package/template-react-vite-muijoy-ink/vite.config.ts +1 -1
- package/template-react-vite-muijoy-ink-tauri/components.json +1 -1
- package/template-react-vite-muijoy-ink-tauri/package-lock.json +709 -1051
- package/template-react-vite-muijoy-ink-tauri/package.json +11 -12
- package/template-react-vite-muijoy-ink-tauri/src/components/dev-devtools.tsx +25 -0
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/menus/history.tsx +78 -62
- package/template-react-vite-muijoy-ink-tauri/src/components/screens/narration/index.tsx +5 -2
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/alert-dialog.tsx +3 -2
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/avatar.tsx +2 -2
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/breadcrumb.tsx +5 -4
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/button-group.tsx +3 -2
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/button.tsx +2 -2
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/card.tsx +6 -10
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/carousel.tsx +10 -7
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/drawer.tsx +2 -0
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/field.tsx +8 -5
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/input-group.tsx +4 -3
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/input.tsx +1 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/item.tsx +9 -8
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/label.tsx +1 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/radio-group.tsx +4 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/scroll-area.tsx +5 -2
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/select.tsx +3 -2
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/separator.tsx +2 -0
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/sonner.tsx +4 -4
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/spinner.tsx +2 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/switch.tsx +3 -0
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/textarea.tsx +2 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/ui/tooltip.tsx +2 -0
- package/template-react-vite-muijoy-ink-tauri/src/content/ink/hashtag-commands.ts +2 -1
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/hotkeys-hooks.ts +2 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/narration-hooks.ts +24 -9
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/navigation-hooks.ts +29 -10
- package/template-react-vite-muijoy-ink-tauri/src/main.tsx +0 -1
- package/{template-react-vite-muijoy-ink/src/pixi-vn-keys.gen.d.ts → template-react-vite-muijoy-ink-tauri/src/pixi-vn.keys.gen.ts} +4 -2
- package/template-react-vite-muijoy-ink-tauri/src/routeTree.gen.ts +3 -21
- package/template-react-vite-muijoy-ink-tauri/src/routes/__root.tsx +10 -20
- package/template-react-vite-muijoy-ink-tauri/src/styles.css +43 -43
- package/template-react-vite-muijoy-ink-tauri/vite.config.ts +1 -1
- package/template-react-vite-muijoy-tauri/components.json +1 -1
- package/template-react-vite-muijoy-tauri/package-lock.json +663 -967
- package/template-react-vite-muijoy-tauri/package.json +10 -11
- package/template-react-vite-muijoy-tauri/src/components/dev-devtools.tsx +25 -0
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/menus/history.tsx +78 -62
- package/template-react-vite-muijoy-tauri/src/components/screens/narration/index.tsx +5 -2
- package/template-react-vite-muijoy-tauri/src/components/ui/alert-dialog.tsx +3 -2
- package/template-react-vite-muijoy-tauri/src/components/ui/avatar.tsx +2 -2
- package/template-react-vite-muijoy-tauri/src/components/ui/breadcrumb.tsx +5 -4
- package/template-react-vite-muijoy-tauri/src/components/ui/button-group.tsx +3 -2
- package/template-react-vite-muijoy-tauri/src/components/ui/button.tsx +2 -2
- package/template-react-vite-muijoy-tauri/src/components/ui/card.tsx +6 -10
- package/template-react-vite-muijoy-tauri/src/components/ui/carousel.tsx +10 -7
- package/template-react-vite-muijoy-tauri/src/components/ui/drawer.tsx +2 -0
- package/template-react-vite-muijoy-tauri/src/components/ui/field.tsx +8 -5
- package/template-react-vite-muijoy-tauri/src/components/ui/input-group.tsx +4 -3
- package/template-react-vite-muijoy-tauri/src/components/ui/input.tsx +1 -1
- package/template-react-vite-muijoy-tauri/src/components/ui/item.tsx +9 -8
- package/template-react-vite-muijoy-tauri/src/components/ui/label.tsx +1 -1
- package/template-react-vite-muijoy-tauri/src/components/ui/radio-group.tsx +4 -1
- package/template-react-vite-muijoy-tauri/src/components/ui/scroll-area.tsx +5 -2
- package/template-react-vite-muijoy-tauri/src/components/ui/select.tsx +3 -2
- package/template-react-vite-muijoy-tauri/src/components/ui/separator.tsx +2 -0
- package/template-react-vite-muijoy-tauri/src/components/ui/sonner.tsx +4 -4
- package/template-react-vite-muijoy-tauri/src/components/ui/spinner.tsx +2 -1
- package/template-react-vite-muijoy-tauri/src/components/ui/switch.tsx +3 -0
- package/template-react-vite-muijoy-tauri/src/components/ui/textarea.tsx +2 -1
- package/template-react-vite-muijoy-tauri/src/components/ui/tooltip.tsx +2 -0
- package/template-react-vite-muijoy-tauri/src/lib/hooks/hotkeys-hooks.ts +2 -0
- package/template-react-vite-muijoy-tauri/src/lib/hooks/narration-hooks.ts +24 -9
- package/template-react-vite-muijoy-tauri/src/lib/hooks/navigation-hooks.ts +29 -10
- package/template-react-vite-muijoy-tauri/src/main.tsx +0 -1
- package/{template-react-vite-muijoy-ink-tauri/src/pixi-vn-keys.gen.d.ts → template-react-vite-muijoy-tauri/src/pixi-vn.keys.gen.ts} +4 -4
- package/template-react-vite-muijoy-tauri/src/routeTree.gen.ts +3 -21
- package/template-react-vite-muijoy-tauri/src/routes/__root.tsx +10 -20
- package/template-react-vite-muijoy-tauri/src/styles.css +43 -43
- package/template-react-vite-muijoy-tauri/vite.config.ts +1 -1
- package/template-react-vite-muijoy/src/pixi-vn-keys.gen.d.ts +0 -20
- package/template-react-vite-muijoy/src/routes/narration.tsx +0 -9
- package/template-react-vite-muijoy-ink/src/routes/narration.tsx +0 -9
- package/template-react-vite-muijoy-ink-tauri/src/routes/narration.tsx +0 -9
- package/template-react-vite-muijoy-tauri/src/routes/narration.tsx +0 -9
|
@@ -9,22 +9,15 @@
|
|
|
9
9
|
"version": "0.1.0",
|
|
10
10
|
"license": "GPL-3.0",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@base-ui/react": "^1.
|
|
13
|
-
"@drincs/pixi-vn": "^1.8.
|
|
14
|
-
"@drincs/pixi-vn-spine": "^0.2.1",
|
|
12
|
+
"@base-ui/react": "^1.6.0",
|
|
13
|
+
"@drincs/pixi-vn": "^1.8.16",
|
|
15
14
|
"@tailwindcss/vite": "^4.3.0",
|
|
16
15
|
"@tanstack/hotkeys": "^0.8.0",
|
|
17
|
-
"@tanstack/react-devtools": "^0.10.5",
|
|
18
16
|
"@tanstack/react-hotkeys": "^0.10.0",
|
|
19
|
-
"@tanstack/react-hotkeys-devtools": "^0.7.0",
|
|
20
17
|
"@tanstack/react-pacer": "^0.22.1",
|
|
21
|
-
"@tanstack/react-pacer-devtools": "^0.7.1",
|
|
22
18
|
"@tanstack/react-query": "latest",
|
|
23
|
-
"@tanstack/react-query-devtools": "latest",
|
|
24
19
|
"@tanstack/react-router": "latest",
|
|
25
|
-
"@tanstack/react-router-devtools": "latest",
|
|
26
20
|
"@tanstack/react-store": "latest",
|
|
27
|
-
"@tanstack/router-plugin": "latest",
|
|
28
21
|
"@tanstack/store": "latest",
|
|
29
22
|
"@tauri-apps/api": "^2",
|
|
30
23
|
"@tauri-apps/plugin-opener": "^2",
|
|
@@ -36,7 +29,7 @@
|
|
|
36
29
|
"i18next-browser-languagedetector": "^8.2.1",
|
|
37
30
|
"i18next-chained-backend": "^5.0.4",
|
|
38
31
|
"i18next-resources-to-backend": "^1.2.1",
|
|
39
|
-
"lucide-react": "^1.
|
|
32
|
+
"lucide-react": "^1.21.0",
|
|
40
33
|
"next-themes": "^0.4.6",
|
|
41
34
|
"react": "^19.2.6",
|
|
42
35
|
"react-color-palette": "^7.3.1",
|
|
@@ -47,7 +40,7 @@
|
|
|
47
40
|
"react-resizable-panels": "^4.11.2",
|
|
48
41
|
"rehype-raw": "^7.0.0",
|
|
49
42
|
"remark-gfm": "^4.0.1",
|
|
50
|
-
"shadcn": "^4.
|
|
43
|
+
"shadcn": "^4.11.0",
|
|
51
44
|
"shade-generator": "^1.2.7",
|
|
52
45
|
"sonner": "^2.0.7",
|
|
53
46
|
"tailwind-animations": "^1.0.1",
|
|
@@ -61,6 +54,12 @@
|
|
|
61
54
|
"@biomejs/biome": "latest",
|
|
62
55
|
"@tailwindcss/typography": "^0.5.19",
|
|
63
56
|
"@tanstack/devtools-vite": "latest",
|
|
57
|
+
"@tanstack/react-devtools": "^0.10.7",
|
|
58
|
+
"@tanstack/react-hotkeys-devtools": "^0.7.0",
|
|
59
|
+
"@tanstack/react-pacer-devtools": "^0.7.1",
|
|
60
|
+
"@tanstack/react-query-devtools": "latest",
|
|
61
|
+
"@tanstack/react-router-devtools": "latest",
|
|
62
|
+
"@tanstack/router-plugin": "latest",
|
|
64
63
|
"@tauri-apps/cli": "^2",
|
|
65
64
|
"@tauri-apps/plugin-process": "^2.3.1",
|
|
66
65
|
"@types/node": "^25.9.1",
|
|
@@ -1722,13 +1721,13 @@
|
|
|
1722
1721
|
}
|
|
1723
1722
|
},
|
|
1724
1723
|
"node_modules/@base-ui/react": {
|
|
1725
|
-
"version": "1.
|
|
1726
|
-
"resolved": "https://registry.npmjs.org/@base-ui/react/-/react-1.
|
|
1727
|
-
"integrity": "sha512
|
|
1724
|
+
"version": "1.6.0",
|
|
1725
|
+
"resolved": "https://registry.npmjs.org/@base-ui/react/-/react-1.6.0.tgz",
|
|
1726
|
+
"integrity": "sha512-/jzjTWJYXhRFO45Bev9lc3cHbmjzCMpUqbMZ2AgKy/z25mY9B6shGSNcXcjQar9n5doM0KYW1W8fcFv2jZBuMw==",
|
|
1728
1727
|
"license": "MIT",
|
|
1729
1728
|
"dependencies": {
|
|
1730
1729
|
"@babel/runtime": "^7.29.2",
|
|
1731
|
-
"@base-ui/utils": "0.
|
|
1730
|
+
"@base-ui/utils": "0.3.1",
|
|
1732
1731
|
"@floating-ui/react-dom": "^2.1.8",
|
|
1733
1732
|
"@floating-ui/utils": "^0.2.11",
|
|
1734
1733
|
"use-sync-external-store": "^1.6.0"
|
|
@@ -1760,14 +1759,14 @@
|
|
|
1760
1759
|
}
|
|
1761
1760
|
},
|
|
1762
1761
|
"node_modules/@base-ui/utils": {
|
|
1763
|
-
"version": "0.
|
|
1764
|
-
"resolved": "https://registry.npmjs.org/@base-ui/utils/-/utils-0.
|
|
1765
|
-
"integrity": "sha512-
|
|
1762
|
+
"version": "0.3.1",
|
|
1763
|
+
"resolved": "https://registry.npmjs.org/@base-ui/utils/-/utils-0.3.1.tgz",
|
|
1764
|
+
"integrity": "sha512-gFFiltORVmW/N6IILTGxizP3PBpVpysqML1ALY5Vk0mH+7faVkCknOU31goYHN5Aoek2dkjxva1XOD2Ce9WuIg==",
|
|
1766
1765
|
"license": "MIT",
|
|
1767
1766
|
"dependencies": {
|
|
1768
1767
|
"@babel/runtime": "^7.29.2",
|
|
1769
1768
|
"@floating-ui/utils": "^0.2.11",
|
|
1770
|
-
"reselect": "^5.
|
|
1769
|
+
"reselect": "^5.2.0",
|
|
1771
1770
|
"use-sync-external-store": "^1.6.0"
|
|
1772
1771
|
},
|
|
1773
1772
|
"peerDependencies": {
|
|
@@ -2118,9 +2117,9 @@
|
|
|
2118
2117
|
}
|
|
2119
2118
|
},
|
|
2120
2119
|
"node_modules/@drincs/pixi-vn": {
|
|
2121
|
-
"version": "1.8.
|
|
2122
|
-
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn/-/pixi-vn-1.8.
|
|
2123
|
-
"integrity": "sha512-
|
|
2120
|
+
"version": "1.8.16",
|
|
2121
|
+
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn/-/pixi-vn-1.8.16.tgz",
|
|
2122
|
+
"integrity": "sha512-FUb5EGBizpGcfx1VZ1htqRM2pnJ3vbBgfol1bWJ41EIlz543U+qanS0INPiQqeS689s/ZJXj9fnzkSs19Wbzsw==",
|
|
2124
2123
|
"license": "LGPL-2.1",
|
|
2125
2124
|
"workspaces": [
|
|
2126
2125
|
"sandbox"
|
|
@@ -2144,25 +2143,6 @@
|
|
|
2144
2143
|
}
|
|
2145
2144
|
}
|
|
2146
2145
|
},
|
|
2147
|
-
"node_modules/@drincs/pixi-vn-spine": {
|
|
2148
|
-
"version": "0.2.1",
|
|
2149
|
-
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-spine/-/pixi-vn-spine-0.2.1.tgz",
|
|
2150
|
-
"integrity": "sha512-5Ae8HlCANi3qha4LcsZpqpnHuhBQJU0r6PzyQbT+h5CDUJv7ynPyHv6JTHV7/iwA69vNTZdVrhcGqcZdITm6dA==",
|
|
2151
|
-
"license": "LGPL-2.1",
|
|
2152
|
-
"dependencies": {
|
|
2153
|
-
"@esotericsoftware/spine-core": "^4.2.102",
|
|
2154
|
-
"@esotericsoftware/spine-pixi-v8": "^4.2.102",
|
|
2155
|
-
"vitest": "^4.0.18"
|
|
2156
|
-
},
|
|
2157
|
-
"funding": {
|
|
2158
|
-
"url": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1"
|
|
2159
|
-
},
|
|
2160
|
-
"peerDependencies": {
|
|
2161
|
-
"@drincs/pixi-vn": ">=1.5.13",
|
|
2162
|
-
"@esotericsoftware/spine-core": "^4.2.0",
|
|
2163
|
-
"@esotericsoftware/spine-pixi-v8": "^4.2.0"
|
|
2164
|
-
}
|
|
2165
|
-
},
|
|
2166
2146
|
"node_modules/@ecies/ciphers": {
|
|
2167
2147
|
"version": "0.2.6",
|
|
2168
2148
|
"resolved": "https://registry.npmjs.org/@ecies/ciphers/-/ciphers-0.2.6.tgz",
|
|
@@ -2208,33 +2188,6 @@
|
|
|
2208
2188
|
"tslib": "^2.4.0"
|
|
2209
2189
|
}
|
|
2210
2190
|
},
|
|
2211
|
-
"node_modules/@esotericsoftware/spine-canvas": {
|
|
2212
|
-
"version": "4.2.114",
|
|
2213
|
-
"resolved": "https://registry.npmjs.org/@esotericsoftware/spine-canvas/-/spine-canvas-4.2.114.tgz",
|
|
2214
|
-
"integrity": "sha512-S3dCXYfp5188n9JXLQQWBHfDxmBLWZlyEBZ2SXm3EIq6CSOzs8U+BT0iMCJOe1qRcNdysOxbCsOJsGOtIknjuw==",
|
|
2215
|
-
"license": "LicenseRef-LICENSE",
|
|
2216
|
-
"dependencies": {
|
|
2217
|
-
"@esotericsoftware/spine-core": "4.2.114"
|
|
2218
|
-
}
|
|
2219
|
-
},
|
|
2220
|
-
"node_modules/@esotericsoftware/spine-core": {
|
|
2221
|
-
"version": "4.2.114",
|
|
2222
|
-
"resolved": "https://registry.npmjs.org/@esotericsoftware/spine-core/-/spine-core-4.2.114.tgz",
|
|
2223
|
-
"integrity": "sha512-YB5DFjRXbvS6pusY1XNPFurgp8mGsS9ii7lqpIzi3LgNQt8H6+br8l/zqOzHjeY38aAXQfaDdvUNOES2KHrOPg==",
|
|
2224
|
-
"license": "LicenseRef-LICENSE"
|
|
2225
|
-
},
|
|
2226
|
-
"node_modules/@esotericsoftware/spine-pixi-v8": {
|
|
2227
|
-
"version": "4.2.114",
|
|
2228
|
-
"resolved": "https://registry.npmjs.org/@esotericsoftware/spine-pixi-v8/-/spine-pixi-v8-4.2.114.tgz",
|
|
2229
|
-
"integrity": "sha512-SIzhScVNqGKe5C8ProlI7Cb1uquO78T4jp8gXQf/EG+Cpm+4+yUZ7z2LIE50n7vbdbXT23gKXkNh/y4gevk7/g==",
|
|
2230
|
-
"license": "LicenseRef-LICENSE",
|
|
2231
|
-
"dependencies": {
|
|
2232
|
-
"@esotericsoftware/spine-canvas": "4.2.114"
|
|
2233
|
-
},
|
|
2234
|
-
"peerDependencies": {
|
|
2235
|
-
"pixi.js": "^8.16.0"
|
|
2236
|
-
}
|
|
2237
|
-
},
|
|
2238
2191
|
"node_modules/@ffmpeg-installer/darwin-arm64": {
|
|
2239
2192
|
"version": "4.1.5",
|
|
2240
2193
|
"resolved": "https://registry.npmjs.org/@ffmpeg-installer/darwin-arm64/-/darwin-arm64-4.1.5.tgz",
|
|
@@ -2985,88 +2938,6 @@
|
|
|
2985
2938
|
"url": "https://opencollective.com/libvips"
|
|
2986
2939
|
}
|
|
2987
2940
|
},
|
|
2988
|
-
"node_modules/@inquirer/ansi": {
|
|
2989
|
-
"version": "2.0.5",
|
|
2990
|
-
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.5.tgz",
|
|
2991
|
-
"integrity": "sha512-doc2sWgJpbFQ64UflSVd17ibMGDuxO1yKgOgLMwavzESnXjFWJqUeG8saYosqKpHp4kWiM5x1nXvEjbpx90gzw==",
|
|
2992
|
-
"license": "MIT",
|
|
2993
|
-
"engines": {
|
|
2994
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
2995
|
-
}
|
|
2996
|
-
},
|
|
2997
|
-
"node_modules/@inquirer/confirm": {
|
|
2998
|
-
"version": "6.0.12",
|
|
2999
|
-
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.0.12.tgz",
|
|
3000
|
-
"integrity": "sha512-h9FgGun3QwVYNj5TWIZZ+slii73bMoBFjPfVIGtnFuL4t8gBiNDV9PcSfIzkuxvgquJKt9nr1QzszpBzTbH8Og==",
|
|
3001
|
-
"license": "MIT",
|
|
3002
|
-
"dependencies": {
|
|
3003
|
-
"@inquirer/core": "^11.1.9",
|
|
3004
|
-
"@inquirer/type": "^4.0.5"
|
|
3005
|
-
},
|
|
3006
|
-
"engines": {
|
|
3007
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
3008
|
-
},
|
|
3009
|
-
"peerDependencies": {
|
|
3010
|
-
"@types/node": ">=18"
|
|
3011
|
-
},
|
|
3012
|
-
"peerDependenciesMeta": {
|
|
3013
|
-
"@types/node": {
|
|
3014
|
-
"optional": true
|
|
3015
|
-
}
|
|
3016
|
-
}
|
|
3017
|
-
},
|
|
3018
|
-
"node_modules/@inquirer/core": {
|
|
3019
|
-
"version": "11.1.9",
|
|
3020
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.1.9.tgz",
|
|
3021
|
-
"integrity": "sha512-BDE4fG22uYh1bGSifcj7JSx119TVYNViMhMu85usp4Fswrzh6M0DV3yld64jA98uOAa2GSQ4Bg4bZRm2d2cwSg==",
|
|
3022
|
-
"license": "MIT",
|
|
3023
|
-
"dependencies": {
|
|
3024
|
-
"@inquirer/ansi": "^2.0.5",
|
|
3025
|
-
"@inquirer/figures": "^2.0.5",
|
|
3026
|
-
"@inquirer/type": "^4.0.5",
|
|
3027
|
-
"cli-width": "^4.1.0",
|
|
3028
|
-
"fast-wrap-ansi": "^0.2.0",
|
|
3029
|
-
"mute-stream": "^3.0.0",
|
|
3030
|
-
"signal-exit": "^4.1.0"
|
|
3031
|
-
},
|
|
3032
|
-
"engines": {
|
|
3033
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
3034
|
-
},
|
|
3035
|
-
"peerDependencies": {
|
|
3036
|
-
"@types/node": ">=18"
|
|
3037
|
-
},
|
|
3038
|
-
"peerDependenciesMeta": {
|
|
3039
|
-
"@types/node": {
|
|
3040
|
-
"optional": true
|
|
3041
|
-
}
|
|
3042
|
-
}
|
|
3043
|
-
},
|
|
3044
|
-
"node_modules/@inquirer/figures": {
|
|
3045
|
-
"version": "2.0.5",
|
|
3046
|
-
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.5.tgz",
|
|
3047
|
-
"integrity": "sha512-NsSs4kzfm12lNetHwAn3GEuH317IzpwrMCbOuMIVytpjnJ90YYHNwdRgYGuKmVxwuIqSgqk3M5qqQt1cDk0tGQ==",
|
|
3048
|
-
"license": "MIT",
|
|
3049
|
-
"engines": {
|
|
3050
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
3051
|
-
}
|
|
3052
|
-
},
|
|
3053
|
-
"node_modules/@inquirer/type": {
|
|
3054
|
-
"version": "4.0.5",
|
|
3055
|
-
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.5.tgz",
|
|
3056
|
-
"integrity": "sha512-aetVUNeKNc/VriqXlw1NRSW0zhMBB0W4bNbWRJgzRl/3d0QNDQFfk0GO5SDdtjMZVg6o8ZKEiadd7SCCzoOn5Q==",
|
|
3057
|
-
"license": "MIT",
|
|
3058
|
-
"engines": {
|
|
3059
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
3060
|
-
},
|
|
3061
|
-
"peerDependencies": {
|
|
3062
|
-
"@types/node": ">=18"
|
|
3063
|
-
},
|
|
3064
|
-
"peerDependenciesMeta": {
|
|
3065
|
-
"@types/node": {
|
|
3066
|
-
"optional": true
|
|
3067
|
-
}
|
|
3068
|
-
}
|
|
3069
|
-
},
|
|
3070
2941
|
"node_modules/@isaacs/balanced-match": {
|
|
3071
2942
|
"version": "4.0.1",
|
|
3072
2943
|
"resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
|
|
@@ -3634,29 +3505,6 @@
|
|
|
3634
3505
|
}
|
|
3635
3506
|
}
|
|
3636
3507
|
},
|
|
3637
|
-
"node_modules/@mswjs/interceptors": {
|
|
3638
|
-
"version": "0.41.8",
|
|
3639
|
-
"resolved": "https://registry.npmjs.org/@mswjs/interceptors/-/interceptors-0.41.8.tgz",
|
|
3640
|
-
"integrity": "sha512-pRLMNKTSGRoLq+KnEB/7OY5vijw1XmcheAAOiv6pj7W1FG32kAGqj1C/RK/cqxRGr1Fh+zBi8sDur8kj3EQv6A==",
|
|
3641
|
-
"license": "MIT",
|
|
3642
|
-
"dependencies": {
|
|
3643
|
-
"@open-draft/deferred-promise": "^2.2.0",
|
|
3644
|
-
"@open-draft/logger": "^0.3.0",
|
|
3645
|
-
"@open-draft/until": "^2.0.0",
|
|
3646
|
-
"is-node-process": "^1.2.0",
|
|
3647
|
-
"outvariant": "^1.4.3",
|
|
3648
|
-
"strict-event-emitter": "^0.5.1"
|
|
3649
|
-
},
|
|
3650
|
-
"engines": {
|
|
3651
|
-
"node": ">=18"
|
|
3652
|
-
}
|
|
3653
|
-
},
|
|
3654
|
-
"node_modules/@mswjs/interceptors/node_modules/@open-draft/deferred-promise": {
|
|
3655
|
-
"version": "2.2.0",
|
|
3656
|
-
"resolved": "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz",
|
|
3657
|
-
"integrity": "sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==",
|
|
3658
|
-
"license": "MIT"
|
|
3659
|
-
},
|
|
3660
3508
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
3661
3509
|
"version": "1.1.4",
|
|
3662
3510
|
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
|
|
@@ -4262,28 +4110,370 @@
|
|
|
4262
4110
|
"node": ">= 8"
|
|
4263
4111
|
}
|
|
4264
4112
|
},
|
|
4265
|
-
"node_modules/@
|
|
4266
|
-
"version": "
|
|
4267
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4268
|
-
"integrity": "sha512-
|
|
4269
|
-
"
|
|
4113
|
+
"node_modules/@oxc-parser/binding-android-arm-eabi": {
|
|
4114
|
+
"version": "0.120.0",
|
|
4115
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm-eabi/-/binding-android-arm-eabi-0.120.0.tgz",
|
|
4116
|
+
"integrity": "sha512-WU3qtINx802wOl8RxAF1v0VvmC2O4D9M8Sv486nLeQ7iPHVmncYZrtBhB4SYyX+XZxj2PNnCcN+PW21jHgiOxg==",
|
|
4117
|
+
"cpu": [
|
|
4118
|
+
"arm"
|
|
4119
|
+
],
|
|
4120
|
+
"dev": true,
|
|
4121
|
+
"license": "MIT",
|
|
4122
|
+
"optional": true,
|
|
4123
|
+
"os": [
|
|
4124
|
+
"android"
|
|
4125
|
+
],
|
|
4126
|
+
"engines": {
|
|
4127
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4128
|
+
}
|
|
4270
4129
|
},
|
|
4271
|
-
"node_modules/@
|
|
4272
|
-
"version": "0.
|
|
4273
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4274
|
-
"integrity": "sha512-
|
|
4130
|
+
"node_modules/@oxc-parser/binding-android-arm64": {
|
|
4131
|
+
"version": "0.120.0",
|
|
4132
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm64/-/binding-android-arm64-0.120.0.tgz",
|
|
4133
|
+
"integrity": "sha512-SEf80EHdhlbjZEgzeWm0ZA/br4GKMenDW3QB/gtyeTV1gStvvZeFi40ioHDZvds2m4Z9J1bUAUL8yn1/+A6iGg==",
|
|
4134
|
+
"cpu": [
|
|
4135
|
+
"arm64"
|
|
4136
|
+
],
|
|
4137
|
+
"dev": true,
|
|
4275
4138
|
"license": "MIT",
|
|
4139
|
+
"optional": true,
|
|
4140
|
+
"os": [
|
|
4141
|
+
"android"
|
|
4142
|
+
],
|
|
4143
|
+
"engines": {
|
|
4144
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4145
|
+
}
|
|
4146
|
+
},
|
|
4147
|
+
"node_modules/@oxc-parser/binding-darwin-arm64": {
|
|
4148
|
+
"version": "0.120.0",
|
|
4149
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.120.0.tgz",
|
|
4150
|
+
"integrity": "sha512-xVrrbCai8R8CUIBu3CjryutQnEYhZqs1maIqDvtUCFZb8vY33H7uh9mHpL3a0JBIKoBUKjPH8+rzyAeXnS2d6A==",
|
|
4151
|
+
"cpu": [
|
|
4152
|
+
"arm64"
|
|
4153
|
+
],
|
|
4154
|
+
"dev": true,
|
|
4155
|
+
"license": "MIT",
|
|
4156
|
+
"optional": true,
|
|
4157
|
+
"os": [
|
|
4158
|
+
"darwin"
|
|
4159
|
+
],
|
|
4160
|
+
"engines": {
|
|
4161
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4162
|
+
}
|
|
4163
|
+
},
|
|
4164
|
+
"node_modules/@oxc-parser/binding-darwin-x64": {
|
|
4165
|
+
"version": "0.120.0",
|
|
4166
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.120.0.tgz",
|
|
4167
|
+
"integrity": "sha512-xyHBbnJ6mydnQUH7MAcafOkkrNzQC6T+LXgDH/3InEq2BWl/g424IMRiJVSpVqGjB+p2bd0h0WRR8iIwzjU7rw==",
|
|
4168
|
+
"cpu": [
|
|
4169
|
+
"x64"
|
|
4170
|
+
],
|
|
4171
|
+
"dev": true,
|
|
4172
|
+
"license": "MIT",
|
|
4173
|
+
"optional": true,
|
|
4174
|
+
"os": [
|
|
4175
|
+
"darwin"
|
|
4176
|
+
],
|
|
4177
|
+
"engines": {
|
|
4178
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4179
|
+
}
|
|
4180
|
+
},
|
|
4181
|
+
"node_modules/@oxc-parser/binding-freebsd-x64": {
|
|
4182
|
+
"version": "0.120.0",
|
|
4183
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-freebsd-x64/-/binding-freebsd-x64-0.120.0.tgz",
|
|
4184
|
+
"integrity": "sha512-UMnVRllquXUYTeNfFKmxTTEdZ/ix1nLl0ducDzMSREoWYGVIHnOOxoKMWlCOvRr9Wk/HZqo2rh1jeumbPGPV9A==",
|
|
4185
|
+
"cpu": [
|
|
4186
|
+
"x64"
|
|
4187
|
+
],
|
|
4188
|
+
"dev": true,
|
|
4189
|
+
"license": "MIT",
|
|
4190
|
+
"optional": true,
|
|
4191
|
+
"os": [
|
|
4192
|
+
"freebsd"
|
|
4193
|
+
],
|
|
4194
|
+
"engines": {
|
|
4195
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4196
|
+
}
|
|
4197
|
+
},
|
|
4198
|
+
"node_modules/@oxc-parser/binding-linux-arm-gnueabihf": {
|
|
4199
|
+
"version": "0.120.0",
|
|
4200
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.120.0.tgz",
|
|
4201
|
+
"integrity": "sha512-tkvn2CQ7QdcsMnpfiX3fd3wA3EFsWKYlcQzq9cFw/xc89Al7W6Y4O0FgLVkVQpo0Tnq/qtE1XfkJOnRRA9S/NA==",
|
|
4202
|
+
"cpu": [
|
|
4203
|
+
"arm"
|
|
4204
|
+
],
|
|
4205
|
+
"dev": true,
|
|
4206
|
+
"license": "MIT",
|
|
4207
|
+
"optional": true,
|
|
4208
|
+
"os": [
|
|
4209
|
+
"linux"
|
|
4210
|
+
],
|
|
4211
|
+
"engines": {
|
|
4212
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4213
|
+
}
|
|
4214
|
+
},
|
|
4215
|
+
"node_modules/@oxc-parser/binding-linux-arm-musleabihf": {
|
|
4216
|
+
"version": "0.120.0",
|
|
4217
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.120.0.tgz",
|
|
4218
|
+
"integrity": "sha512-WN5y135Ic42gQDk9grbwY9++fDhqf8knN6fnP+0WALlAUh4odY/BDK1nfTJRSfpJD9P3r1BwU0m3pW2DU89whQ==",
|
|
4219
|
+
"cpu": [
|
|
4220
|
+
"arm"
|
|
4221
|
+
],
|
|
4222
|
+
"dev": true,
|
|
4223
|
+
"license": "MIT",
|
|
4224
|
+
"optional": true,
|
|
4225
|
+
"os": [
|
|
4226
|
+
"linux"
|
|
4227
|
+
],
|
|
4228
|
+
"engines": {
|
|
4229
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4230
|
+
}
|
|
4231
|
+
},
|
|
4232
|
+
"node_modules/@oxc-parser/binding-linux-arm64-gnu": {
|
|
4233
|
+
"version": "0.120.0",
|
|
4234
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.120.0.tgz",
|
|
4235
|
+
"integrity": "sha512-1GgQBCcXvFMw99EPdMy+4NZ3aYyXsxjf9kbUUg8HuAy3ZBXzOry5KfFEzT9nqmgZI1cuetvApkiJBZLAPo8uaw==",
|
|
4236
|
+
"cpu": [
|
|
4237
|
+
"arm64"
|
|
4238
|
+
],
|
|
4239
|
+
"dev": true,
|
|
4240
|
+
"libc": [
|
|
4241
|
+
"glibc"
|
|
4242
|
+
],
|
|
4243
|
+
"license": "MIT",
|
|
4244
|
+
"optional": true,
|
|
4245
|
+
"os": [
|
|
4246
|
+
"linux"
|
|
4247
|
+
],
|
|
4248
|
+
"engines": {
|
|
4249
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4250
|
+
}
|
|
4251
|
+
},
|
|
4252
|
+
"node_modules/@oxc-parser/binding-linux-arm64-musl": {
|
|
4253
|
+
"version": "0.120.0",
|
|
4254
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.120.0.tgz",
|
|
4255
|
+
"integrity": "sha512-gmMQ70gsPdDBgpcErvJEoWNBr7bJooSLlvOBVBSGfOzlP5NvJ3bFvnUeZZ9d+dPrqSngtonf7nyzWUTUj/U+lw==",
|
|
4256
|
+
"cpu": [
|
|
4257
|
+
"arm64"
|
|
4258
|
+
],
|
|
4259
|
+
"dev": true,
|
|
4260
|
+
"libc": [
|
|
4261
|
+
"musl"
|
|
4262
|
+
],
|
|
4263
|
+
"license": "MIT",
|
|
4264
|
+
"optional": true,
|
|
4265
|
+
"os": [
|
|
4266
|
+
"linux"
|
|
4267
|
+
],
|
|
4268
|
+
"engines": {
|
|
4269
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4270
|
+
}
|
|
4271
|
+
},
|
|
4272
|
+
"node_modules/@oxc-parser/binding-linux-ppc64-gnu": {
|
|
4273
|
+
"version": "0.120.0",
|
|
4274
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.120.0.tgz",
|
|
4275
|
+
"integrity": "sha512-T/kZuU0ajop0xhzVMwH5r3srC9Nqup5HaIo+3uFjIN5uPxa0LvSxC1ZqP4aQGJVW5G0z8/nCkjIfSMS91P/wzw==",
|
|
4276
|
+
"cpu": [
|
|
4277
|
+
"ppc64"
|
|
4278
|
+
],
|
|
4279
|
+
"dev": true,
|
|
4280
|
+
"libc": [
|
|
4281
|
+
"glibc"
|
|
4282
|
+
],
|
|
4283
|
+
"license": "MIT",
|
|
4284
|
+
"optional": true,
|
|
4285
|
+
"os": [
|
|
4286
|
+
"linux"
|
|
4287
|
+
],
|
|
4288
|
+
"engines": {
|
|
4289
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4290
|
+
}
|
|
4291
|
+
},
|
|
4292
|
+
"node_modules/@oxc-parser/binding-linux-riscv64-gnu": {
|
|
4293
|
+
"version": "0.120.0",
|
|
4294
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.120.0.tgz",
|
|
4295
|
+
"integrity": "sha512-vn21KXLAXzaI3N5CZWlBr1iWeXLl9QFIMor7S1hUjUGTeUuWCoE6JZB040/ZNDwf+JXPX8Ao9KbmJq9FMC2iGw==",
|
|
4296
|
+
"cpu": [
|
|
4297
|
+
"riscv64"
|
|
4298
|
+
],
|
|
4299
|
+
"dev": true,
|
|
4300
|
+
"libc": [
|
|
4301
|
+
"glibc"
|
|
4302
|
+
],
|
|
4303
|
+
"license": "MIT",
|
|
4304
|
+
"optional": true,
|
|
4305
|
+
"os": [
|
|
4306
|
+
"linux"
|
|
4307
|
+
],
|
|
4308
|
+
"engines": {
|
|
4309
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4310
|
+
}
|
|
4311
|
+
},
|
|
4312
|
+
"node_modules/@oxc-parser/binding-linux-riscv64-musl": {
|
|
4313
|
+
"version": "0.120.0",
|
|
4314
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.120.0.tgz",
|
|
4315
|
+
"integrity": "sha512-SUbUxlar007LTGmSLGIC5x/WJvwhdX+PwNzFJ9f/nOzZOrCFbOT4ikt7pJIRg1tXVsEfzk5mWpGO1NFiSs4PIw==",
|
|
4316
|
+
"cpu": [
|
|
4317
|
+
"riscv64"
|
|
4318
|
+
],
|
|
4319
|
+
"dev": true,
|
|
4320
|
+
"libc": [
|
|
4321
|
+
"musl"
|
|
4322
|
+
],
|
|
4323
|
+
"license": "MIT",
|
|
4324
|
+
"optional": true,
|
|
4325
|
+
"os": [
|
|
4326
|
+
"linux"
|
|
4327
|
+
],
|
|
4328
|
+
"engines": {
|
|
4329
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4330
|
+
}
|
|
4331
|
+
},
|
|
4332
|
+
"node_modules/@oxc-parser/binding-linux-s390x-gnu": {
|
|
4333
|
+
"version": "0.120.0",
|
|
4334
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.120.0.tgz",
|
|
4335
|
+
"integrity": "sha512-hYiPJTxyfJY2+lMBFk3p2bo0R9GN+TtpPFlRqVchL1qvLG+pznstramHNvJlw9AjaoRUHwp9IKR7UZQnRPGjgQ==",
|
|
4336
|
+
"cpu": [
|
|
4337
|
+
"s390x"
|
|
4338
|
+
],
|
|
4339
|
+
"dev": true,
|
|
4340
|
+
"libc": [
|
|
4341
|
+
"glibc"
|
|
4342
|
+
],
|
|
4343
|
+
"license": "MIT",
|
|
4344
|
+
"optional": true,
|
|
4345
|
+
"os": [
|
|
4346
|
+
"linux"
|
|
4347
|
+
],
|
|
4348
|
+
"engines": {
|
|
4349
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4350
|
+
}
|
|
4351
|
+
},
|
|
4352
|
+
"node_modules/@oxc-parser/binding-linux-x64-gnu": {
|
|
4353
|
+
"version": "0.120.0",
|
|
4354
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.120.0.tgz",
|
|
4355
|
+
"integrity": "sha512-q+5jSVZkprJCIy3dzJpApat0InJaoxQLsJuD6DkX8hrUS61z2lHQ1Fe9L2+TYbKHXCLWbL0zXe7ovkIdopBGMQ==",
|
|
4356
|
+
"cpu": [
|
|
4357
|
+
"x64"
|
|
4358
|
+
],
|
|
4359
|
+
"dev": true,
|
|
4360
|
+
"libc": [
|
|
4361
|
+
"glibc"
|
|
4362
|
+
],
|
|
4363
|
+
"license": "MIT",
|
|
4364
|
+
"optional": true,
|
|
4365
|
+
"os": [
|
|
4366
|
+
"linux"
|
|
4367
|
+
],
|
|
4368
|
+
"engines": {
|
|
4369
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4370
|
+
}
|
|
4371
|
+
},
|
|
4372
|
+
"node_modules/@oxc-parser/binding-linux-x64-musl": {
|
|
4373
|
+
"version": "0.120.0",
|
|
4374
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.120.0.tgz",
|
|
4375
|
+
"integrity": "sha512-D9QDDZNnH24e7X4ftSa6ar/2hCavETfW3uk0zgcMIrZNy459O5deTbWrjGzZiVrSWigGtlQwzs2McBP0QsfV1w==",
|
|
4376
|
+
"cpu": [
|
|
4377
|
+
"x64"
|
|
4378
|
+
],
|
|
4379
|
+
"dev": true,
|
|
4380
|
+
"libc": [
|
|
4381
|
+
"musl"
|
|
4382
|
+
],
|
|
4383
|
+
"license": "MIT",
|
|
4384
|
+
"optional": true,
|
|
4385
|
+
"os": [
|
|
4386
|
+
"linux"
|
|
4387
|
+
],
|
|
4388
|
+
"engines": {
|
|
4389
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4390
|
+
}
|
|
4391
|
+
},
|
|
4392
|
+
"node_modules/@oxc-parser/binding-openharmony-arm64": {
|
|
4393
|
+
"version": "0.120.0",
|
|
4394
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-openharmony-arm64/-/binding-openharmony-arm64-0.120.0.tgz",
|
|
4395
|
+
"integrity": "sha512-TBU8ZwOUWAOUWVfmI16CYWbvh4uQb9zHnGBHsw5Cp2JUVG044OIY1CSHODLifqzQIMTXvDvLzcL89GGdUIqNrA==",
|
|
4396
|
+
"cpu": [
|
|
4397
|
+
"arm64"
|
|
4398
|
+
],
|
|
4399
|
+
"dev": true,
|
|
4400
|
+
"license": "MIT",
|
|
4401
|
+
"optional": true,
|
|
4402
|
+
"os": [
|
|
4403
|
+
"openharmony"
|
|
4404
|
+
],
|
|
4405
|
+
"engines": {
|
|
4406
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4407
|
+
}
|
|
4408
|
+
},
|
|
4409
|
+
"node_modules/@oxc-parser/binding-wasm32-wasi": {
|
|
4410
|
+
"version": "0.120.0",
|
|
4411
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.120.0.tgz",
|
|
4412
|
+
"integrity": "sha512-WG/FOZgDJCpJnuF3ToG/K28rcOmSY7FmFmfBKYb2fmLyhDzPpUldFGV7/Fz4ru0Iz/v4KPmf8xVgO8N3lO4KHA==",
|
|
4413
|
+
"cpu": [
|
|
4414
|
+
"wasm32"
|
|
4415
|
+
],
|
|
4416
|
+
"dev": true,
|
|
4417
|
+
"license": "MIT",
|
|
4418
|
+
"optional": true,
|
|
4276
4419
|
"dependencies": {
|
|
4277
|
-
"
|
|
4278
|
-
|
|
4420
|
+
"@napi-rs/wasm-runtime": "^1.1.1"
|
|
4421
|
+
},
|
|
4422
|
+
"engines": {
|
|
4423
|
+
"node": ">=14.0.0"
|
|
4424
|
+
}
|
|
4425
|
+
},
|
|
4426
|
+
"node_modules/@oxc-parser/binding-win32-arm64-msvc": {
|
|
4427
|
+
"version": "0.120.0",
|
|
4428
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.120.0.tgz",
|
|
4429
|
+
"integrity": "sha512-1T0HKGcsz/BKo77t7+89L8Qvu4f9DoleKWHp3C5sJEcbCjDOLx3m9m722bWZTY+hANlUEs+yjlK+lBFsA+vrVQ==",
|
|
4430
|
+
"cpu": [
|
|
4431
|
+
"arm64"
|
|
4432
|
+
],
|
|
4433
|
+
"dev": true,
|
|
4434
|
+
"license": "MIT",
|
|
4435
|
+
"optional": true,
|
|
4436
|
+
"os": [
|
|
4437
|
+
"win32"
|
|
4438
|
+
],
|
|
4439
|
+
"engines": {
|
|
4440
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4441
|
+
}
|
|
4442
|
+
},
|
|
4443
|
+
"node_modules/@oxc-parser/binding-win32-ia32-msvc": {
|
|
4444
|
+
"version": "0.120.0",
|
|
4445
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.120.0.tgz",
|
|
4446
|
+
"integrity": "sha512-L7vfLzbOXsjBXV0rv/6Y3Jd9BRjPeCivINZAqrSyAOZN3moCopDN+Psq9ZrGNZtJzP8946MtlRFZ0Als0wBCOw==",
|
|
4447
|
+
"cpu": [
|
|
4448
|
+
"ia32"
|
|
4449
|
+
],
|
|
4450
|
+
"dev": true,
|
|
4451
|
+
"license": "MIT",
|
|
4452
|
+
"optional": true,
|
|
4453
|
+
"os": [
|
|
4454
|
+
"win32"
|
|
4455
|
+
],
|
|
4456
|
+
"engines": {
|
|
4457
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4458
|
+
}
|
|
4459
|
+
},
|
|
4460
|
+
"node_modules/@oxc-parser/binding-win32-x64-msvc": {
|
|
4461
|
+
"version": "0.120.0",
|
|
4462
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.120.0.tgz",
|
|
4463
|
+
"integrity": "sha512-ys+upfqNtSu58huAhJMBKl3XCkGzyVFBlMlGPzHeFKgpFF/OdgNs1MMf8oaJIbgMH8ZxgGF7qfue39eJohmKIg==",
|
|
4464
|
+
"cpu": [
|
|
4465
|
+
"x64"
|
|
4466
|
+
],
|
|
4467
|
+
"dev": true,
|
|
4468
|
+
"license": "MIT",
|
|
4469
|
+
"optional": true,
|
|
4470
|
+
"os": [
|
|
4471
|
+
"win32"
|
|
4472
|
+
],
|
|
4473
|
+
"engines": {
|
|
4474
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4279
4475
|
}
|
|
4280
4476
|
},
|
|
4281
|
-
"node_modules/@open-draft/until": {
|
|
4282
|
-
"version": "2.1.0",
|
|
4283
|
-
"resolved": "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz",
|
|
4284
|
-
"integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==",
|
|
4285
|
-
"license": "MIT"
|
|
4286
|
-
},
|
|
4287
4477
|
"node_modules/@oxc-project/types": {
|
|
4288
4478
|
"version": "0.133.0",
|
|
4289
4479
|
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
|
|
@@ -5459,6 +5649,7 @@
|
|
|
5459
5649
|
"version": "2.4.5",
|
|
5460
5650
|
"resolved": "https://registry.npmjs.org/@solid-primitives/event-listener/-/event-listener-2.4.5.tgz",
|
|
5461
5651
|
"integrity": "sha512-nwRV558mIabl4yVAhZKY8cb6G+O1F0M6Z75ttTu5hk+SxdOnKSGj+eetDIu7Oax1P138ZdUU01qnBPR8rnxaEA==",
|
|
5652
|
+
"dev": true,
|
|
5462
5653
|
"license": "MIT",
|
|
5463
5654
|
"dependencies": {
|
|
5464
5655
|
"@solid-primitives/utils": "^6.4.0"
|
|
@@ -5471,6 +5662,7 @@
|
|
|
5471
5662
|
"version": "1.3.5",
|
|
5472
5663
|
"resolved": "https://registry.npmjs.org/@solid-primitives/keyboard/-/keyboard-1.3.5.tgz",
|
|
5473
5664
|
"integrity": "sha512-sav+l+PL+74z3yaftVs7qd8c2SXkqzuxPOVibUe5wYMt+U5Hxp3V3XCPgBPN2I6cANjvoFtz0NiU8uHVLdi9FQ==",
|
|
5665
|
+
"dev": true,
|
|
5474
5666
|
"license": "MIT",
|
|
5475
5667
|
"dependencies": {
|
|
5476
5668
|
"@solid-primitives/event-listener": "^2.4.5",
|
|
@@ -5485,6 +5677,7 @@
|
|
|
5485
5677
|
"version": "2.1.5",
|
|
5486
5678
|
"resolved": "https://registry.npmjs.org/@solid-primitives/resize-observer/-/resize-observer-2.1.5.tgz",
|
|
5487
5679
|
"integrity": "sha512-AiyTknKcNBaKHbcSMuxtSNM8FjIuiSuFyFghdD0TcCMU9hKi9EmsC5pjfjDwxE+5EueB1a+T/34PLRI5vbBbKw==",
|
|
5680
|
+
"dev": true,
|
|
5488
5681
|
"license": "MIT",
|
|
5489
5682
|
"dependencies": {
|
|
5490
5683
|
"@solid-primitives/event-listener": "^2.4.5",
|
|
@@ -5500,6 +5693,7 @@
|
|
|
5500
5693
|
"version": "1.5.3",
|
|
5501
5694
|
"resolved": "https://registry.npmjs.org/@solid-primitives/rootless/-/rootless-1.5.3.tgz",
|
|
5502
5695
|
"integrity": "sha512-N8cIDAHbWcLahNRLr0knAAQvXyEdEMoAZvIMZKmhNb1mlx9e2UOv9BRD5YNwQUJwbNoYVhhLwFOEOcVXFx0HqA==",
|
|
5696
|
+
"dev": true,
|
|
5503
5697
|
"license": "MIT",
|
|
5504
5698
|
"dependencies": {
|
|
5505
5699
|
"@solid-primitives/utils": "^6.4.0"
|
|
@@ -5512,6 +5706,7 @@
|
|
|
5512
5706
|
"version": "0.1.3",
|
|
5513
5707
|
"resolved": "https://registry.npmjs.org/@solid-primitives/static-store/-/static-store-0.1.3.tgz",
|
|
5514
5708
|
"integrity": "sha512-uxez7SXnr5GiRnzqO2IEDjOJRIXaG+0LZLBizmUA1FwSi+hrpuMzVBwyk70m4prcl8X6FDDXUl9O8hSq8wHbBQ==",
|
|
5709
|
+
"dev": true,
|
|
5515
5710
|
"license": "MIT",
|
|
5516
5711
|
"dependencies": {
|
|
5517
5712
|
"@solid-primitives/utils": "^6.4.0"
|
|
@@ -5524,17 +5719,12 @@
|
|
|
5524
5719
|
"version": "6.4.0",
|
|
5525
5720
|
"resolved": "https://registry.npmjs.org/@solid-primitives/utils/-/utils-6.4.0.tgz",
|
|
5526
5721
|
"integrity": "sha512-AeGTBg8Wtkh/0s+evyLtP8piQoS4wyqqQaAFs2HJcFMMjYAtUgo+ZPduRXLjPlqKVc2ejeR544oeqpbn8Egn8A==",
|
|
5722
|
+
"dev": true,
|
|
5527
5723
|
"license": "MIT",
|
|
5528
5724
|
"peerDependencies": {
|
|
5529
5725
|
"solid-js": "^1.6.12"
|
|
5530
5726
|
}
|
|
5531
5727
|
},
|
|
5532
|
-
"node_modules/@standard-schema/spec": {
|
|
5533
|
-
"version": "1.1.0",
|
|
5534
|
-
"resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
|
|
5535
|
-
"integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
|
|
5536
|
-
"license": "MIT"
|
|
5537
|
-
},
|
|
5538
5728
|
"node_modules/@swc/helpers": {
|
|
5539
5729
|
"version": "0.3.17",
|
|
5540
5730
|
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz",
|
|
@@ -5816,17 +6006,18 @@
|
|
|
5816
6006
|
}
|
|
5817
6007
|
},
|
|
5818
6008
|
"node_modules/@tanstack/devtools": {
|
|
5819
|
-
"version": "0.12.
|
|
5820
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools/-/devtools-0.12.
|
|
5821
|
-
"integrity": "sha512-
|
|
6009
|
+
"version": "0.12.4",
|
|
6010
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools/-/devtools-0.12.4.tgz",
|
|
6011
|
+
"integrity": "sha512-fYZ0KTEpKq7JyjULDe4kGQBN77aw5jtULs1MaVraWvwtcoIwe4UOKV48UJQ9/mEQMFTytbgKxYk2QaSDgI/Znw==",
|
|
6012
|
+
"dev": true,
|
|
5822
6013
|
"license": "MIT",
|
|
5823
6014
|
"dependencies": {
|
|
5824
6015
|
"@solid-primitives/event-listener": "^2.4.3",
|
|
5825
6016
|
"@solid-primitives/keyboard": "^1.3.3",
|
|
5826
6017
|
"@solid-primitives/resize-observer": "^2.1.3",
|
|
5827
|
-
"@tanstack/devtools-client": "0.0.
|
|
5828
|
-
"@tanstack/devtools-event-bus": "0.4.
|
|
5829
|
-
"@tanstack/devtools-ui": "0.5.
|
|
6018
|
+
"@tanstack/devtools-client": "0.0.7",
|
|
6019
|
+
"@tanstack/devtools-event-bus": "0.4.2",
|
|
6020
|
+
"@tanstack/devtools-ui": "0.5.3",
|
|
5830
6021
|
"clsx": "^2.1.1",
|
|
5831
6022
|
"goober": "^2.1.16",
|
|
5832
6023
|
"solid-js": "^1.9.9"
|
|
@@ -5846,12 +6037,13 @@
|
|
|
5846
6037
|
}
|
|
5847
6038
|
},
|
|
5848
6039
|
"node_modules/@tanstack/devtools-client": {
|
|
5849
|
-
"version": "0.0.
|
|
5850
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools-client/-/devtools-client-0.0.
|
|
5851
|
-
"integrity": "sha512-
|
|
6040
|
+
"version": "0.0.7",
|
|
6041
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-client/-/devtools-client-0.0.7.tgz",
|
|
6042
|
+
"integrity": "sha512-bAqBnXQlg/1PqmIC3XhqzG8jV3YmUQ41fD9VlOVzSilFBD4Kp6WJFJa+7N6TvlYXqMAy8xoeF9gg0d2Lt74OEQ==",
|
|
6043
|
+
"dev": true,
|
|
5852
6044
|
"license": "MIT",
|
|
5853
6045
|
"dependencies": {
|
|
5854
|
-
"@tanstack/devtools-event-client": "^0.4.
|
|
6046
|
+
"@tanstack/devtools-event-client": "^0.4.4"
|
|
5855
6047
|
},
|
|
5856
6048
|
"engines": {
|
|
5857
6049
|
"node": ">=18"
|
|
@@ -5862,9 +6054,10 @@
|
|
|
5862
6054
|
}
|
|
5863
6055
|
},
|
|
5864
6056
|
"node_modules/@tanstack/devtools-event-bus": {
|
|
5865
|
-
"version": "0.4.
|
|
5866
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools-event-bus/-/devtools-event-bus-0.4.
|
|
5867
|
-
"integrity": "sha512-
|
|
6057
|
+
"version": "0.4.2",
|
|
6058
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-event-bus/-/devtools-event-bus-0.4.2.tgz",
|
|
6059
|
+
"integrity": "sha512-2LHzhwBFlKHCcklsQrGe8TeyjHd4XAF8nuCO6wHmva5fePUkJUULbu6CsCNAlGlCi0KkEsMXZSvRdR4HgMq4yA==",
|
|
6060
|
+
"dev": true,
|
|
5868
6061
|
"license": "MIT",
|
|
5869
6062
|
"dependencies": {
|
|
5870
6063
|
"ws": "^8.18.3"
|
|
@@ -5878,9 +6071,9 @@
|
|
|
5878
6071
|
}
|
|
5879
6072
|
},
|
|
5880
6073
|
"node_modules/@tanstack/devtools-event-client": {
|
|
5881
|
-
"version": "0.4.
|
|
5882
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools-event-client/-/devtools-event-client-0.4.
|
|
5883
|
-
"integrity": "sha512-
|
|
6074
|
+
"version": "0.4.4",
|
|
6075
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-event-client/-/devtools-event-client-0.4.4.tgz",
|
|
6076
|
+
"integrity": "sha512-6T5Yop/793YI+H+5J8Hsyj4kCih9sl4t3ElLgKioW5hk3ocn+ZdSJ94tT7vL7uabxSugWYBZlOTMPzEw2puvQw==",
|
|
5884
6077
|
"license": "MIT",
|
|
5885
6078
|
"bin": {
|
|
5886
6079
|
"intent": "bin/intent.js"
|
|
@@ -5897,6 +6090,7 @@
|
|
|
5897
6090
|
"version": "0.5.2",
|
|
5898
6091
|
"resolved": "https://registry.npmjs.org/@tanstack/devtools-ui/-/devtools-ui-0.5.2.tgz",
|
|
5899
6092
|
"integrity": "sha512-GtaMk8kaGZ9ZdR8Pu5RAfcse/ZrxzH/xsAIFtHMapLs2VMqSPFfb1NvIDO1MAAfUcub8Ix8XKQEP0uYSPzoFKw==",
|
|
6093
|
+
"dev": true,
|
|
5900
6094
|
"license": "MIT",
|
|
5901
6095
|
"dependencies": {
|
|
5902
6096
|
"clsx": "^2.1.1",
|
|
@@ -5919,6 +6113,7 @@
|
|
|
5919
6113
|
"version": "0.4.0",
|
|
5920
6114
|
"resolved": "https://registry.npmjs.org/@tanstack/devtools-utils/-/devtools-utils-0.4.0.tgz",
|
|
5921
6115
|
"integrity": "sha512-KsGzYhA8L/fCNgyyMyoUy+TKtx+DjNbzWwqH6wXL48Llzo7kvV9RynYJlaO8Qkzwm+NdHXSgsljQNjQ3CKPpZA==",
|
|
6116
|
+
"dev": true,
|
|
5922
6117
|
"license": "MIT",
|
|
5923
6118
|
"bin": {
|
|
5924
6119
|
"intent": "bin/intent.js"
|
|
@@ -5956,21 +6151,18 @@
|
|
|
5956
6151
|
}
|
|
5957
6152
|
},
|
|
5958
6153
|
"node_modules/@tanstack/devtools-vite": {
|
|
5959
|
-
"version": "0.
|
|
5960
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools-vite/-/devtools-vite-0.
|
|
5961
|
-
"integrity": "sha512-
|
|
6154
|
+
"version": "0.8.0",
|
|
6155
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-vite/-/devtools-vite-0.8.0.tgz",
|
|
6156
|
+
"integrity": "sha512-Pj4KB6dTK3NGjVxKRym8X0Df8rL/ofojYMVR8sw4jAT7doMCTNSW7VqXrYD5P2cKgyLJiwg3TNOozRm2o+7m3Q==",
|
|
5962
6157
|
"dev": true,
|
|
5963
6158
|
"license": "MIT",
|
|
5964
6159
|
"dependencies": {
|
|
5965
|
-
"@
|
|
5966
|
-
"@
|
|
5967
|
-
"@babel/parser": "^7.28.4",
|
|
5968
|
-
"@babel/traverse": "^7.28.4",
|
|
5969
|
-
"@babel/types": "^7.28.4",
|
|
5970
|
-
"@tanstack/devtools-client": "0.0.6",
|
|
5971
|
-
"@tanstack/devtools-event-bus": "0.4.1",
|
|
6160
|
+
"@tanstack/devtools-client": "0.0.7",
|
|
6161
|
+
"@tanstack/devtools-event-bus": "0.4.2",
|
|
5972
6162
|
"chalk": "^5.6.2",
|
|
5973
6163
|
"launch-editor": "^2.11.1",
|
|
6164
|
+
"magic-string": "^0.30.0",
|
|
6165
|
+
"oxc-parser": "^0.120.0",
|
|
5974
6166
|
"picomatch": "^4.0.3"
|
|
5975
6167
|
},
|
|
5976
6168
|
"bin": {
|
|
@@ -5987,10 +6179,33 @@
|
|
|
5987
6179
|
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
5988
6180
|
}
|
|
5989
6181
|
},
|
|
6182
|
+
"node_modules/@tanstack/devtools/node_modules/@tanstack/devtools-ui": {
|
|
6183
|
+
"version": "0.5.3",
|
|
6184
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-ui/-/devtools-ui-0.5.3.tgz",
|
|
6185
|
+
"integrity": "sha512-iJjwWtdXhUGpeHyyW9+3NhXhmlVFhh3v3UBNKCouykG9UFXEtneVVNXgSRpd70DeYJFmvKOY19LafKRI5/cM7A==",
|
|
6186
|
+
"dev": true,
|
|
6187
|
+
"license": "MIT",
|
|
6188
|
+
"dependencies": {
|
|
6189
|
+
"clsx": "^2.1.1",
|
|
6190
|
+
"dayjs": "^1.11.19",
|
|
6191
|
+
"goober": "^2.1.16",
|
|
6192
|
+
"solid-js": "^1.9.9"
|
|
6193
|
+
},
|
|
6194
|
+
"engines": {
|
|
6195
|
+
"node": ">=18"
|
|
6196
|
+
},
|
|
6197
|
+
"funding": {
|
|
6198
|
+
"type": "github",
|
|
6199
|
+
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6200
|
+
},
|
|
6201
|
+
"peerDependencies": {
|
|
6202
|
+
"solid-js": ">=1.9.7"
|
|
6203
|
+
}
|
|
6204
|
+
},
|
|
5990
6205
|
"node_modules/@tanstack/history": {
|
|
5991
|
-
"version": "1.
|
|
5992
|
-
"resolved": "https://registry.npmjs.org/@tanstack/history/-/history-1.
|
|
5993
|
-
"integrity": "sha512-
|
|
6206
|
+
"version": "1.162.0",
|
|
6207
|
+
"resolved": "https://registry.npmjs.org/@tanstack/history/-/history-1.162.0.tgz",
|
|
6208
|
+
"integrity": "sha512-79pf/RkhteYZTRgcR4F9kbk84P2N8rugQJswxfIqovlbRiT3yI7eBE+5QorIrZaOKktsgzRlXh1l/du/xpl4iA==",
|
|
5994
6209
|
"license": "MIT",
|
|
5995
6210
|
"engines": {
|
|
5996
6211
|
"node": ">=20.19"
|
|
@@ -6020,6 +6235,7 @@
|
|
|
6020
6235
|
"version": "0.9.0",
|
|
6021
6236
|
"resolved": "https://registry.npmjs.org/@tanstack/hotkeys-devtools/-/hotkeys-devtools-0.9.0.tgz",
|
|
6022
6237
|
"integrity": "sha512-6GHhmGbXJpWHBGCpPDBc7kHyrFJNx5+BfCpqeC8bQ1i9N8Bcy7UgkHH/1sM9lvwwWLjpH48A3yPDxhZFD1F8Iw==",
|
|
6238
|
+
"dev": true,
|
|
6023
6239
|
"license": "MIT",
|
|
6024
6240
|
"dependencies": {
|
|
6025
6241
|
"@tanstack/devtools-ui": "^0.5.1",
|
|
@@ -6061,6 +6277,7 @@
|
|
|
6061
6277
|
"version": "1.3.1",
|
|
6062
6278
|
"resolved": "https://registry.npmjs.org/@tanstack/pacer-devtools/-/pacer-devtools-1.3.1.tgz",
|
|
6063
6279
|
"integrity": "sha512-Gx9xCv2QGZo0xIjFhv74Ass5iS21aTnCIHvAtgQEaK95s9HfcNB8GJlDwYt3lHbAFxpmiH8BN04Bd6TosDMUIQ==",
|
|
6280
|
+
"dev": true,
|
|
6064
6281
|
"license": "MIT",
|
|
6065
6282
|
"dependencies": {
|
|
6066
6283
|
"@tanstack/devtools-ui": "0.5.2",
|
|
@@ -6087,6 +6304,7 @@
|
|
|
6087
6304
|
"version": "0.5.0",
|
|
6088
6305
|
"resolved": "https://registry.npmjs.org/@tanstack/devtools-utils/-/devtools-utils-0.5.0.tgz",
|
|
6089
6306
|
"integrity": "sha512-5wRNVDun+y2Gn2OrSj4S73TljY0B3YCzgfIm540tGkqmI6MTu78i57WT/3YOuEUfIyxtZiANRWEnk7fiLNFBZg==",
|
|
6307
|
+
"dev": true,
|
|
6090
6308
|
"license": "MIT",
|
|
6091
6309
|
"bin": {
|
|
6092
6310
|
"intent": "bin/intent.js"
|
|
@@ -6128,9 +6346,9 @@
|
|
|
6128
6346
|
}
|
|
6129
6347
|
},
|
|
6130
6348
|
"node_modules/@tanstack/query-core": {
|
|
6131
|
-
"version": "5.
|
|
6132
|
-
"resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.
|
|
6133
|
-
"integrity": "sha512-
|
|
6349
|
+
"version": "5.101.0",
|
|
6350
|
+
"resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.101.0.tgz",
|
|
6351
|
+
"integrity": "sha512-cQetA74EB+seWySv1TTKr828TnP0u39m6LykwDXIo84SNortpDkp30TMEjkqtYCNP9c40uT/iwl6MLiufEt0Ow==",
|
|
6134
6352
|
"license": "MIT",
|
|
6135
6353
|
"funding": {
|
|
6136
6354
|
"type": "github",
|
|
@@ -6138,9 +6356,10 @@
|
|
|
6138
6356
|
}
|
|
6139
6357
|
},
|
|
6140
6358
|
"node_modules/@tanstack/query-devtools": {
|
|
6141
|
-
"version": "5.
|
|
6142
|
-
"resolved": "https://registry.npmjs.org/@tanstack/query-devtools/-/query-devtools-5.
|
|
6143
|
-
"integrity": "sha512-
|
|
6359
|
+
"version": "5.101.0",
|
|
6360
|
+
"resolved": "https://registry.npmjs.org/@tanstack/query-devtools/-/query-devtools-5.101.0.tgz",
|
|
6361
|
+
"integrity": "sha512-MVqw17k08RQtGGLEL654+dX/btbX9p/8WjkznO//zusLTMaObxi3Q+MoFwGVkC9K3tqjn8qrrNhJevXx4fJTeQ==",
|
|
6362
|
+
"dev": true,
|
|
6144
6363
|
"license": "MIT",
|
|
6145
6364
|
"funding": {
|
|
6146
6365
|
"type": "github",
|
|
@@ -6148,12 +6367,13 @@
|
|
|
6148
6367
|
}
|
|
6149
6368
|
},
|
|
6150
6369
|
"node_modules/@tanstack/react-devtools": {
|
|
6151
|
-
"version": "0.10.
|
|
6152
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-devtools/-/react-devtools-0.10.
|
|
6153
|
-
"integrity": "sha512-
|
|
6370
|
+
"version": "0.10.7",
|
|
6371
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-devtools/-/react-devtools-0.10.7.tgz",
|
|
6372
|
+
"integrity": "sha512-AYHQH06uuK07Asqq8eASgJjpILlaFBpjnTesxx1JVHGoBl4ijwbyIlKnj3Z8+M8sEOPn5mvtV5o6mielPXKHWg==",
|
|
6373
|
+
"dev": true,
|
|
6154
6374
|
"license": "MIT",
|
|
6155
6375
|
"dependencies": {
|
|
6156
|
-
"@tanstack/devtools": "0.12.
|
|
6376
|
+
"@tanstack/devtools": "0.12.4"
|
|
6157
6377
|
},
|
|
6158
6378
|
"engines": {
|
|
6159
6379
|
"node": ">=18"
|
|
@@ -6194,6 +6414,7 @@
|
|
|
6194
6414
|
"version": "0.7.0",
|
|
6195
6415
|
"resolved": "https://registry.npmjs.org/@tanstack/react-hotkeys-devtools/-/react-hotkeys-devtools-0.7.0.tgz",
|
|
6196
6416
|
"integrity": "sha512-gA6/ZQp2NFpnl1iIJKBr+vzM8AcVr3qdU1MJIbDzXg2LJSqV2ekAiB3sI9iFeweLrSyUWzovHRmYhIkAtnDPLg==",
|
|
6417
|
+
"dev": true,
|
|
6197
6418
|
"license": "MIT",
|
|
6198
6419
|
"dependencies": {
|
|
6199
6420
|
"@tanstack/devtools-utils": "^0.4.0",
|
|
@@ -6238,6 +6459,7 @@
|
|
|
6238
6459
|
"version": "0.7.1",
|
|
6239
6460
|
"resolved": "https://registry.npmjs.org/@tanstack/react-pacer-devtools/-/react-pacer-devtools-0.7.1.tgz",
|
|
6240
6461
|
"integrity": "sha512-y1mjaZWvNVBZyWp+/rhf8LzmPqRTiKxszzTc2woFTNTNhl6CDjxZYtTxKQfYUKzeH4Qd136VjV05da/PdmLQVg==",
|
|
6462
|
+
"dev": true,
|
|
6241
6463
|
"license": "MIT",
|
|
6242
6464
|
"dependencies": {
|
|
6243
6465
|
"@tanstack/devtools-utils": "^0.5.0",
|
|
@@ -6261,6 +6483,7 @@
|
|
|
6261
6483
|
"version": "0.5.0",
|
|
6262
6484
|
"resolved": "https://registry.npmjs.org/@tanstack/devtools-utils/-/devtools-utils-0.5.0.tgz",
|
|
6263
6485
|
"integrity": "sha512-5wRNVDun+y2Gn2OrSj4S73TljY0B3YCzgfIm540tGkqmI6MTu78i57WT/3YOuEUfIyxtZiANRWEnk7fiLNFBZg==",
|
|
6486
|
+
"dev": true,
|
|
6264
6487
|
"license": "MIT",
|
|
6265
6488
|
"bin": {
|
|
6266
6489
|
"intent": "bin/intent.js"
|
|
@@ -6302,12 +6525,12 @@
|
|
|
6302
6525
|
}
|
|
6303
6526
|
},
|
|
6304
6527
|
"node_modules/@tanstack/react-query": {
|
|
6305
|
-
"version": "5.
|
|
6306
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.
|
|
6307
|
-
"integrity": "sha512-
|
|
6528
|
+
"version": "5.101.0",
|
|
6529
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.101.0.tgz",
|
|
6530
|
+
"integrity": "sha512-rLlJXSpkqfizLWgkR5+eLeIk0MvTx/meEIR7LRjxic+qxiQP8zVjq7BqQkiCMNLQBlLfuOLqqr6KO5GtrDlmSg==",
|
|
6308
6531
|
"license": "MIT",
|
|
6309
6532
|
"dependencies": {
|
|
6310
|
-
"@tanstack/query-core": "5.
|
|
6533
|
+
"@tanstack/query-core": "5.101.0"
|
|
6311
6534
|
},
|
|
6312
6535
|
"funding": {
|
|
6313
6536
|
"type": "github",
|
|
@@ -6318,31 +6541,32 @@
|
|
|
6318
6541
|
}
|
|
6319
6542
|
},
|
|
6320
6543
|
"node_modules/@tanstack/react-query-devtools": {
|
|
6321
|
-
"version": "5.
|
|
6322
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-5.
|
|
6323
|
-
"integrity": "sha512-
|
|
6544
|
+
"version": "5.101.0",
|
|
6545
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-5.101.0.tgz",
|
|
6546
|
+
"integrity": "sha512-cpZA0+WqKXwrwMfiWZEGGF6QrIWVQFbhBtxqDF5sQsAfrFf47HIE6fiPbQU3wyAUEN2+7UNqLCQe7oG6m3f93w==",
|
|
6547
|
+
"dev": true,
|
|
6324
6548
|
"license": "MIT",
|
|
6325
6549
|
"dependencies": {
|
|
6326
|
-
"@tanstack/query-devtools": "5.
|
|
6550
|
+
"@tanstack/query-devtools": "5.101.0"
|
|
6327
6551
|
},
|
|
6328
6552
|
"funding": {
|
|
6329
6553
|
"type": "github",
|
|
6330
6554
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6331
6555
|
},
|
|
6332
6556
|
"peerDependencies": {
|
|
6333
|
-
"@tanstack/react-query": "^5.
|
|
6557
|
+
"@tanstack/react-query": "^5.101.0",
|
|
6334
6558
|
"react": "^18 || ^19"
|
|
6335
6559
|
}
|
|
6336
6560
|
},
|
|
6337
6561
|
"node_modules/@tanstack/react-router": {
|
|
6338
|
-
"version": "1.
|
|
6339
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-router/-/react-router-1.
|
|
6340
|
-
"integrity": "sha512-
|
|
6562
|
+
"version": "1.170.16",
|
|
6563
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-router/-/react-router-1.170.16.tgz",
|
|
6564
|
+
"integrity": "sha512-w6eq1IJklujs1tESazaK/FxH0+H2l8vm/QPuu1cD3oRW/ubgKneQpd7b64ti/8gUyEimzimJQZDmJr6YHfP5+g==",
|
|
6341
6565
|
"license": "MIT",
|
|
6342
6566
|
"dependencies": {
|
|
6343
|
-
"@tanstack/history": "1.
|
|
6567
|
+
"@tanstack/history": "1.162.0",
|
|
6344
6568
|
"@tanstack/react-store": "^0.9.3",
|
|
6345
|
-
"@tanstack/router-core": "1.
|
|
6569
|
+
"@tanstack/router-core": "1.171.13",
|
|
6346
6570
|
"isbot": "^5.1.22"
|
|
6347
6571
|
},
|
|
6348
6572
|
"engines": {
|
|
@@ -6358,12 +6582,13 @@
|
|
|
6358
6582
|
}
|
|
6359
6583
|
},
|
|
6360
6584
|
"node_modules/@tanstack/react-router-devtools": {
|
|
6361
|
-
"version": "1.
|
|
6362
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-router-devtools/-/react-router-devtools-1.
|
|
6363
|
-
"integrity": "sha512-
|
|
6585
|
+
"version": "1.167.0",
|
|
6586
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-router-devtools/-/react-router-devtools-1.167.0.tgz",
|
|
6587
|
+
"integrity": "sha512-nGw095EG7IHx0h5NtlEmzf6vcCTaFNPWdTSuDKazajhN0ct/v/TkekJ9J6KYUCeV1a8/2ZmToc58M+0rrOyn7w==",
|
|
6588
|
+
"dev": true,
|
|
6364
6589
|
"license": "MIT",
|
|
6365
6590
|
"dependencies": {
|
|
6366
|
-
"@tanstack/router-devtools-core": "1.
|
|
6591
|
+
"@tanstack/router-devtools-core": "1.168.0"
|
|
6367
6592
|
},
|
|
6368
6593
|
"engines": {
|
|
6369
6594
|
"node": ">=20.19"
|
|
@@ -6373,8 +6598,8 @@
|
|
|
6373
6598
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6374
6599
|
},
|
|
6375
6600
|
"peerDependencies": {
|
|
6376
|
-
"@tanstack/react-router": "^1.
|
|
6377
|
-
"@tanstack/router-core": "^1.
|
|
6601
|
+
"@tanstack/react-router": "^1.170.0",
|
|
6602
|
+
"@tanstack/router-core": "^1.170.0",
|
|
6378
6603
|
"react": ">=18.0.0 || >=19.0.0",
|
|
6379
6604
|
"react-dom": ">=18.0.0 || >=19.0.0"
|
|
6380
6605
|
},
|
|
@@ -6431,12 +6656,12 @@
|
|
|
6431
6656
|
}
|
|
6432
6657
|
},
|
|
6433
6658
|
"node_modules/@tanstack/router-core": {
|
|
6434
|
-
"version": "1.
|
|
6435
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-core/-/router-core-1.
|
|
6436
|
-
"integrity": "sha512
|
|
6659
|
+
"version": "1.171.13",
|
|
6660
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-core/-/router-core-1.171.13.tgz",
|
|
6661
|
+
"integrity": "sha512-+NOwEj1kO/6IGmpHRIZHasYxYWpyBQGNIZAST9aNrk9Q3YlU9SgqVnl1pbLa9qAKfeNdXQIRve0RQb/0kyDeDA==",
|
|
6437
6662
|
"license": "MIT",
|
|
6438
6663
|
"dependencies": {
|
|
6439
|
-
"@tanstack/history": "1.
|
|
6664
|
+
"@tanstack/history": "1.162.0",
|
|
6440
6665
|
"cookie-es": "^3.0.0",
|
|
6441
6666
|
"seroval": "^1.5.4",
|
|
6442
6667
|
"seroval-plugins": "^1.5.4"
|
|
@@ -6450,9 +6675,10 @@
|
|
|
6450
6675
|
}
|
|
6451
6676
|
},
|
|
6452
6677
|
"node_modules/@tanstack/router-devtools-core": {
|
|
6453
|
-
"version": "1.
|
|
6454
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-devtools-core/-/router-devtools-core-1.
|
|
6455
|
-
"integrity": "sha512-
|
|
6678
|
+
"version": "1.168.0",
|
|
6679
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-devtools-core/-/router-devtools-core-1.168.0.tgz",
|
|
6680
|
+
"integrity": "sha512-wQoQhlBK7nlZgqzaqdYXKWNTpdHdsaREdaPhFZVH0/Ador+F+eM3/NF2i3f2LPeS0GgKraZUQXe1Q/1+KHyEYg==",
|
|
6681
|
+
"dev": true,
|
|
6456
6682
|
"license": "MIT",
|
|
6457
6683
|
"dependencies": {
|
|
6458
6684
|
"clsx": "^2.1.1",
|
|
@@ -6466,7 +6692,7 @@
|
|
|
6466
6692
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6467
6693
|
},
|
|
6468
6694
|
"peerDependencies": {
|
|
6469
|
-
"@tanstack/router-core": "^1.
|
|
6695
|
+
"@tanstack/router-core": "^1.170.0",
|
|
6470
6696
|
"csstype": "^3.0.10"
|
|
6471
6697
|
},
|
|
6472
6698
|
"peerDependenciesMeta": {
|
|
@@ -6476,19 +6702,20 @@
|
|
|
6476
6702
|
}
|
|
6477
6703
|
},
|
|
6478
6704
|
"node_modules/@tanstack/router-generator": {
|
|
6479
|
-
"version": "1.
|
|
6480
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-generator/-/router-generator-1.
|
|
6481
|
-
"integrity": "sha512-
|
|
6705
|
+
"version": "1.167.17",
|
|
6706
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-generator/-/router-generator-1.167.17.tgz",
|
|
6707
|
+
"integrity": "sha512-xtB9tB2Ws0tWR6Pi7nc3Qk9IYgoh1mQCKWjHqIl9tf6BNUpKoqniJoPAQ4+LGrK8FeZYU0o0p/qlZEyj9FAulA==",
|
|
6708
|
+
"dev": true,
|
|
6482
6709
|
"license": "MIT",
|
|
6483
6710
|
"dependencies": {
|
|
6484
6711
|
"@babel/types": "^7.28.5",
|
|
6485
|
-
"@tanstack/router-core": "1.
|
|
6486
|
-
"@tanstack/router-utils": "1.
|
|
6487
|
-
"@tanstack/virtual-file-routes": "1.
|
|
6712
|
+
"@tanstack/router-core": "1.171.13",
|
|
6713
|
+
"@tanstack/router-utils": "1.162.2",
|
|
6714
|
+
"@tanstack/virtual-file-routes": "1.162.0",
|
|
6488
6715
|
"jiti": "^2.7.0",
|
|
6489
6716
|
"magic-string": "^0.30.21",
|
|
6490
6717
|
"prettier": "^3.5.0",
|
|
6491
|
-
"zod": "^
|
|
6718
|
+
"zod": "^4.4.3"
|
|
6492
6719
|
},
|
|
6493
6720
|
"engines": {
|
|
6494
6721
|
"node": ">=20.19"
|
|
@@ -6498,25 +6725,32 @@
|
|
|
6498
6725
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6499
6726
|
}
|
|
6500
6727
|
},
|
|
6728
|
+
"node_modules/@tanstack/router-generator/node_modules/zod": {
|
|
6729
|
+
"version": "4.4.3",
|
|
6730
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
|
|
6731
|
+
"integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
|
|
6732
|
+
"dev": true,
|
|
6733
|
+
"license": "MIT",
|
|
6734
|
+
"funding": {
|
|
6735
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
6736
|
+
}
|
|
6737
|
+
},
|
|
6501
6738
|
"node_modules/@tanstack/router-plugin": {
|
|
6502
|
-
"version": "1.
|
|
6503
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-plugin/-/router-plugin-1.
|
|
6504
|
-
"integrity": "sha512-
|
|
6739
|
+
"version": "1.168.18",
|
|
6740
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-plugin/-/router-plugin-1.168.18.tgz",
|
|
6741
|
+
"integrity": "sha512-MofS28/axfnfnhOD2RSgJEaU882aX5RsAzhGz5Vc4XhAmvCjy919u9JrNs4QsTWFbTD1P7IJ8WFlFVsrg0pStg==",
|
|
6742
|
+
"dev": true,
|
|
6505
6743
|
"license": "MIT",
|
|
6506
6744
|
"dependencies": {
|
|
6507
6745
|
"@babel/core": "^7.28.5",
|
|
6508
|
-
"@babel/plugin-syntax-jsx": "^7.27.1",
|
|
6509
|
-
"@babel/plugin-syntax-typescript": "^7.27.1",
|
|
6510
6746
|
"@babel/template": "^7.27.2",
|
|
6511
|
-
"@babel/traverse": "^7.28.5",
|
|
6512
6747
|
"@babel/types": "^7.28.5",
|
|
6513
|
-
"@tanstack/router-core": "1.
|
|
6514
|
-
"@tanstack/router-generator": "1.
|
|
6515
|
-
"@tanstack/router-utils": "1.
|
|
6516
|
-
"
|
|
6517
|
-
"chokidar": "^3.6.0",
|
|
6748
|
+
"@tanstack/router-core": "1.171.13",
|
|
6749
|
+
"@tanstack/router-generator": "1.167.17",
|
|
6750
|
+
"@tanstack/router-utils": "1.162.2",
|
|
6751
|
+
"chokidar": "^5.0.0",
|
|
6518
6752
|
"unplugin": "^3.0.0",
|
|
6519
|
-
"zod": "^
|
|
6753
|
+
"zod": "^4.4.3"
|
|
6520
6754
|
},
|
|
6521
6755
|
"engines": {
|
|
6522
6756
|
"node": ">=20.19"
|
|
@@ -6527,7 +6761,7 @@
|
|
|
6527
6761
|
},
|
|
6528
6762
|
"peerDependencies": {
|
|
6529
6763
|
"@rsbuild/core": ">=1.0.2 || ^2.0.0",
|
|
6530
|
-
"@tanstack/react-router": "^1.
|
|
6764
|
+
"@tanstack/react-router": "^1.170.15",
|
|
6531
6765
|
"vite": ">=5.0.0 || >=6.0.0 || >=7.0.0 || >=8.0.0",
|
|
6532
6766
|
"vite-plugin-solid": "^2.11.10 || ^3.0.0-0",
|
|
6533
6767
|
"webpack": ">=5.92.0"
|
|
@@ -6551,60 +6785,52 @@
|
|
|
6551
6785
|
}
|
|
6552
6786
|
},
|
|
6553
6787
|
"node_modules/@tanstack/router-plugin/node_modules/chokidar": {
|
|
6554
|
-
"version": "
|
|
6555
|
-
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-
|
|
6556
|
-
"integrity": "sha512-
|
|
6788
|
+
"version": "5.0.0",
|
|
6789
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz",
|
|
6790
|
+
"integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==",
|
|
6791
|
+
"dev": true,
|
|
6557
6792
|
"license": "MIT",
|
|
6558
6793
|
"dependencies": {
|
|
6559
|
-
"
|
|
6560
|
-
"braces": "~3.0.2",
|
|
6561
|
-
"glob-parent": "~5.1.2",
|
|
6562
|
-
"is-binary-path": "~2.1.0",
|
|
6563
|
-
"is-glob": "~4.0.1",
|
|
6564
|
-
"normalize-path": "~3.0.0",
|
|
6565
|
-
"readdirp": "~3.6.0"
|
|
6794
|
+
"readdirp": "^5.0.0"
|
|
6566
6795
|
},
|
|
6567
6796
|
"engines": {
|
|
6568
|
-
"node": ">=
|
|
6797
|
+
"node": ">= 20.19.0"
|
|
6569
6798
|
},
|
|
6570
6799
|
"funding": {
|
|
6571
6800
|
"url": "https://paulmillr.com/funding/"
|
|
6572
|
-
},
|
|
6573
|
-
"optionalDependencies": {
|
|
6574
|
-
"fsevents": "~2.3.2"
|
|
6575
6801
|
}
|
|
6576
6802
|
},
|
|
6577
|
-
"node_modules/@tanstack/router-plugin/node_modules/
|
|
6578
|
-
"version": "
|
|
6579
|
-
"resolved": "https://registry.npmjs.org/
|
|
6580
|
-
"integrity": "sha512-
|
|
6803
|
+
"node_modules/@tanstack/router-plugin/node_modules/readdirp": {
|
|
6804
|
+
"version": "5.0.0",
|
|
6805
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.0.0.tgz",
|
|
6806
|
+
"integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==",
|
|
6807
|
+
"dev": true,
|
|
6581
6808
|
"license": "MIT",
|
|
6582
6809
|
"engines": {
|
|
6583
|
-
"node": ">=
|
|
6810
|
+
"node": ">= 20.19.0"
|
|
6584
6811
|
},
|
|
6585
6812
|
"funding": {
|
|
6586
|
-
"
|
|
6813
|
+
"type": "individual",
|
|
6814
|
+
"url": "https://paulmillr.com/funding/"
|
|
6587
6815
|
}
|
|
6588
6816
|
},
|
|
6589
|
-
"node_modules/@tanstack/router-plugin/node_modules/
|
|
6590
|
-
"version": "
|
|
6591
|
-
"resolved": "https://registry.npmjs.org/
|
|
6592
|
-
"integrity": "sha512-
|
|
6817
|
+
"node_modules/@tanstack/router-plugin/node_modules/zod": {
|
|
6818
|
+
"version": "4.4.3",
|
|
6819
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
|
|
6820
|
+
"integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
|
|
6821
|
+
"dev": true,
|
|
6593
6822
|
"license": "MIT",
|
|
6594
|
-
"
|
|
6595
|
-
"
|
|
6596
|
-
},
|
|
6597
|
-
"engines": {
|
|
6598
|
-
"node": ">=8.10.0"
|
|
6823
|
+
"funding": {
|
|
6824
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
6599
6825
|
}
|
|
6600
6826
|
},
|
|
6601
6827
|
"node_modules/@tanstack/router-utils": {
|
|
6602
|
-
"version": "1.
|
|
6603
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-utils/-/router-utils-1.
|
|
6604
|
-
"integrity": "sha512-
|
|
6828
|
+
"version": "1.162.2",
|
|
6829
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-utils/-/router-utils-1.162.2.tgz",
|
|
6830
|
+
"integrity": "sha512-hTWqJtqIFFdvuCl8WXNyrodp2L9zo2G37xKRrcVmVRWpAB2h+U1LuRAfS4tsFTiWOIoE/B+WDVFB8JpoEdw6jQ==",
|
|
6831
|
+
"dev": true,
|
|
6605
6832
|
"license": "MIT",
|
|
6606
6833
|
"dependencies": {
|
|
6607
|
-
"@babel/core": "^7.28.5",
|
|
6608
6834
|
"@babel/generator": "^7.28.5",
|
|
6609
6835
|
"@babel/parser": "^7.28.5",
|
|
6610
6836
|
"@babel/types": "^7.28.5",
|
|
@@ -6626,6 +6852,7 @@
|
|
|
6626
6852
|
"version": "0.11.0",
|
|
6627
6853
|
"resolved": "https://registry.npmjs.org/@tanstack/solid-store/-/solid-store-0.11.0.tgz",
|
|
6628
6854
|
"integrity": "sha512-2isL0ZnnyI1iN0V+QPrxE3OcPndohBgVlBcHZYoAOIAiU1WoWjVy0q5gb0suPu1Id0h5cKC23JnwzQTxWDZD0w==",
|
|
6855
|
+
"dev": true,
|
|
6629
6856
|
"license": "MIT",
|
|
6630
6857
|
"dependencies": {
|
|
6631
6858
|
"@tanstack/store": "0.11.0"
|
|
@@ -6649,13 +6876,11 @@
|
|
|
6649
6876
|
}
|
|
6650
6877
|
},
|
|
6651
6878
|
"node_modules/@tanstack/virtual-file-routes": {
|
|
6652
|
-
"version": "1.
|
|
6653
|
-
"resolved": "https://registry.npmjs.org/@tanstack/virtual-file-routes/-/virtual-file-routes-1.
|
|
6654
|
-
"integrity": "sha512-
|
|
6879
|
+
"version": "1.162.0",
|
|
6880
|
+
"resolved": "https://registry.npmjs.org/@tanstack/virtual-file-routes/-/virtual-file-routes-1.162.0.tgz",
|
|
6881
|
+
"integrity": "sha512-uhOeFyxLcU41HzvrxsGpiWdcMbScY1EDgbZ5K7DVRMYInbLYWAC0EA/kx9wXAoSM8q82bUG2hRl8+EAjE6XAbA==",
|
|
6882
|
+
"dev": true,
|
|
6655
6883
|
"license": "MIT",
|
|
6656
|
-
"bin": {
|
|
6657
|
-
"intent": "bin/intent.js"
|
|
6658
|
-
},
|
|
6659
6884
|
"engines": {
|
|
6660
6885
|
"node": ">=20.19"
|
|
6661
6886
|
},
|
|
@@ -6972,16 +7197,6 @@
|
|
|
6972
7197
|
"tslib": "^2.4.0"
|
|
6973
7198
|
}
|
|
6974
7199
|
},
|
|
6975
|
-
"node_modules/@types/chai": {
|
|
6976
|
-
"version": "5.2.3",
|
|
6977
|
-
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
|
|
6978
|
-
"integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
|
|
6979
|
-
"license": "MIT",
|
|
6980
|
-
"dependencies": {
|
|
6981
|
-
"@types/deep-eql": "*",
|
|
6982
|
-
"assertion-error": "^2.0.1"
|
|
6983
|
-
}
|
|
6984
|
-
},
|
|
6985
7200
|
"node_modules/@types/cli-progress": {
|
|
6986
7201
|
"version": "3.11.6",
|
|
6987
7202
|
"resolved": "https://registry.npmjs.org/@types/cli-progress/-/cli-progress-3.11.6.tgz",
|
|
@@ -7008,12 +7223,6 @@
|
|
|
7008
7223
|
"@types/ms": "*"
|
|
7009
7224
|
}
|
|
7010
7225
|
},
|
|
7011
|
-
"node_modules/@types/deep-eql": {
|
|
7012
|
-
"version": "4.0.2",
|
|
7013
|
-
"resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
|
|
7014
|
-
"integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
|
|
7015
|
-
"license": "MIT"
|
|
7016
|
-
},
|
|
7017
7226
|
"node_modules/@types/earcut": {
|
|
7018
7227
|
"version": "3.0.0",
|
|
7019
7228
|
"resolved": "https://registry.npmjs.org/@types/earcut/-/earcut-3.0.0.tgz",
|
|
@@ -7095,6 +7304,7 @@
|
|
|
7095
7304
|
"version": "25.9.1",
|
|
7096
7305
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.1.tgz",
|
|
7097
7306
|
"integrity": "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==",
|
|
7307
|
+
"devOptional": true,
|
|
7098
7308
|
"license": "MIT",
|
|
7099
7309
|
"dependencies": {
|
|
7100
7310
|
"undici-types": ">=7.24.0 <7.24.7"
|
|
@@ -7120,6 +7330,7 @@
|
|
|
7120
7330
|
"version": "19.2.3",
|
|
7121
7331
|
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
|
|
7122
7332
|
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
|
|
7333
|
+
"devOptional": true,
|
|
7123
7334
|
"license": "MIT",
|
|
7124
7335
|
"peerDependencies": {
|
|
7125
7336
|
"@types/react": "^19.2.0"
|
|
@@ -7132,21 +7343,6 @@
|
|
|
7132
7343
|
"dev": true,
|
|
7133
7344
|
"license": "MIT"
|
|
7134
7345
|
},
|
|
7135
|
-
"node_modules/@types/set-cookie-parser": {
|
|
7136
|
-
"version": "2.4.10",
|
|
7137
|
-
"resolved": "https://registry.npmjs.org/@types/set-cookie-parser/-/set-cookie-parser-2.4.10.tgz",
|
|
7138
|
-
"integrity": "sha512-GGmQVGpQWUe5qglJozEjZV/5dyxbOOZ0LHe/lqyWssB88Y4svNfst0uqBVscdDeIKl5Jy5+aPSvy7mI9tYRguw==",
|
|
7139
|
-
"license": "MIT",
|
|
7140
|
-
"dependencies": {
|
|
7141
|
-
"@types/node": "*"
|
|
7142
|
-
}
|
|
7143
|
-
},
|
|
7144
|
-
"node_modules/@types/statuses": {
|
|
7145
|
-
"version": "2.0.6",
|
|
7146
|
-
"resolved": "https://registry.npmjs.org/@types/statuses/-/statuses-2.0.6.tgz",
|
|
7147
|
-
"integrity": "sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==",
|
|
7148
|
-
"license": "MIT"
|
|
7149
|
-
},
|
|
7150
7346
|
"node_modules/@types/trusted-types": {
|
|
7151
7347
|
"version": "2.0.7",
|
|
7152
7348
|
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
|
|
@@ -7683,116 +7879,10 @@
|
|
|
7683
7879
|
}
|
|
7684
7880
|
}
|
|
7685
7881
|
},
|
|
7686
|
-
"node_modules/@vitest/expect": {
|
|
7687
|
-
"version": "4.1.5",
|
|
7688
|
-
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.5.tgz",
|
|
7689
|
-
"integrity": "sha512-PWBaRY5JoKuRnHlUHfpV/KohFylaDZTupcXN1H9vYryNLOnitSw60Mw9IAE2r67NbwwzBw/Cc/8q9BK3kIX8Kw==",
|
|
7690
|
-
"license": "MIT",
|
|
7691
|
-
"dependencies": {
|
|
7692
|
-
"@standard-schema/spec": "^1.1.0",
|
|
7693
|
-
"@types/chai": "^5.2.2",
|
|
7694
|
-
"@vitest/spy": "4.1.5",
|
|
7695
|
-
"@vitest/utils": "4.1.5",
|
|
7696
|
-
"chai": "^6.2.2",
|
|
7697
|
-
"tinyrainbow": "^3.1.0"
|
|
7698
|
-
},
|
|
7699
|
-
"funding": {
|
|
7700
|
-
"url": "https://opencollective.com/vitest"
|
|
7701
|
-
}
|
|
7702
|
-
},
|
|
7703
|
-
"node_modules/@vitest/mocker": {
|
|
7704
|
-
"version": "4.1.5",
|
|
7705
|
-
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.5.tgz",
|
|
7706
|
-
"integrity": "sha512-/x2EmFC4mT4NNzqvC3fmesuV97w5FC903KPmey4gsnJiMQ3Be1IlDKVaDaG8iqaLFHqJ2FVEkxZk5VmeLjIItw==",
|
|
7707
|
-
"license": "MIT",
|
|
7708
|
-
"dependencies": {
|
|
7709
|
-
"@vitest/spy": "4.1.5",
|
|
7710
|
-
"estree-walker": "^3.0.3",
|
|
7711
|
-
"magic-string": "^0.30.21"
|
|
7712
|
-
},
|
|
7713
|
-
"funding": {
|
|
7714
|
-
"url": "https://opencollective.com/vitest"
|
|
7715
|
-
},
|
|
7716
|
-
"peerDependencies": {
|
|
7717
|
-
"msw": "^2.4.9",
|
|
7718
|
-
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
7719
|
-
},
|
|
7720
|
-
"peerDependenciesMeta": {
|
|
7721
|
-
"msw": {
|
|
7722
|
-
"optional": true
|
|
7723
|
-
},
|
|
7724
|
-
"vite": {
|
|
7725
|
-
"optional": true
|
|
7726
|
-
}
|
|
7727
|
-
}
|
|
7728
|
-
},
|
|
7729
|
-
"node_modules/@vitest/pretty-format": {
|
|
7730
|
-
"version": "4.1.5",
|
|
7731
|
-
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.5.tgz",
|
|
7732
|
-
"integrity": "sha512-7I3q6l5qr03dVfMX2wCo9FxwSJbPdwKjy2uu/YPpU3wfHvIL4QHwVRp57OfGrDFeUJ8/8QdfBKIV12FTtLn00g==",
|
|
7733
|
-
"license": "MIT",
|
|
7734
|
-
"dependencies": {
|
|
7735
|
-
"tinyrainbow": "^3.1.0"
|
|
7736
|
-
},
|
|
7737
|
-
"funding": {
|
|
7738
|
-
"url": "https://opencollective.com/vitest"
|
|
7739
|
-
}
|
|
7740
|
-
},
|
|
7741
|
-
"node_modules/@vitest/runner": {
|
|
7742
|
-
"version": "4.1.5",
|
|
7743
|
-
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.5.tgz",
|
|
7744
|
-
"integrity": "sha512-2D+o7Pr82IEO46YPpoA/YU0neeyr6FTerQb5Ro7BUnBuv6NQtT/kmVnczngiMEBhzgqz2UZYl5gArejsyERDSQ==",
|
|
7745
|
-
"license": "MIT",
|
|
7746
|
-
"dependencies": {
|
|
7747
|
-
"@vitest/utils": "4.1.5",
|
|
7748
|
-
"pathe": "^2.0.3"
|
|
7749
|
-
},
|
|
7750
|
-
"funding": {
|
|
7751
|
-
"url": "https://opencollective.com/vitest"
|
|
7752
|
-
}
|
|
7753
|
-
},
|
|
7754
|
-
"node_modules/@vitest/snapshot": {
|
|
7755
|
-
"version": "4.1.5",
|
|
7756
|
-
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.5.tgz",
|
|
7757
|
-
"integrity": "sha512-zypXEt4KH/XgKGPUz4eC2AvErYx0My5hfL8oDb1HzGFpEk1P62bxSohdyOmvz+d9UJwanI68MKwr2EquOaOgMQ==",
|
|
7758
|
-
"license": "MIT",
|
|
7759
|
-
"dependencies": {
|
|
7760
|
-
"@vitest/pretty-format": "4.1.5",
|
|
7761
|
-
"@vitest/utils": "4.1.5",
|
|
7762
|
-
"magic-string": "^0.30.21",
|
|
7763
|
-
"pathe": "^2.0.3"
|
|
7764
|
-
},
|
|
7765
|
-
"funding": {
|
|
7766
|
-
"url": "https://opencollective.com/vitest"
|
|
7767
|
-
}
|
|
7768
|
-
},
|
|
7769
|
-
"node_modules/@vitest/spy": {
|
|
7770
|
-
"version": "4.1.5",
|
|
7771
|
-
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.5.tgz",
|
|
7772
|
-
"integrity": "sha512-2lNOsh6+R2Idnf1TCZqSwYlKN2E/iDlD8sgU59kYVl+OMDmvldO1VDk39smRfpUNwYpNRVn3w4YfuC7KfbBnkQ==",
|
|
7773
|
-
"license": "MIT",
|
|
7774
|
-
"funding": {
|
|
7775
|
-
"url": "https://opencollective.com/vitest"
|
|
7776
|
-
}
|
|
7777
|
-
},
|
|
7778
|
-
"node_modules/@vitest/utils": {
|
|
7779
|
-
"version": "4.1.5",
|
|
7780
|
-
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.5.tgz",
|
|
7781
|
-
"integrity": "sha512-76wdkrmfXfqGjueGgnb45ITPyUi1ycZ4IHgC2bhPDUfWHklY/q3MdLOAB+TF1e6xfl8NxNY0ZYaPCFNWSsw3Ug==",
|
|
7782
|
-
"license": "MIT",
|
|
7783
|
-
"dependencies": {
|
|
7784
|
-
"@vitest/pretty-format": "4.1.5",
|
|
7785
|
-
"convert-source-map": "^2.0.0",
|
|
7786
|
-
"tinyrainbow": "^3.1.0"
|
|
7787
|
-
},
|
|
7788
|
-
"funding": {
|
|
7789
|
-
"url": "https://opencollective.com/vitest"
|
|
7790
|
-
}
|
|
7791
|
-
},
|
|
7792
7882
|
"node_modules/@webgpu/types": {
|
|
7793
|
-
"version": "0.1.
|
|
7794
|
-
"resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.1.
|
|
7795
|
-
"integrity": "sha512-
|
|
7883
|
+
"version": "0.1.70",
|
|
7884
|
+
"resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.1.70.tgz",
|
|
7885
|
+
"integrity": "sha512-LFiNHHKMvmAEvwVew3JLJmTdShhbdwRFSImUshGhE2mGE8ybQzIo63l5uRp+YKnNx+8Qno8Kf6gN+DKMreIJCA==",
|
|
7796
7886
|
"license": "BSD-3-Clause",
|
|
7797
7887
|
"peer": true
|
|
7798
7888
|
},
|
|
@@ -7890,6 +7980,7 @@
|
|
|
7890
7980
|
"version": "4.3.0",
|
|
7891
7981
|
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
7892
7982
|
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
7983
|
+
"dev": true,
|
|
7893
7984
|
"license": "MIT",
|
|
7894
7985
|
"dependencies": {
|
|
7895
7986
|
"color-convert": "^2.0.1"
|
|
@@ -7902,9 +7993,10 @@
|
|
|
7902
7993
|
}
|
|
7903
7994
|
},
|
|
7904
7995
|
"node_modules/ansis": {
|
|
7905
|
-
"version": "4.
|
|
7906
|
-
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.
|
|
7907
|
-
"integrity": "sha512-
|
|
7996
|
+
"version": "4.3.1",
|
|
7997
|
+
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.3.1.tgz",
|
|
7998
|
+
"integrity": "sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA==",
|
|
7999
|
+
"dev": true,
|
|
7908
8000
|
"license": "ISC",
|
|
7909
8001
|
"engines": {
|
|
7910
8002
|
"node": ">=14"
|
|
@@ -7917,31 +8009,6 @@
|
|
|
7917
8009
|
"dev": true,
|
|
7918
8010
|
"license": "MIT"
|
|
7919
8011
|
},
|
|
7920
|
-
"node_modules/anymatch": {
|
|
7921
|
-
"version": "3.1.3",
|
|
7922
|
-
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
|
7923
|
-
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
|
7924
|
-
"license": "ISC",
|
|
7925
|
-
"dependencies": {
|
|
7926
|
-
"normalize-path": "^3.0.0",
|
|
7927
|
-
"picomatch": "^2.0.4"
|
|
7928
|
-
},
|
|
7929
|
-
"engines": {
|
|
7930
|
-
"node": ">= 8"
|
|
7931
|
-
}
|
|
7932
|
-
},
|
|
7933
|
-
"node_modules/anymatch/node_modules/picomatch": {
|
|
7934
|
-
"version": "2.3.2",
|
|
7935
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
|
|
7936
|
-
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
|
7937
|
-
"license": "MIT",
|
|
7938
|
-
"engines": {
|
|
7939
|
-
"node": ">=8.6"
|
|
7940
|
-
},
|
|
7941
|
-
"funding": {
|
|
7942
|
-
"url": "https://github.com/sponsors/jonschlinkert"
|
|
7943
|
-
}
|
|
7944
|
-
},
|
|
7945
8012
|
"node_modules/arabic-persian-reshaper": {
|
|
7946
8013
|
"version": "1.0.1",
|
|
7947
8014
|
"resolved": "https://registry.npmjs.org/arabic-persian-reshaper/-/arabic-persian-reshaper-1.0.1.tgz",
|
|
@@ -8006,15 +8073,6 @@
|
|
|
8006
8073
|
"url": "https://github.com/sponsors/ljharb"
|
|
8007
8074
|
}
|
|
8008
8075
|
},
|
|
8009
|
-
"node_modules/assertion-error": {
|
|
8010
|
-
"version": "2.0.1",
|
|
8011
|
-
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
|
|
8012
|
-
"integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
|
|
8013
|
-
"license": "MIT",
|
|
8014
|
-
"engines": {
|
|
8015
|
-
"node": ">=12"
|
|
8016
|
-
}
|
|
8017
|
-
},
|
|
8018
8076
|
"node_modules/ast-types": {
|
|
8019
8077
|
"version": "0.16.1",
|
|
8020
8078
|
"resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
|
|
@@ -8097,6 +8155,7 @@
|
|
|
8097
8155
|
"version": "1.0.12",
|
|
8098
8156
|
"resolved": "https://registry.npmjs.org/babel-dead-code-elimination/-/babel-dead-code-elimination-1.0.12.tgz",
|
|
8099
8157
|
"integrity": "sha512-GERT7L2TiYcYDtYk1IpD+ASAYXjKbLTDPhBtYj7X1NuRMDTMtAx9kyBenub1Ev41lo91OHCKdmP+egTDmfQ7Ig==",
|
|
8158
|
+
"dev": true,
|
|
8100
8159
|
"license": "MIT",
|
|
8101
8160
|
"dependencies": {
|
|
8102
8161
|
"@babel/core": "^7.23.7",
|
|
@@ -8197,18 +8256,6 @@
|
|
|
8197
8256
|
"node": ">=6.0.0"
|
|
8198
8257
|
}
|
|
8199
8258
|
},
|
|
8200
|
-
"node_modules/binary-extensions": {
|
|
8201
|
-
"version": "2.3.0",
|
|
8202
|
-
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
8203
|
-
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
|
8204
|
-
"license": "MIT",
|
|
8205
|
-
"engines": {
|
|
8206
|
-
"node": ">=8"
|
|
8207
|
-
},
|
|
8208
|
-
"funding": {
|
|
8209
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
8210
|
-
}
|
|
8211
|
-
},
|
|
8212
8259
|
"node_modules/bmp-ts": {
|
|
8213
8260
|
"version": "1.0.9",
|
|
8214
8261
|
"resolved": "https://registry.npmjs.org/bmp-ts/-/bmp-ts-1.0.9.tgz",
|
|
@@ -8443,15 +8490,6 @@
|
|
|
8443
8490
|
"url": "https://github.com/sponsors/wooorm"
|
|
8444
8491
|
}
|
|
8445
8492
|
},
|
|
8446
|
-
"node_modules/chai": {
|
|
8447
|
-
"version": "6.2.2",
|
|
8448
|
-
"resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz",
|
|
8449
|
-
"integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==",
|
|
8450
|
-
"license": "MIT",
|
|
8451
|
-
"engines": {
|
|
8452
|
-
"node": ">=18"
|
|
8453
|
-
}
|
|
8454
|
-
},
|
|
8455
8493
|
"node_modules/chalk": {
|
|
8456
8494
|
"version": "5.6.2",
|
|
8457
8495
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
|
|
@@ -8617,19 +8655,11 @@
|
|
|
8617
8655
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
8618
8656
|
}
|
|
8619
8657
|
},
|
|
8620
|
-
"node_modules/cli-width": {
|
|
8621
|
-
"version": "4.1.0",
|
|
8622
|
-
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
8623
|
-
"integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
|
|
8624
|
-
"license": "ISC",
|
|
8625
|
-
"engines": {
|
|
8626
|
-
"node": ">= 12"
|
|
8627
|
-
}
|
|
8628
|
-
},
|
|
8629
8658
|
"node_modules/cliui": {
|
|
8630
8659
|
"version": "8.0.1",
|
|
8631
8660
|
"resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
|
|
8632
8661
|
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
|
|
8662
|
+
"dev": true,
|
|
8633
8663
|
"license": "ISC",
|
|
8634
8664
|
"dependencies": {
|
|
8635
8665
|
"string-width": "^4.2.0",
|
|
@@ -8644,6 +8674,7 @@
|
|
|
8644
8674
|
"version": "5.0.1",
|
|
8645
8675
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
8646
8676
|
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
8677
|
+
"dev": true,
|
|
8647
8678
|
"license": "MIT",
|
|
8648
8679
|
"engines": {
|
|
8649
8680
|
"node": ">=8"
|
|
@@ -8653,12 +8684,14 @@
|
|
|
8653
8684
|
"version": "8.0.0",
|
|
8654
8685
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
8655
8686
|
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
8687
|
+
"dev": true,
|
|
8656
8688
|
"license": "MIT"
|
|
8657
8689
|
},
|
|
8658
8690
|
"node_modules/cliui/node_modules/string-width": {
|
|
8659
8691
|
"version": "4.2.3",
|
|
8660
8692
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
8661
8693
|
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
8694
|
+
"dev": true,
|
|
8662
8695
|
"license": "MIT",
|
|
8663
8696
|
"dependencies": {
|
|
8664
8697
|
"emoji-regex": "^8.0.0",
|
|
@@ -8673,6 +8706,7 @@
|
|
|
8673
8706
|
"version": "6.0.1",
|
|
8674
8707
|
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
8675
8708
|
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
8709
|
+
"dev": true,
|
|
8676
8710
|
"license": "MIT",
|
|
8677
8711
|
"dependencies": {
|
|
8678
8712
|
"ansi-regex": "^5.0.1"
|
|
@@ -8724,6 +8758,7 @@
|
|
|
8724
8758
|
"version": "2.0.1",
|
|
8725
8759
|
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
8726
8760
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
8761
|
+
"dev": true,
|
|
8727
8762
|
"license": "MIT",
|
|
8728
8763
|
"dependencies": {
|
|
8729
8764
|
"color-name": "~1.1.4"
|
|
@@ -8736,6 +8771,7 @@
|
|
|
8736
8771
|
"version": "1.1.4",
|
|
8737
8772
|
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
8738
8773
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
8774
|
+
"dev": true,
|
|
8739
8775
|
"license": "MIT"
|
|
8740
8776
|
},
|
|
8741
8777
|
"node_modules/color-string": {
|
|
@@ -9050,6 +9086,7 @@
|
|
|
9050
9086
|
"version": "1.11.20",
|
|
9051
9087
|
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.20.tgz",
|
|
9052
9088
|
"integrity": "sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==",
|
|
9089
|
+
"dev": true,
|
|
9053
9090
|
"license": "MIT"
|
|
9054
9091
|
},
|
|
9055
9092
|
"node_modules/debug": {
|
|
@@ -9584,12 +9621,6 @@
|
|
|
9584
9621
|
"url": "https://github.com/sponsors/ljharb"
|
|
9585
9622
|
}
|
|
9586
9623
|
},
|
|
9587
|
-
"node_modules/es-module-lexer": {
|
|
9588
|
-
"version": "2.1.0",
|
|
9589
|
-
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz",
|
|
9590
|
-
"integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==",
|
|
9591
|
-
"license": "MIT"
|
|
9592
|
-
},
|
|
9593
9624
|
"node_modules/es-object-atoms": {
|
|
9594
9625
|
"version": "1.1.1",
|
|
9595
9626
|
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
@@ -9686,15 +9717,6 @@
|
|
|
9686
9717
|
"url": "https://opencollective.com/unified"
|
|
9687
9718
|
}
|
|
9688
9719
|
},
|
|
9689
|
-
"node_modules/estree-walker": {
|
|
9690
|
-
"version": "3.0.3",
|
|
9691
|
-
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
|
|
9692
|
-
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
|
|
9693
|
-
"license": "MIT",
|
|
9694
|
-
"dependencies": {
|
|
9695
|
-
"@types/estree": "^1.0.0"
|
|
9696
|
-
}
|
|
9697
|
-
},
|
|
9698
9720
|
"node_modules/esutils": {
|
|
9699
9721
|
"version": "2.0.3",
|
|
9700
9722
|
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
|
@@ -9782,19 +9804,10 @@
|
|
|
9782
9804
|
}
|
|
9783
9805
|
},
|
|
9784
9806
|
"node_modules/exif-parser": {
|
|
9785
|
-
"version": "0.1.12",
|
|
9786
|
-
"resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz",
|
|
9787
|
-
"integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==",
|
|
9788
|
-
"dev": true
|
|
9789
|
-
},
|
|
9790
|
-
"node_modules/expect-type": {
|
|
9791
|
-
"version": "1.3.0",
|
|
9792
|
-
"resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz",
|
|
9793
|
-
"integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==",
|
|
9794
|
-
"license": "Apache-2.0",
|
|
9795
|
-
"engines": {
|
|
9796
|
-
"node": ">=12.0.0"
|
|
9797
|
-
}
|
|
9807
|
+
"version": "0.1.12",
|
|
9808
|
+
"resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz",
|
|
9809
|
+
"integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==",
|
|
9810
|
+
"dev": true
|
|
9798
9811
|
},
|
|
9799
9812
|
"node_modules/express": {
|
|
9800
9813
|
"version": "5.2.1",
|
|
@@ -9901,21 +9914,6 @@
|
|
|
9901
9914
|
"dev": true,
|
|
9902
9915
|
"license": "MIT"
|
|
9903
9916
|
},
|
|
9904
|
-
"node_modules/fast-string-truncated-width": {
|
|
9905
|
-
"version": "3.0.3",
|
|
9906
|
-
"resolved": "https://registry.npmjs.org/fast-string-truncated-width/-/fast-string-truncated-width-3.0.3.tgz",
|
|
9907
|
-
"integrity": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==",
|
|
9908
|
-
"license": "MIT"
|
|
9909
|
-
},
|
|
9910
|
-
"node_modules/fast-string-width": {
|
|
9911
|
-
"version": "3.0.2",
|
|
9912
|
-
"resolved": "https://registry.npmjs.org/fast-string-width/-/fast-string-width-3.0.2.tgz",
|
|
9913
|
-
"integrity": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==",
|
|
9914
|
-
"license": "MIT",
|
|
9915
|
-
"dependencies": {
|
|
9916
|
-
"fast-string-truncated-width": "^3.0.2"
|
|
9917
|
-
}
|
|
9918
|
-
},
|
|
9919
9917
|
"node_modules/fast-uri": {
|
|
9920
9918
|
"version": "3.1.2",
|
|
9921
9919
|
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
|
|
@@ -9932,15 +9930,6 @@
|
|
|
9932
9930
|
],
|
|
9933
9931
|
"license": "BSD-3-Clause"
|
|
9934
9932
|
},
|
|
9935
|
-
"node_modules/fast-wrap-ansi": {
|
|
9936
|
-
"version": "0.2.0",
|
|
9937
|
-
"resolved": "https://registry.npmjs.org/fast-wrap-ansi/-/fast-wrap-ansi-0.2.0.tgz",
|
|
9938
|
-
"integrity": "sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==",
|
|
9939
|
-
"license": "MIT",
|
|
9940
|
-
"dependencies": {
|
|
9941
|
-
"fast-string-width": "^3.0.2"
|
|
9942
|
-
}
|
|
9943
|
-
},
|
|
9944
9933
|
"node_modules/fastq": {
|
|
9945
9934
|
"version": "1.20.1",
|
|
9946
9935
|
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
|
|
@@ -10318,6 +10307,7 @@
|
|
|
10318
10307
|
"version": "2.0.5",
|
|
10319
10308
|
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
|
10320
10309
|
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
|
|
10310
|
+
"dev": true,
|
|
10321
10311
|
"license": "ISC",
|
|
10322
10312
|
"engines": {
|
|
10323
10313
|
"node": "6.* || 8.* || >= 10.*"
|
|
@@ -10565,6 +10555,7 @@
|
|
|
10565
10555
|
"version": "2.1.19",
|
|
10566
10556
|
"resolved": "https://registry.npmjs.org/goober/-/goober-2.1.19.tgz",
|
|
10567
10557
|
"integrity": "sha512-U7veizMqxyKlM58+Z5j2ngJBH/r9siDmxpvNxSw0PylF6WQvrASJEZrxh1hidRBJc2jqoBVSyOban5u8m+6Rxg==",
|
|
10558
|
+
"dev": true,
|
|
10568
10559
|
"license": "MIT",
|
|
10569
10560
|
"peerDependencies": {
|
|
10570
10561
|
"csstype": "^3.0.10"
|
|
@@ -11046,15 +11037,6 @@
|
|
|
11046
11037
|
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
11047
11038
|
"license": "ISC"
|
|
11048
11039
|
},
|
|
11049
|
-
"node_modules/graphql": {
|
|
11050
|
-
"version": "16.14.0",
|
|
11051
|
-
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.14.0.tgz",
|
|
11052
|
-
"integrity": "sha512-BBvQ/406p+4CZbTpCbVPSxfzrZrbnuWSP1ELYgyS6B+hNeKzgrdB4JczCa5VZUBQrDa9hUngm0KnexY6pJRN5Q==",
|
|
11053
|
-
"license": "MIT",
|
|
11054
|
-
"engines": {
|
|
11055
|
-
"node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
|
|
11056
|
-
}
|
|
11057
|
-
},
|
|
11058
11040
|
"node_modules/handlebars": {
|
|
11059
11041
|
"version": "4.7.9",
|
|
11060
11042
|
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.9.tgz",
|
|
@@ -11293,16 +11275,6 @@
|
|
|
11293
11275
|
"url": "https://opencollective.com/unified"
|
|
11294
11276
|
}
|
|
11295
11277
|
},
|
|
11296
|
-
"node_modules/headers-polyfill": {
|
|
11297
|
-
"version": "5.0.1",
|
|
11298
|
-
"resolved": "https://registry.npmjs.org/headers-polyfill/-/headers-polyfill-5.0.1.tgz",
|
|
11299
|
-
"integrity": "sha512-1TJ6Fih/b8h5TIcv+1+Hw0PDQWJTKDKzFZzcKOiW1wJza3XoAQlkCuXLbymPYB8+ZQyw8mHvdw560e8zVFIWyA==",
|
|
11300
|
-
"license": "MIT",
|
|
11301
|
-
"dependencies": {
|
|
11302
|
-
"@types/set-cookie-parser": "^2.4.10",
|
|
11303
|
-
"set-cookie-parser": "^3.0.1"
|
|
11304
|
-
}
|
|
11305
|
-
},
|
|
11306
11278
|
"node_modules/hono": {
|
|
11307
11279
|
"version": "4.12.18",
|
|
11308
11280
|
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.18.tgz",
|
|
@@ -11677,18 +11649,6 @@
|
|
|
11677
11649
|
"url": "https://github.com/sponsors/ljharb"
|
|
11678
11650
|
}
|
|
11679
11651
|
},
|
|
11680
|
-
"node_modules/is-binary-path": {
|
|
11681
|
-
"version": "2.1.0",
|
|
11682
|
-
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
|
11683
|
-
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
|
11684
|
-
"license": "MIT",
|
|
11685
|
-
"dependencies": {
|
|
11686
|
-
"binary-extensions": "^2.0.0"
|
|
11687
|
-
},
|
|
11688
|
-
"engines": {
|
|
11689
|
-
"node": ">=8"
|
|
11690
|
-
}
|
|
11691
|
-
},
|
|
11692
11652
|
"node_modules/is-boolean-object": {
|
|
11693
11653
|
"version": "1.2.2",
|
|
11694
11654
|
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
|
|
@@ -11824,6 +11784,7 @@
|
|
|
11824
11784
|
"version": "3.0.0",
|
|
11825
11785
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
11826
11786
|
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
11787
|
+
"dev": true,
|
|
11827
11788
|
"license": "MIT",
|
|
11828
11789
|
"engines": {
|
|
11829
11790
|
"node": ">=8"
|
|
@@ -11956,12 +11917,6 @@
|
|
|
11956
11917
|
"url": "https://github.com/sponsors/ljharb"
|
|
11957
11918
|
}
|
|
11958
11919
|
},
|
|
11959
|
-
"node_modules/is-node-process": {
|
|
11960
|
-
"version": "1.2.0",
|
|
11961
|
-
"resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz",
|
|
11962
|
-
"integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==",
|
|
11963
|
-
"license": "MIT"
|
|
11964
|
-
},
|
|
11965
11920
|
"node_modules/is-number": {
|
|
11966
11921
|
"version": "7.0.0",
|
|
11967
11922
|
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
@@ -12817,9 +12772,9 @@
|
|
|
12817
12772
|
}
|
|
12818
12773
|
},
|
|
12819
12774
|
"node_modules/lucide-react": {
|
|
12820
|
-
"version": "1.
|
|
12821
|
-
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.
|
|
12822
|
-
"integrity": "sha512-
|
|
12775
|
+
"version": "1.21.0",
|
|
12776
|
+
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.21.0.tgz",
|
|
12777
|
+
"integrity": "sha512-reEZMXq8Qdd5jg5XYkQ5TR1fB/GiQ7ih4vcrthYDtgjSDwh0i6/YLiGjsWsIwgN49gpAnd4J2elSNzncMEEUUQ==",
|
|
12823
12778
|
"license": "ISC",
|
|
12824
12779
|
"peerDependencies": {
|
|
12825
12780
|
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
@@ -12858,6 +12813,7 @@
|
|
|
12858
12813
|
"version": "8.3.0",
|
|
12859
12814
|
"resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-8.3.0.tgz",
|
|
12860
12815
|
"integrity": "sha512-8Py1GbZi5zsclYSFcPAH4H5xfTbeD0bOREA7qP/t8bW4MbOSlPl8sbqHOedEV7O+Bxyvxm6xs/v6BXJGe+JDNA==",
|
|
12816
|
+
"dev": true,
|
|
12861
12817
|
"license": "MIT",
|
|
12862
12818
|
"dependencies": {
|
|
12863
12819
|
"@babel/runtime": "^7.23.8",
|
|
@@ -13928,72 +13884,6 @@
|
|
|
13928
13884
|
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
13929
13885
|
"license": "MIT"
|
|
13930
13886
|
},
|
|
13931
|
-
"node_modules/msw": {
|
|
13932
|
-
"version": "2.14.5",
|
|
13933
|
-
"resolved": "https://registry.npmjs.org/msw/-/msw-2.14.5.tgz",
|
|
13934
|
-
"integrity": "sha512-X6G05oX4x0e+CNI55KMdhMmwHCBKf2iwazGr+iwsdoJ94JA1ED7wSXb6V+lLPdqFkmIlPiGYvayqnaNcOzobDA==",
|
|
13935
|
-
"hasInstallScript": true,
|
|
13936
|
-
"license": "MIT",
|
|
13937
|
-
"dependencies": {
|
|
13938
|
-
"@inquirer/confirm": "^6.0.11",
|
|
13939
|
-
"@mswjs/interceptors": "^0.41.3",
|
|
13940
|
-
"@open-draft/deferred-promise": "^3.0.0",
|
|
13941
|
-
"@types/statuses": "^2.0.6",
|
|
13942
|
-
"cookie": "^1.1.1",
|
|
13943
|
-
"graphql": "^16.13.2",
|
|
13944
|
-
"headers-polyfill": "^5.0.1",
|
|
13945
|
-
"is-node-process": "^1.2.0",
|
|
13946
|
-
"outvariant": "^1.4.3",
|
|
13947
|
-
"path-to-regexp": "^6.3.0",
|
|
13948
|
-
"picocolors": "^1.1.1",
|
|
13949
|
-
"rettime": "^0.11.11",
|
|
13950
|
-
"statuses": "^2.0.2",
|
|
13951
|
-
"strict-event-emitter": "^0.5.1",
|
|
13952
|
-
"tough-cookie": "^6.0.1",
|
|
13953
|
-
"type-fest": "^5.5.0",
|
|
13954
|
-
"until-async": "^3.0.2",
|
|
13955
|
-
"yargs": "^17.7.2"
|
|
13956
|
-
},
|
|
13957
|
-
"bin": {
|
|
13958
|
-
"msw": "cli/index.js"
|
|
13959
|
-
},
|
|
13960
|
-
"engines": {
|
|
13961
|
-
"node": ">=18"
|
|
13962
|
-
},
|
|
13963
|
-
"funding": {
|
|
13964
|
-
"url": "https://github.com/sponsors/mswjs"
|
|
13965
|
-
},
|
|
13966
|
-
"peerDependencies": {
|
|
13967
|
-
"typescript": ">= 4.8.x"
|
|
13968
|
-
},
|
|
13969
|
-
"peerDependenciesMeta": {
|
|
13970
|
-
"typescript": {
|
|
13971
|
-
"optional": true
|
|
13972
|
-
}
|
|
13973
|
-
}
|
|
13974
|
-
},
|
|
13975
|
-
"node_modules/msw/node_modules/cookie": {
|
|
13976
|
-
"version": "1.1.1",
|
|
13977
|
-
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
|
|
13978
|
-
"integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
|
|
13979
|
-
"license": "MIT",
|
|
13980
|
-
"engines": {
|
|
13981
|
-
"node": ">=18"
|
|
13982
|
-
},
|
|
13983
|
-
"funding": {
|
|
13984
|
-
"type": "opencollective",
|
|
13985
|
-
"url": "https://opencollective.com/express"
|
|
13986
|
-
}
|
|
13987
|
-
},
|
|
13988
|
-
"node_modules/mute-stream": {
|
|
13989
|
-
"version": "3.0.0",
|
|
13990
|
-
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-3.0.0.tgz",
|
|
13991
|
-
"integrity": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==",
|
|
13992
|
-
"license": "ISC",
|
|
13993
|
-
"engines": {
|
|
13994
|
-
"node": "^20.17.0 || >=22.9.0"
|
|
13995
|
-
}
|
|
13996
|
-
},
|
|
13997
13887
|
"node_modules/nan": {
|
|
13998
13888
|
"version": "2.26.2",
|
|
13999
13889
|
"resolved": "https://registry.npmjs.org/nan/-/nan-2.26.2.tgz",
|
|
@@ -14090,15 +13980,6 @@
|
|
|
14090
13980
|
"integrity": "sha512-3qT/88Y3FbH/Kx4szpQQ4HzUbVrHPKTLVpVocKiLfoYvw9XSGOX2FmD2d6DrXbVYyAQTF2HeF6My8jmzx7/CRw==",
|
|
14091
13981
|
"license": "MIT"
|
|
14092
13982
|
},
|
|
14093
|
-
"node_modules/normalize-path": {
|
|
14094
|
-
"version": "3.0.0",
|
|
14095
|
-
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
14096
|
-
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
14097
|
-
"license": "MIT",
|
|
14098
|
-
"engines": {
|
|
14099
|
-
"node": ">=0.10.0"
|
|
14100
|
-
}
|
|
14101
|
-
},
|
|
14102
13983
|
"node_modules/npm-run-path": {
|
|
14103
13984
|
"version": "6.0.0",
|
|
14104
13985
|
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz",
|
|
@@ -14227,16 +14108,6 @@
|
|
|
14227
14108
|
"url": "https://github.com/sponsors/ljharb"
|
|
14228
14109
|
}
|
|
14229
14110
|
},
|
|
14230
|
-
"node_modules/obug": {
|
|
14231
|
-
"version": "2.1.1",
|
|
14232
|
-
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz",
|
|
14233
|
-
"integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==",
|
|
14234
|
-
"funding": [
|
|
14235
|
-
"https://github.com/sponsors/sxzz",
|
|
14236
|
-
"https://opencollective.com/debug"
|
|
14237
|
-
],
|
|
14238
|
-
"license": "MIT"
|
|
14239
|
-
},
|
|
14240
14111
|
"node_modules/omggif": {
|
|
14241
14112
|
"version": "1.0.10",
|
|
14242
14113
|
"resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz",
|
|
@@ -14351,12 +14222,6 @@
|
|
|
14351
14222
|
"otf2svg": "lib/index.js"
|
|
14352
14223
|
}
|
|
14353
14224
|
},
|
|
14354
|
-
"node_modules/outvariant": {
|
|
14355
|
-
"version": "1.4.3",
|
|
14356
|
-
"resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz",
|
|
14357
|
-
"integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==",
|
|
14358
|
-
"license": "MIT"
|
|
14359
|
-
},
|
|
14360
14225
|
"node_modules/own-keys": {
|
|
14361
14226
|
"version": "1.0.1",
|
|
14362
14227
|
"resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
|
|
@@ -14375,6 +14240,54 @@
|
|
|
14375
14240
|
"url": "https://github.com/sponsors/ljharb"
|
|
14376
14241
|
}
|
|
14377
14242
|
},
|
|
14243
|
+
"node_modules/oxc-parser": {
|
|
14244
|
+
"version": "0.120.0",
|
|
14245
|
+
"resolved": "https://registry.npmjs.org/oxc-parser/-/oxc-parser-0.120.0.tgz",
|
|
14246
|
+
"integrity": "sha512-WyPWZlcIm+Fkte63FGfgFB8mAAk33aH9h5N9lphXVOHSXEBFFsmYdOBedVKly363aWABjZdaj/m9lBfEY4wt+w==",
|
|
14247
|
+
"dev": true,
|
|
14248
|
+
"license": "MIT",
|
|
14249
|
+
"dependencies": {
|
|
14250
|
+
"@oxc-project/types": "^0.120.0"
|
|
14251
|
+
},
|
|
14252
|
+
"engines": {
|
|
14253
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
14254
|
+
},
|
|
14255
|
+
"funding": {
|
|
14256
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
14257
|
+
},
|
|
14258
|
+
"optionalDependencies": {
|
|
14259
|
+
"@oxc-parser/binding-android-arm-eabi": "0.120.0",
|
|
14260
|
+
"@oxc-parser/binding-android-arm64": "0.120.0",
|
|
14261
|
+
"@oxc-parser/binding-darwin-arm64": "0.120.0",
|
|
14262
|
+
"@oxc-parser/binding-darwin-x64": "0.120.0",
|
|
14263
|
+
"@oxc-parser/binding-freebsd-x64": "0.120.0",
|
|
14264
|
+
"@oxc-parser/binding-linux-arm-gnueabihf": "0.120.0",
|
|
14265
|
+
"@oxc-parser/binding-linux-arm-musleabihf": "0.120.0",
|
|
14266
|
+
"@oxc-parser/binding-linux-arm64-gnu": "0.120.0",
|
|
14267
|
+
"@oxc-parser/binding-linux-arm64-musl": "0.120.0",
|
|
14268
|
+
"@oxc-parser/binding-linux-ppc64-gnu": "0.120.0",
|
|
14269
|
+
"@oxc-parser/binding-linux-riscv64-gnu": "0.120.0",
|
|
14270
|
+
"@oxc-parser/binding-linux-riscv64-musl": "0.120.0",
|
|
14271
|
+
"@oxc-parser/binding-linux-s390x-gnu": "0.120.0",
|
|
14272
|
+
"@oxc-parser/binding-linux-x64-gnu": "0.120.0",
|
|
14273
|
+
"@oxc-parser/binding-linux-x64-musl": "0.120.0",
|
|
14274
|
+
"@oxc-parser/binding-openharmony-arm64": "0.120.0",
|
|
14275
|
+
"@oxc-parser/binding-wasm32-wasi": "0.120.0",
|
|
14276
|
+
"@oxc-parser/binding-win32-arm64-msvc": "0.120.0",
|
|
14277
|
+
"@oxc-parser/binding-win32-ia32-msvc": "0.120.0",
|
|
14278
|
+
"@oxc-parser/binding-win32-x64-msvc": "0.120.0"
|
|
14279
|
+
}
|
|
14280
|
+
},
|
|
14281
|
+
"node_modules/oxc-parser/node_modules/@oxc-project/types": {
|
|
14282
|
+
"version": "0.120.0",
|
|
14283
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.120.0.tgz",
|
|
14284
|
+
"integrity": "sha512-k1YNu55DuvAip/MGE1FTsIuU3FUCn6v/ujG9V7Nq5Df/kX2CWb13hhwD0lmJGMGqE+bE1MXvv9SZVnMzEXlWcg==",
|
|
14285
|
+
"dev": true,
|
|
14286
|
+
"license": "MIT",
|
|
14287
|
+
"funding": {
|
|
14288
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
14289
|
+
}
|
|
14290
|
+
},
|
|
14378
14291
|
"node_modules/p-limit": {
|
|
14379
14292
|
"version": "4.0.0",
|
|
14380
14293
|
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz",
|
|
@@ -14514,9 +14427,9 @@
|
|
|
14514
14427
|
}
|
|
14515
14428
|
},
|
|
14516
14429
|
"node_modules/parse-svg-path": {
|
|
14517
|
-
"version": "0.
|
|
14518
|
-
"resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.
|
|
14519
|
-
"integrity": "sha512-
|
|
14430
|
+
"version": "0.2.0",
|
|
14431
|
+
"resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.2.0.tgz",
|
|
14432
|
+
"integrity": "sha512-Tf7FFIrguPKQwzD4pWnYkR2VOv3raoHeKED80Bm+BYHI3KxC8KsgsGC5+fSMzAGDA6UEk4bHvmi+RsjmL3khpg==",
|
|
14520
14433
|
"license": "MIT",
|
|
14521
14434
|
"peer": true
|
|
14522
14435
|
},
|
|
@@ -14600,16 +14513,11 @@
|
|
|
14600
14513
|
"node": "20 || >=22"
|
|
14601
14514
|
}
|
|
14602
14515
|
},
|
|
14603
|
-
"node_modules/path-to-regexp": {
|
|
14604
|
-
"version": "6.3.0",
|
|
14605
|
-
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz",
|
|
14606
|
-
"integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==",
|
|
14607
|
-
"license": "MIT"
|
|
14608
|
-
},
|
|
14609
14516
|
"node_modules/pathe": {
|
|
14610
14517
|
"version": "2.0.3",
|
|
14611
14518
|
"resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
|
|
14612
14519
|
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
|
|
14520
|
+
"dev": true,
|
|
14613
14521
|
"license": "MIT"
|
|
14614
14522
|
},
|
|
14615
14523
|
"node_modules/picocolors": {
|
|
@@ -14654,9 +14562,9 @@
|
|
|
14654
14562
|
}
|
|
14655
14563
|
},
|
|
14656
14564
|
"node_modules/pixi.js": {
|
|
14657
|
-
"version": "8.
|
|
14658
|
-
"resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-8.
|
|
14659
|
-
"integrity": "sha512-
|
|
14565
|
+
"version": "8.19.0",
|
|
14566
|
+
"resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-8.19.0.tgz",
|
|
14567
|
+
"integrity": "sha512-pq1O6emA/GFjjeF+8d3Pb5t7knD8FsnfWGqQcRjYjsqFZ7QdzG1XgjLDUu0DFJRbafjV5+g8iNLFBx0b9649lg==",
|
|
14660
14568
|
"license": "MIT",
|
|
14661
14569
|
"peer": true,
|
|
14662
14570
|
"workspaces": [
|
|
@@ -14667,12 +14575,12 @@
|
|
|
14667
14575
|
"@pixi/colord": "^2.9.6",
|
|
14668
14576
|
"@types/earcut": "^3.0.0",
|
|
14669
14577
|
"@webgpu/types": "^0.1.69",
|
|
14670
|
-
"@xmldom/xmldom": "^0.8.
|
|
14578
|
+
"@xmldom/xmldom": "^0.8.13",
|
|
14671
14579
|
"earcut": "^3.0.2",
|
|
14672
14580
|
"eventemitter3": "^5.0.1",
|
|
14673
14581
|
"gifuct-js": "^2.1.2",
|
|
14674
14582
|
"ismobilejs": "^1.1.1",
|
|
14675
|
-
"parse-svg-path": "^0.
|
|
14583
|
+
"parse-svg-path": "^0.2.0",
|
|
14676
14584
|
"tiny-lru": "^11.4.7"
|
|
14677
14585
|
},
|
|
14678
14586
|
"funding": {
|
|
@@ -14774,9 +14682,10 @@
|
|
|
14774
14682
|
}
|
|
14775
14683
|
},
|
|
14776
14684
|
"node_modules/prettier": {
|
|
14777
|
-
"version": "3.8.
|
|
14778
|
-
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.
|
|
14779
|
-
"integrity": "sha512-
|
|
14685
|
+
"version": "3.8.4",
|
|
14686
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.4.tgz",
|
|
14687
|
+
"integrity": "sha512-N2MylSdi48+5N/6S5j+maeHbUSIzzZ5uOcX5Hm4QpV8Dkb1HFjfAKTKX6yNPJQD9AhcT3ifHNB66tWTTJDi11Q==",
|
|
14688
|
+
"dev": true,
|
|
14780
14689
|
"license": "MIT",
|
|
14781
14690
|
"bin": {
|
|
14782
14691
|
"prettier": "bin/prettier.cjs"
|
|
@@ -15370,12 +15279,14 @@
|
|
|
15370
15279
|
"version": "0.5.0",
|
|
15371
15280
|
"resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.5.0.tgz",
|
|
15372
15281
|
"integrity": "sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==",
|
|
15282
|
+
"dev": true,
|
|
15373
15283
|
"license": "MIT"
|
|
15374
15284
|
},
|
|
15375
15285
|
"node_modules/require-directory": {
|
|
15376
15286
|
"version": "2.1.1",
|
|
15377
15287
|
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
|
|
15378
15288
|
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
|
|
15289
|
+
"dev": true,
|
|
15379
15290
|
"license": "MIT",
|
|
15380
15291
|
"engines": {
|
|
15381
15292
|
"node": ">=0.10.0"
|
|
@@ -15460,12 +15371,6 @@
|
|
|
15460
15371
|
"node": ">= 4"
|
|
15461
15372
|
}
|
|
15462
15373
|
},
|
|
15463
|
-
"node_modules/rettime": {
|
|
15464
|
-
"version": "0.11.11",
|
|
15465
|
-
"resolved": "https://registry.npmjs.org/rettime/-/rettime-0.11.11.tgz",
|
|
15466
|
-
"integrity": "sha512-ILJRqVWBCTlg9r42fFgwVZx1gnFAcQF8mRoMkbgQfIrjEDf9nbBFDFx00oloOa+Q869FUtaYDXZvEfnecQSCoQ==",
|
|
15467
|
-
"license": "MIT"
|
|
15468
|
-
},
|
|
15469
15374
|
"node_modules/reusify": {
|
|
15470
15375
|
"version": "1.1.0",
|
|
15471
15376
|
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
|
|
@@ -15784,12 +15689,6 @@
|
|
|
15784
15689
|
"url": "https://opencollective.com/express"
|
|
15785
15690
|
}
|
|
15786
15691
|
},
|
|
15787
|
-
"node_modules/set-cookie-parser": {
|
|
15788
|
-
"version": "3.1.0",
|
|
15789
|
-
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-3.1.0.tgz",
|
|
15790
|
-
"integrity": "sha512-kjnC1DXBHcxaOaOXBHBeRtltsDG2nUiUni+jP92M9gYdW12rsmx92UsfpH7o5tDRs7I1ZZPSQJQGv3UaRfCiuw==",
|
|
15791
|
-
"license": "MIT"
|
|
15792
|
-
},
|
|
15793
15692
|
"node_modules/set-function-length": {
|
|
15794
15693
|
"version": "1.2.2",
|
|
15795
15694
|
"resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
|
|
@@ -15846,9 +15745,9 @@
|
|
|
15846
15745
|
"license": "ISC"
|
|
15847
15746
|
},
|
|
15848
15747
|
"node_modules/shadcn": {
|
|
15849
|
-
"version": "4.
|
|
15850
|
-
"resolved": "https://registry.npmjs.org/shadcn/-/shadcn-4.
|
|
15851
|
-
"integrity": "sha512-
|
|
15748
|
+
"version": "4.11.0",
|
|
15749
|
+
"resolved": "https://registry.npmjs.org/shadcn/-/shadcn-4.11.0.tgz",
|
|
15750
|
+
"integrity": "sha512-UV0cchFea9hO7poV1CuEP0wvmYjpAqcxCKdy23bndl2Du2ARtDs8A4xdzfhUjDBeOW1nNpJ6lXmsEpsply2SfQ==",
|
|
15852
15751
|
"license": "MIT",
|
|
15853
15752
|
"dependencies": {
|
|
15854
15753
|
"@babel/core": "^7.28.0",
|
|
@@ -15870,7 +15769,6 @@
|
|
|
15870
15769
|
"fuzzysort": "^3.1.0",
|
|
15871
15770
|
"https-proxy-agent": "^7.0.6",
|
|
15872
15771
|
"kleur": "^4.1.5",
|
|
15873
|
-
"msw": "^2.10.4",
|
|
15874
15772
|
"node-fetch": "^3.3.2",
|
|
15875
15773
|
"open": "^11.0.0",
|
|
15876
15774
|
"ora": "^8.2.0",
|
|
@@ -16085,12 +15983,6 @@
|
|
|
16085
15983
|
"url": "https://github.com/sponsors/ljharb"
|
|
16086
15984
|
}
|
|
16087
15985
|
},
|
|
16088
|
-
"node_modules/siginfo": {
|
|
16089
|
-
"version": "2.0.0",
|
|
16090
|
-
"resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
|
|
16091
|
-
"integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==",
|
|
16092
|
-
"license": "ISC"
|
|
16093
|
-
},
|
|
16094
15986
|
"node_modules/signal-exit": {
|
|
16095
15987
|
"version": "4.1.0",
|
|
16096
15988
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
@@ -16150,6 +16042,7 @@
|
|
|
16150
16042
|
"version": "1.9.12",
|
|
16151
16043
|
"resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.9.12.tgz",
|
|
16152
16044
|
"integrity": "sha512-QzKaSJq2/iDrWR1As6MHZQ8fQkdOBf8GReYb7L5iKwMGceg7HxDcaOHk0at66tNgn9U2U7dXo8ZZpLIAmGMzgw==",
|
|
16045
|
+
"dev": true,
|
|
16153
16046
|
"license": "MIT",
|
|
16154
16047
|
"dependencies": {
|
|
16155
16048
|
"csstype": "^3.1.0",
|
|
@@ -16206,12 +16099,6 @@
|
|
|
16206
16099
|
"url": "https://github.com/sponsors/wooorm"
|
|
16207
16100
|
}
|
|
16208
16101
|
},
|
|
16209
|
-
"node_modules/stackback": {
|
|
16210
|
-
"version": "0.0.2",
|
|
16211
|
-
"resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
|
|
16212
|
-
"integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==",
|
|
16213
|
-
"license": "MIT"
|
|
16214
|
-
},
|
|
16215
16102
|
"node_modules/standardized-audio-context": {
|
|
16216
16103
|
"version": "25.3.77",
|
|
16217
16104
|
"resolved": "https://registry.npmjs.org/standardized-audio-context/-/standardized-audio-context-25.3.77.tgz",
|
|
@@ -16233,12 +16120,6 @@
|
|
|
16233
16120
|
"node": ">= 0.8"
|
|
16234
16121
|
}
|
|
16235
16122
|
},
|
|
16236
|
-
"node_modules/std-env": {
|
|
16237
|
-
"version": "4.1.0",
|
|
16238
|
-
"resolved": "https://registry.npmjs.org/std-env/-/std-env-4.1.0.tgz",
|
|
16239
|
-
"integrity": "sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==",
|
|
16240
|
-
"license": "MIT"
|
|
16241
|
-
},
|
|
16242
16123
|
"node_modules/stdin-discarder": {
|
|
16243
16124
|
"version": "0.2.2",
|
|
16244
16125
|
"resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
|
|
@@ -16265,12 +16146,6 @@
|
|
|
16265
16146
|
"node": ">= 0.4"
|
|
16266
16147
|
}
|
|
16267
16148
|
},
|
|
16268
|
-
"node_modules/strict-event-emitter": {
|
|
16269
|
-
"version": "0.5.1",
|
|
16270
|
-
"resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz",
|
|
16271
|
-
"integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==",
|
|
16272
|
-
"license": "MIT"
|
|
16273
|
-
},
|
|
16274
16149
|
"node_modules/string-width": {
|
|
16275
16150
|
"version": "7.2.0",
|
|
16276
16151
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
|
|
@@ -16517,18 +16392,6 @@
|
|
|
16517
16392
|
"url": "https://github.com/fontello/svg2ttf?sponsor=1"
|
|
16518
16393
|
}
|
|
16519
16394
|
},
|
|
16520
|
-
"node_modules/tagged-tag": {
|
|
16521
|
-
"version": "1.0.0",
|
|
16522
|
-
"resolved": "https://registry.npmjs.org/tagged-tag/-/tagged-tag-1.0.0.tgz",
|
|
16523
|
-
"integrity": "sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==",
|
|
16524
|
-
"license": "MIT",
|
|
16525
|
-
"engines": {
|
|
16526
|
-
"node": ">=20"
|
|
16527
|
-
},
|
|
16528
|
-
"funding": {
|
|
16529
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
16530
|
-
}
|
|
16531
|
-
},
|
|
16532
16395
|
"node_modules/tailwind-animations": {
|
|
16533
16396
|
"version": "1.0.1",
|
|
16534
16397
|
"resolved": "https://registry.npmjs.org/tailwind-animations/-/tailwind-animations-1.0.1.tgz",
|
|
@@ -16684,12 +16547,6 @@
|
|
|
16684
16547
|
"node": ">=12"
|
|
16685
16548
|
}
|
|
16686
16549
|
},
|
|
16687
|
-
"node_modules/tinybench": {
|
|
16688
|
-
"version": "2.9.0",
|
|
16689
|
-
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
|
|
16690
|
-
"integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==",
|
|
16691
|
-
"license": "MIT"
|
|
16692
|
-
},
|
|
16693
16550
|
"node_modules/tinycolor2": {
|
|
16694
16551
|
"version": "1.6.0",
|
|
16695
16552
|
"resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz",
|
|
@@ -16697,15 +16554,6 @@
|
|
|
16697
16554
|
"dev": true,
|
|
16698
16555
|
"license": "MIT"
|
|
16699
16556
|
},
|
|
16700
|
-
"node_modules/tinyexec": {
|
|
16701
|
-
"version": "1.1.2",
|
|
16702
|
-
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.1.2.tgz",
|
|
16703
|
-
"integrity": "sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==",
|
|
16704
|
-
"license": "MIT",
|
|
16705
|
-
"engines": {
|
|
16706
|
-
"node": ">=18"
|
|
16707
|
-
}
|
|
16708
|
-
},
|
|
16709
16557
|
"node_modules/tinyglobby": {
|
|
16710
16558
|
"version": "0.2.17",
|
|
16711
16559
|
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
@@ -16722,33 +16570,6 @@
|
|
|
16722
16570
|
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
16723
16571
|
}
|
|
16724
16572
|
},
|
|
16725
|
-
"node_modules/tinyrainbow": {
|
|
16726
|
-
"version": "3.1.0",
|
|
16727
|
-
"resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz",
|
|
16728
|
-
"integrity": "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==",
|
|
16729
|
-
"license": "MIT",
|
|
16730
|
-
"engines": {
|
|
16731
|
-
"node": ">=14.0.0"
|
|
16732
|
-
}
|
|
16733
|
-
},
|
|
16734
|
-
"node_modules/tldts": {
|
|
16735
|
-
"version": "7.0.30",
|
|
16736
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.30.tgz",
|
|
16737
|
-
"integrity": "sha512-ELrFxuqsDdHUwoh0XxDbxuLD3Wnz49Z57IFvTtvWy1hJdcMZjXLIuonjilCiWHlT2GbE4Wlv1wKVTzDFnXH1aw==",
|
|
16738
|
-
"license": "MIT",
|
|
16739
|
-
"dependencies": {
|
|
16740
|
-
"tldts-core": "^7.0.30"
|
|
16741
|
-
},
|
|
16742
|
-
"bin": {
|
|
16743
|
-
"tldts": "bin/cli.js"
|
|
16744
|
-
}
|
|
16745
|
-
},
|
|
16746
|
-
"node_modules/tldts-core": {
|
|
16747
|
-
"version": "7.0.30",
|
|
16748
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.30.tgz",
|
|
16749
|
-
"integrity": "sha512-uiHN8PIB1VmWyS98eZYja4xzlYqeFZVjb4OuYlJQnZAuJhMw4PbKQOKgHKhBdJR3FE/t5mUQ1Kd80++B+qhD1Q==",
|
|
16750
|
-
"license": "MIT"
|
|
16751
|
-
},
|
|
16752
16573
|
"node_modules/to-data-view": {
|
|
16753
16574
|
"version": "1.1.0",
|
|
16754
16575
|
"resolved": "https://registry.npmjs.org/to-data-view/-/to-data-view-1.1.0.tgz",
|
|
@@ -16807,18 +16628,6 @@
|
|
|
16807
16628
|
"tslib": "^2.3.1"
|
|
16808
16629
|
}
|
|
16809
16630
|
},
|
|
16810
|
-
"node_modules/tough-cookie": {
|
|
16811
|
-
"version": "6.0.1",
|
|
16812
|
-
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.1.tgz",
|
|
16813
|
-
"integrity": "sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==",
|
|
16814
|
-
"license": "BSD-3-Clause",
|
|
16815
|
-
"dependencies": {
|
|
16816
|
-
"tldts": "^7.0.5"
|
|
16817
|
-
},
|
|
16818
|
-
"engines": {
|
|
16819
|
-
"node": ">=16"
|
|
16820
|
-
}
|
|
16821
|
-
},
|
|
16822
16631
|
"node_modules/tr46": {
|
|
16823
16632
|
"version": "1.0.1",
|
|
16824
16633
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz",
|
|
@@ -16888,21 +16697,6 @@
|
|
|
16888
16697
|
"url": "https://github.com/sponsors/Wombosvideo"
|
|
16889
16698
|
}
|
|
16890
16699
|
},
|
|
16891
|
-
"node_modules/type-fest": {
|
|
16892
|
-
"version": "5.6.0",
|
|
16893
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-5.6.0.tgz",
|
|
16894
|
-
"integrity": "sha512-8ZiHFm91orbSAe2PSAiSVBVko18pbhbiB3U9GglSzF/zCGkR+rxpHx6sEMCUm4kxY4LjDIUGgCfUMtwfZfjfUA==",
|
|
16895
|
-
"license": "(MIT OR CC0-1.0)",
|
|
16896
|
-
"dependencies": {
|
|
16897
|
-
"tagged-tag": "^1.0.0"
|
|
16898
|
-
},
|
|
16899
|
-
"engines": {
|
|
16900
|
-
"node": ">=20"
|
|
16901
|
-
},
|
|
16902
|
-
"funding": {
|
|
16903
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
16904
|
-
}
|
|
16905
|
-
},
|
|
16906
16700
|
"node_modules/type-is": {
|
|
16907
16701
|
"version": "2.0.1",
|
|
16908
16702
|
"resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
|
|
@@ -17090,6 +16884,7 @@
|
|
|
17090
16884
|
"version": "7.24.6",
|
|
17091
16885
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
|
|
17092
16886
|
"integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
|
|
16887
|
+
"devOptional": true,
|
|
17093
16888
|
"license": "MIT"
|
|
17094
16889
|
},
|
|
17095
16890
|
"node_modules/unicode-canonical-property-names-ecmascript": {
|
|
@@ -17299,6 +17094,7 @@
|
|
|
17299
17094
|
"version": "3.0.0",
|
|
17300
17095
|
"resolved": "https://registry.npmjs.org/unplugin/-/unplugin-3.0.0.tgz",
|
|
17301
17096
|
"integrity": "sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==",
|
|
17097
|
+
"dev": true,
|
|
17302
17098
|
"license": "MIT",
|
|
17303
17099
|
"dependencies": {
|
|
17304
17100
|
"@jridgewell/remapping": "^2.3.5",
|
|
@@ -17309,15 +17105,6 @@
|
|
|
17309
17105
|
"node": "^20.19.0 || >=22.12.0"
|
|
17310
17106
|
}
|
|
17311
17107
|
},
|
|
17312
|
-
"node_modules/until-async": {
|
|
17313
|
-
"version": "3.0.2",
|
|
17314
|
-
"resolved": "https://registry.npmjs.org/until-async/-/until-async-3.0.2.tgz",
|
|
17315
|
-
"integrity": "sha512-IiSk4HlzAMqTUseHHe3VhIGyuFmN90zMTpD3Z3y8jeQbzLIq500MVM7Jq2vUAnTKAFPJrqwkzr6PoTcPhGcOiw==",
|
|
17316
|
-
"license": "MIT",
|
|
17317
|
-
"funding": {
|
|
17318
|
-
"url": "https://github.com/sponsors/kettanaito"
|
|
17319
|
-
}
|
|
17320
|
-
},
|
|
17321
17108
|
"node_modules/upath": {
|
|
17322
17109
|
"version": "2.0.1",
|
|
17323
17110
|
"resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz",
|
|
@@ -17701,95 +17488,6 @@
|
|
|
17701
17488
|
}
|
|
17702
17489
|
}
|
|
17703
17490
|
},
|
|
17704
|
-
"node_modules/vitest": {
|
|
17705
|
-
"version": "4.1.5",
|
|
17706
|
-
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.5.tgz",
|
|
17707
|
-
"integrity": "sha512-9Xx1v3/ih3m9hN+SbfkUyy0JAs72ap3r7joc87XL6jwF0jGg6mFBvQ1SrwaX+h8BlkX6Hz9shdd1uo6AF+ZGpg==",
|
|
17708
|
-
"license": "MIT",
|
|
17709
|
-
"dependencies": {
|
|
17710
|
-
"@vitest/expect": "4.1.5",
|
|
17711
|
-
"@vitest/mocker": "4.1.5",
|
|
17712
|
-
"@vitest/pretty-format": "4.1.5",
|
|
17713
|
-
"@vitest/runner": "4.1.5",
|
|
17714
|
-
"@vitest/snapshot": "4.1.5",
|
|
17715
|
-
"@vitest/spy": "4.1.5",
|
|
17716
|
-
"@vitest/utils": "4.1.5",
|
|
17717
|
-
"es-module-lexer": "^2.0.0",
|
|
17718
|
-
"expect-type": "^1.3.0",
|
|
17719
|
-
"magic-string": "^0.30.21",
|
|
17720
|
-
"obug": "^2.1.1",
|
|
17721
|
-
"pathe": "^2.0.3",
|
|
17722
|
-
"picomatch": "^4.0.3",
|
|
17723
|
-
"std-env": "^4.0.0-rc.1",
|
|
17724
|
-
"tinybench": "^2.9.0",
|
|
17725
|
-
"tinyexec": "^1.0.2",
|
|
17726
|
-
"tinyglobby": "^0.2.15",
|
|
17727
|
-
"tinyrainbow": "^3.1.0",
|
|
17728
|
-
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0",
|
|
17729
|
-
"why-is-node-running": "^2.3.0"
|
|
17730
|
-
},
|
|
17731
|
-
"bin": {
|
|
17732
|
-
"vitest": "vitest.mjs"
|
|
17733
|
-
},
|
|
17734
|
-
"engines": {
|
|
17735
|
-
"node": "^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
17736
|
-
},
|
|
17737
|
-
"funding": {
|
|
17738
|
-
"url": "https://opencollective.com/vitest"
|
|
17739
|
-
},
|
|
17740
|
-
"peerDependencies": {
|
|
17741
|
-
"@edge-runtime/vm": "*",
|
|
17742
|
-
"@opentelemetry/api": "^1.9.0",
|
|
17743
|
-
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
|
|
17744
|
-
"@vitest/browser-playwright": "4.1.5",
|
|
17745
|
-
"@vitest/browser-preview": "4.1.5",
|
|
17746
|
-
"@vitest/browser-webdriverio": "4.1.5",
|
|
17747
|
-
"@vitest/coverage-istanbul": "4.1.5",
|
|
17748
|
-
"@vitest/coverage-v8": "4.1.5",
|
|
17749
|
-
"@vitest/ui": "4.1.5",
|
|
17750
|
-
"happy-dom": "*",
|
|
17751
|
-
"jsdom": "*",
|
|
17752
|
-
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
17753
|
-
},
|
|
17754
|
-
"peerDependenciesMeta": {
|
|
17755
|
-
"@edge-runtime/vm": {
|
|
17756
|
-
"optional": true
|
|
17757
|
-
},
|
|
17758
|
-
"@opentelemetry/api": {
|
|
17759
|
-
"optional": true
|
|
17760
|
-
},
|
|
17761
|
-
"@types/node": {
|
|
17762
|
-
"optional": true
|
|
17763
|
-
},
|
|
17764
|
-
"@vitest/browser-playwright": {
|
|
17765
|
-
"optional": true
|
|
17766
|
-
},
|
|
17767
|
-
"@vitest/browser-preview": {
|
|
17768
|
-
"optional": true
|
|
17769
|
-
},
|
|
17770
|
-
"@vitest/browser-webdriverio": {
|
|
17771
|
-
"optional": true
|
|
17772
|
-
},
|
|
17773
|
-
"@vitest/coverage-istanbul": {
|
|
17774
|
-
"optional": true
|
|
17775
|
-
},
|
|
17776
|
-
"@vitest/coverage-v8": {
|
|
17777
|
-
"optional": true
|
|
17778
|
-
},
|
|
17779
|
-
"@vitest/ui": {
|
|
17780
|
-
"optional": true
|
|
17781
|
-
},
|
|
17782
|
-
"happy-dom": {
|
|
17783
|
-
"optional": true
|
|
17784
|
-
},
|
|
17785
|
-
"jsdom": {
|
|
17786
|
-
"optional": true
|
|
17787
|
-
},
|
|
17788
|
-
"vite": {
|
|
17789
|
-
"optional": false
|
|
17790
|
-
}
|
|
17791
|
-
}
|
|
17792
|
-
},
|
|
17793
17491
|
"node_modules/void-elements": {
|
|
17794
17492
|
"version": "3.1.0",
|
|
17795
17493
|
"resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz",
|
|
@@ -17829,6 +17527,7 @@
|
|
|
17829
17527
|
"version": "0.6.2",
|
|
17830
17528
|
"resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
|
|
17831
17529
|
"integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
|
|
17530
|
+
"dev": true,
|
|
17832
17531
|
"license": "MIT"
|
|
17833
17532
|
},
|
|
17834
17533
|
"node_modules/whatwg-url": {
|
|
@@ -17945,22 +17644,6 @@
|
|
|
17945
17644
|
"url": "https://github.com/sponsors/ljharb"
|
|
17946
17645
|
}
|
|
17947
17646
|
},
|
|
17948
|
-
"node_modules/why-is-node-running": {
|
|
17949
|
-
"version": "2.3.0",
|
|
17950
|
-
"resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz",
|
|
17951
|
-
"integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==",
|
|
17952
|
-
"license": "MIT",
|
|
17953
|
-
"dependencies": {
|
|
17954
|
-
"siginfo": "^2.0.0",
|
|
17955
|
-
"stackback": "0.0.2"
|
|
17956
|
-
},
|
|
17957
|
-
"bin": {
|
|
17958
|
-
"why-is-node-running": "cli.js"
|
|
17959
|
-
},
|
|
17960
|
-
"engines": {
|
|
17961
|
-
"node": ">=8"
|
|
17962
|
-
}
|
|
17963
|
-
},
|
|
17964
17647
|
"node_modules/wordwrap": {
|
|
17965
17648
|
"version": "1.0.0",
|
|
17966
17649
|
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
|
|
@@ -18268,6 +17951,7 @@
|
|
|
18268
17951
|
"version": "7.0.0",
|
|
18269
17952
|
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
18270
17953
|
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
17954
|
+
"dev": true,
|
|
18271
17955
|
"license": "MIT",
|
|
18272
17956
|
"dependencies": {
|
|
18273
17957
|
"ansi-styles": "^4.0.0",
|
|
@@ -18285,6 +17969,7 @@
|
|
|
18285
17969
|
"version": "5.0.1",
|
|
18286
17970
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
18287
17971
|
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
17972
|
+
"dev": true,
|
|
18288
17973
|
"license": "MIT",
|
|
18289
17974
|
"engines": {
|
|
18290
17975
|
"node": ">=8"
|
|
@@ -18294,12 +17979,14 @@
|
|
|
18294
17979
|
"version": "8.0.0",
|
|
18295
17980
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
18296
17981
|
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
17982
|
+
"dev": true,
|
|
18297
17983
|
"license": "MIT"
|
|
18298
17984
|
},
|
|
18299
17985
|
"node_modules/wrap-ansi/node_modules/string-width": {
|
|
18300
17986
|
"version": "4.2.3",
|
|
18301
17987
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
18302
17988
|
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
17989
|
+
"dev": true,
|
|
18303
17990
|
"license": "MIT",
|
|
18304
17991
|
"dependencies": {
|
|
18305
17992
|
"emoji-regex": "^8.0.0",
|
|
@@ -18314,6 +18001,7 @@
|
|
|
18314
18001
|
"version": "6.0.1",
|
|
18315
18002
|
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
18316
18003
|
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
18004
|
+
"dev": true,
|
|
18317
18005
|
"license": "MIT",
|
|
18318
18006
|
"dependencies": {
|
|
18319
18007
|
"ansi-regex": "^5.0.1"
|
|
@@ -18329,9 +18017,10 @@
|
|
|
18329
18017
|
"license": "ISC"
|
|
18330
18018
|
},
|
|
18331
18019
|
"node_modules/ws": {
|
|
18332
|
-
"version": "8.
|
|
18333
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.
|
|
18334
|
-
"integrity": "sha512-
|
|
18020
|
+
"version": "8.21.0",
|
|
18021
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
|
|
18022
|
+
"integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
|
|
18023
|
+
"dev": true,
|
|
18335
18024
|
"license": "MIT",
|
|
18336
18025
|
"engines": {
|
|
18337
18026
|
"node": ">=10.0.0"
|
|
@@ -18407,6 +18096,7 @@
|
|
|
18407
18096
|
"version": "5.0.8",
|
|
18408
18097
|
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
|
18409
18098
|
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
|
|
18099
|
+
"dev": true,
|
|
18410
18100
|
"license": "ISC",
|
|
18411
18101
|
"engines": {
|
|
18412
18102
|
"node": ">=10"
|
|
@@ -18422,6 +18112,7 @@
|
|
|
18422
18112
|
"version": "17.7.2",
|
|
18423
18113
|
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
|
|
18424
18114
|
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
|
|
18115
|
+
"dev": true,
|
|
18425
18116
|
"license": "MIT",
|
|
18426
18117
|
"dependencies": {
|
|
18427
18118
|
"cliui": "^8.0.1",
|
|
@@ -18440,6 +18131,7 @@
|
|
|
18440
18131
|
"version": "21.1.1",
|
|
18441
18132
|
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
|
|
18442
18133
|
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
|
|
18134
|
+
"dev": true,
|
|
18443
18135
|
"license": "ISC",
|
|
18444
18136
|
"engines": {
|
|
18445
18137
|
"node": ">=12"
|
|
@@ -18449,6 +18141,7 @@
|
|
|
18449
18141
|
"version": "5.0.1",
|
|
18450
18142
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
18451
18143
|
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
18144
|
+
"dev": true,
|
|
18452
18145
|
"license": "MIT",
|
|
18453
18146
|
"engines": {
|
|
18454
18147
|
"node": ">=8"
|
|
@@ -18458,12 +18151,14 @@
|
|
|
18458
18151
|
"version": "8.0.0",
|
|
18459
18152
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
18460
18153
|
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
18154
|
+
"dev": true,
|
|
18461
18155
|
"license": "MIT"
|
|
18462
18156
|
},
|
|
18463
18157
|
"node_modules/yargs/node_modules/string-width": {
|
|
18464
18158
|
"version": "4.2.3",
|
|
18465
18159
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
18466
18160
|
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
18161
|
+
"dev": true,
|
|
18467
18162
|
"license": "MIT",
|
|
18468
18163
|
"dependencies": {
|
|
18469
18164
|
"emoji-regex": "^8.0.0",
|
|
@@ -18478,6 +18173,7 @@
|
|
|
18478
18173
|
"version": "6.0.1",
|
|
18479
18174
|
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
18480
18175
|
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
18176
|
+
"dev": true,
|
|
18481
18177
|
"license": "MIT",
|
|
18482
18178
|
"dependencies": {
|
|
18483
18179
|
"ansi-regex": "^5.0.1"
|