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,23 +9,16 @@
|
|
|
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-ink": "^1.0.
|
|
15
|
-
"@drincs/pixi-vn-spine": "^0.2.1",
|
|
12
|
+
"@base-ui/react": "^1.6.0",
|
|
13
|
+
"@drincs/pixi-vn": "^1.8.16",
|
|
14
|
+
"@drincs/pixi-vn-ink": "^1.0.6",
|
|
16
15
|
"@tailwindcss/vite": "^4.3.0",
|
|
17
16
|
"@tanstack/hotkeys": "^0.8.0",
|
|
18
|
-
"@tanstack/react-devtools": "^0.10.5",
|
|
19
17
|
"@tanstack/react-hotkeys": "^0.10.0",
|
|
20
|
-
"@tanstack/react-hotkeys-devtools": "^0.7.0",
|
|
21
18
|
"@tanstack/react-pacer": "^0.22.1",
|
|
22
|
-
"@tanstack/react-pacer-devtools": "^0.7.1",
|
|
23
19
|
"@tanstack/react-query": "latest",
|
|
24
|
-
"@tanstack/react-query-devtools": "latest",
|
|
25
20
|
"@tanstack/react-router": "latest",
|
|
26
|
-
"@tanstack/react-router-devtools": "latest",
|
|
27
21
|
"@tanstack/react-store": "latest",
|
|
28
|
-
"@tanstack/router-plugin": "latest",
|
|
29
22
|
"@tanstack/store": "latest",
|
|
30
23
|
"@unpic/react": "^1.0.2",
|
|
31
24
|
"class-variance-authority": "^0.7.1",
|
|
@@ -35,7 +28,7 @@
|
|
|
35
28
|
"i18next-browser-languagedetector": "^8.2.1",
|
|
36
29
|
"i18next-chained-backend": "^5.0.4",
|
|
37
30
|
"i18next-resources-to-backend": "^1.2.1",
|
|
38
|
-
"lucide-react": "^1.
|
|
31
|
+
"lucide-react": "^1.21.0",
|
|
39
32
|
"next-themes": "^0.4.6",
|
|
40
33
|
"react": "^19.2.6",
|
|
41
34
|
"react-color-palette": "^7.3.1",
|
|
@@ -46,7 +39,7 @@
|
|
|
46
39
|
"react-resizable-panels": "^4.11.2",
|
|
47
40
|
"rehype-raw": "^7.0.0",
|
|
48
41
|
"remark-gfm": "^4.0.1",
|
|
49
|
-
"shadcn": "^4.
|
|
42
|
+
"shadcn": "^4.11.0",
|
|
50
43
|
"shade-generator": "^1.2.7",
|
|
51
44
|
"sonner": "^2.0.7",
|
|
52
45
|
"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
|
"@types/node": "^25.9.1",
|
|
65
64
|
"@types/react": "^19.2.15",
|
|
66
65
|
"@types/react-dom": "^19.2.3",
|
|
@@ -1720,13 +1719,13 @@
|
|
|
1720
1719
|
}
|
|
1721
1720
|
},
|
|
1722
1721
|
"node_modules/@base-ui/react": {
|
|
1723
|
-
"version": "1.
|
|
1724
|
-
"resolved": "https://registry.npmjs.org/@base-ui/react/-/react-1.
|
|
1725
|
-
"integrity": "sha512
|
|
1722
|
+
"version": "1.6.0",
|
|
1723
|
+
"resolved": "https://registry.npmjs.org/@base-ui/react/-/react-1.6.0.tgz",
|
|
1724
|
+
"integrity": "sha512-/jzjTWJYXhRFO45Bev9lc3cHbmjzCMpUqbMZ2AgKy/z25mY9B6shGSNcXcjQar9n5doM0KYW1W8fcFv2jZBuMw==",
|
|
1726
1725
|
"license": "MIT",
|
|
1727
1726
|
"dependencies": {
|
|
1728
1727
|
"@babel/runtime": "^7.29.2",
|
|
1729
|
-
"@base-ui/utils": "0.
|
|
1728
|
+
"@base-ui/utils": "0.3.1",
|
|
1730
1729
|
"@floating-ui/react-dom": "^2.1.8",
|
|
1731
1730
|
"@floating-ui/utils": "^0.2.11",
|
|
1732
1731
|
"use-sync-external-store": "^1.6.0"
|
|
@@ -1758,14 +1757,14 @@
|
|
|
1758
1757
|
}
|
|
1759
1758
|
},
|
|
1760
1759
|
"node_modules/@base-ui/utils": {
|
|
1761
|
-
"version": "0.
|
|
1762
|
-
"resolved": "https://registry.npmjs.org/@base-ui/utils/-/utils-0.
|
|
1763
|
-
"integrity": "sha512-
|
|
1760
|
+
"version": "0.3.1",
|
|
1761
|
+
"resolved": "https://registry.npmjs.org/@base-ui/utils/-/utils-0.3.1.tgz",
|
|
1762
|
+
"integrity": "sha512-gFFiltORVmW/N6IILTGxizP3PBpVpysqML1ALY5Vk0mH+7faVkCknOU31goYHN5Aoek2dkjxva1XOD2Ce9WuIg==",
|
|
1764
1763
|
"license": "MIT",
|
|
1765
1764
|
"dependencies": {
|
|
1766
1765
|
"@babel/runtime": "^7.29.2",
|
|
1767
1766
|
"@floating-ui/utils": "^0.2.11",
|
|
1768
|
-
"reselect": "^5.
|
|
1767
|
+
"reselect": "^5.2.0",
|
|
1769
1768
|
"use-sync-external-store": "^1.6.0"
|
|
1770
1769
|
},
|
|
1771
1770
|
"peerDependencies": {
|
|
@@ -2116,9 +2115,9 @@
|
|
|
2116
2115
|
}
|
|
2117
2116
|
},
|
|
2118
2117
|
"node_modules/@drincs/pixi-vn": {
|
|
2119
|
-
"version": "1.8.
|
|
2120
|
-
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn/-/pixi-vn-1.8.
|
|
2121
|
-
"integrity": "sha512-
|
|
2118
|
+
"version": "1.8.16",
|
|
2119
|
+
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn/-/pixi-vn-1.8.16.tgz",
|
|
2120
|
+
"integrity": "sha512-FUb5EGBizpGcfx1VZ1htqRM2pnJ3vbBgfol1bWJ41EIlz543U+qanS0INPiQqeS689s/ZJXj9fnzkSs19Wbzsw==",
|
|
2122
2121
|
"license": "LGPL-2.1",
|
|
2123
2122
|
"workspaces": [
|
|
2124
2123
|
"sandbox"
|
|
@@ -2143,9 +2142,9 @@
|
|
|
2143
2142
|
}
|
|
2144
2143
|
},
|
|
2145
2144
|
"node_modules/@drincs/pixi-vn-ink": {
|
|
2146
|
-
"version": "1.0.
|
|
2147
|
-
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-ink/-/pixi-vn-ink-1.0.
|
|
2148
|
-
"integrity": "sha512-
|
|
2145
|
+
"version": "1.0.6",
|
|
2146
|
+
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-ink/-/pixi-vn-ink-1.0.6.tgz",
|
|
2147
|
+
"integrity": "sha512-H3YTgbrefgggXCvuQJPcaNAkjoJlhlR8hWHQfdz77e+CnnBUcYuzxRquvtzNrUWjoV9e7CNkmJ4EgsB4kDuICg==",
|
|
2149
2148
|
"license": "LGPL-2.1",
|
|
2150
2149
|
"workspaces": [
|
|
2151
2150
|
"playground"
|
|
@@ -2179,25 +2178,6 @@
|
|
|
2179
2178
|
"zod": ">=4.4.0"
|
|
2180
2179
|
}
|
|
2181
2180
|
},
|
|
2182
|
-
"node_modules/@drincs/pixi-vn-spine": {
|
|
2183
|
-
"version": "0.2.1",
|
|
2184
|
-
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-spine/-/pixi-vn-spine-0.2.1.tgz",
|
|
2185
|
-
"integrity": "sha512-5Ae8HlCANi3qha4LcsZpqpnHuhBQJU0r6PzyQbT+h5CDUJv7ynPyHv6JTHV7/iwA69vNTZdVrhcGqcZdITm6dA==",
|
|
2186
|
-
"license": "LGPL-2.1",
|
|
2187
|
-
"dependencies": {
|
|
2188
|
-
"@esotericsoftware/spine-core": "^4.2.102",
|
|
2189
|
-
"@esotericsoftware/spine-pixi-v8": "^4.2.102",
|
|
2190
|
-
"vitest": "^4.0.18"
|
|
2191
|
-
},
|
|
2192
|
-
"funding": {
|
|
2193
|
-
"url": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1"
|
|
2194
|
-
},
|
|
2195
|
-
"peerDependencies": {
|
|
2196
|
-
"@drincs/pixi-vn": ">=1.5.13",
|
|
2197
|
-
"@esotericsoftware/spine-core": "^4.2.0",
|
|
2198
|
-
"@esotericsoftware/spine-pixi-v8": "^4.2.0"
|
|
2199
|
-
}
|
|
2200
|
-
},
|
|
2201
2181
|
"node_modules/@ecies/ciphers": {
|
|
2202
2182
|
"version": "0.2.6",
|
|
2203
2183
|
"resolved": "https://registry.npmjs.org/@ecies/ciphers/-/ciphers-0.2.6.tgz",
|
|
@@ -2243,33 +2223,6 @@
|
|
|
2243
2223
|
"tslib": "^2.4.0"
|
|
2244
2224
|
}
|
|
2245
2225
|
},
|
|
2246
|
-
"node_modules/@esotericsoftware/spine-canvas": {
|
|
2247
|
-
"version": "4.2.114",
|
|
2248
|
-
"resolved": "https://registry.npmjs.org/@esotericsoftware/spine-canvas/-/spine-canvas-4.2.114.tgz",
|
|
2249
|
-
"integrity": "sha512-S3dCXYfp5188n9JXLQQWBHfDxmBLWZlyEBZ2SXm3EIq6CSOzs8U+BT0iMCJOe1qRcNdysOxbCsOJsGOtIknjuw==",
|
|
2250
|
-
"license": "LicenseRef-LICENSE",
|
|
2251
|
-
"dependencies": {
|
|
2252
|
-
"@esotericsoftware/spine-core": "4.2.114"
|
|
2253
|
-
}
|
|
2254
|
-
},
|
|
2255
|
-
"node_modules/@esotericsoftware/spine-core": {
|
|
2256
|
-
"version": "4.2.114",
|
|
2257
|
-
"resolved": "https://registry.npmjs.org/@esotericsoftware/spine-core/-/spine-core-4.2.114.tgz",
|
|
2258
|
-
"integrity": "sha512-YB5DFjRXbvS6pusY1XNPFurgp8mGsS9ii7lqpIzi3LgNQt8H6+br8l/zqOzHjeY38aAXQfaDdvUNOES2KHrOPg==",
|
|
2259
|
-
"license": "LicenseRef-LICENSE"
|
|
2260
|
-
},
|
|
2261
|
-
"node_modules/@esotericsoftware/spine-pixi-v8": {
|
|
2262
|
-
"version": "4.2.114",
|
|
2263
|
-
"resolved": "https://registry.npmjs.org/@esotericsoftware/spine-pixi-v8/-/spine-pixi-v8-4.2.114.tgz",
|
|
2264
|
-
"integrity": "sha512-SIzhScVNqGKe5C8ProlI7Cb1uquO78T4jp8gXQf/EG+Cpm+4+yUZ7z2LIE50n7vbdbXT23gKXkNh/y4gevk7/g==",
|
|
2265
|
-
"license": "LicenseRef-LICENSE",
|
|
2266
|
-
"dependencies": {
|
|
2267
|
-
"@esotericsoftware/spine-canvas": "4.2.114"
|
|
2268
|
-
},
|
|
2269
|
-
"peerDependencies": {
|
|
2270
|
-
"pixi.js": "^8.16.0"
|
|
2271
|
-
}
|
|
2272
|
-
},
|
|
2273
2226
|
"node_modules/@ffmpeg-installer/darwin-arm64": {
|
|
2274
2227
|
"version": "4.1.5",
|
|
2275
2228
|
"resolved": "https://registry.npmjs.org/@ffmpeg-installer/darwin-arm64/-/darwin-arm64-4.1.5.tgz",
|
|
@@ -3020,88 +2973,6 @@
|
|
|
3020
2973
|
"url": "https://opencollective.com/libvips"
|
|
3021
2974
|
}
|
|
3022
2975
|
},
|
|
3023
|
-
"node_modules/@inquirer/ansi": {
|
|
3024
|
-
"version": "2.0.5",
|
|
3025
|
-
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.5.tgz",
|
|
3026
|
-
"integrity": "sha512-doc2sWgJpbFQ64UflSVd17ibMGDuxO1yKgOgLMwavzESnXjFWJqUeG8saYosqKpHp4kWiM5x1nXvEjbpx90gzw==",
|
|
3027
|
-
"license": "MIT",
|
|
3028
|
-
"engines": {
|
|
3029
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
3030
|
-
}
|
|
3031
|
-
},
|
|
3032
|
-
"node_modules/@inquirer/confirm": {
|
|
3033
|
-
"version": "6.0.12",
|
|
3034
|
-
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.0.12.tgz",
|
|
3035
|
-
"integrity": "sha512-h9FgGun3QwVYNj5TWIZZ+slii73bMoBFjPfVIGtnFuL4t8gBiNDV9PcSfIzkuxvgquJKt9nr1QzszpBzTbH8Og==",
|
|
3036
|
-
"license": "MIT",
|
|
3037
|
-
"dependencies": {
|
|
3038
|
-
"@inquirer/core": "^11.1.9",
|
|
3039
|
-
"@inquirer/type": "^4.0.5"
|
|
3040
|
-
},
|
|
3041
|
-
"engines": {
|
|
3042
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
3043
|
-
},
|
|
3044
|
-
"peerDependencies": {
|
|
3045
|
-
"@types/node": ">=18"
|
|
3046
|
-
},
|
|
3047
|
-
"peerDependenciesMeta": {
|
|
3048
|
-
"@types/node": {
|
|
3049
|
-
"optional": true
|
|
3050
|
-
}
|
|
3051
|
-
}
|
|
3052
|
-
},
|
|
3053
|
-
"node_modules/@inquirer/core": {
|
|
3054
|
-
"version": "11.1.9",
|
|
3055
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.1.9.tgz",
|
|
3056
|
-
"integrity": "sha512-BDE4fG22uYh1bGSifcj7JSx119TVYNViMhMu85usp4Fswrzh6M0DV3yld64jA98uOAa2GSQ4Bg4bZRm2d2cwSg==",
|
|
3057
|
-
"license": "MIT",
|
|
3058
|
-
"dependencies": {
|
|
3059
|
-
"@inquirer/ansi": "^2.0.5",
|
|
3060
|
-
"@inquirer/figures": "^2.0.5",
|
|
3061
|
-
"@inquirer/type": "^4.0.5",
|
|
3062
|
-
"cli-width": "^4.1.0",
|
|
3063
|
-
"fast-wrap-ansi": "^0.2.0",
|
|
3064
|
-
"mute-stream": "^3.0.0",
|
|
3065
|
-
"signal-exit": "^4.1.0"
|
|
3066
|
-
},
|
|
3067
|
-
"engines": {
|
|
3068
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
3069
|
-
},
|
|
3070
|
-
"peerDependencies": {
|
|
3071
|
-
"@types/node": ">=18"
|
|
3072
|
-
},
|
|
3073
|
-
"peerDependenciesMeta": {
|
|
3074
|
-
"@types/node": {
|
|
3075
|
-
"optional": true
|
|
3076
|
-
}
|
|
3077
|
-
}
|
|
3078
|
-
},
|
|
3079
|
-
"node_modules/@inquirer/figures": {
|
|
3080
|
-
"version": "2.0.5",
|
|
3081
|
-
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.5.tgz",
|
|
3082
|
-
"integrity": "sha512-NsSs4kzfm12lNetHwAn3GEuH317IzpwrMCbOuMIVytpjnJ90YYHNwdRgYGuKmVxwuIqSgqk3M5qqQt1cDk0tGQ==",
|
|
3083
|
-
"license": "MIT",
|
|
3084
|
-
"engines": {
|
|
3085
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
3086
|
-
}
|
|
3087
|
-
},
|
|
3088
|
-
"node_modules/@inquirer/type": {
|
|
3089
|
-
"version": "4.0.5",
|
|
3090
|
-
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.5.tgz",
|
|
3091
|
-
"integrity": "sha512-aetVUNeKNc/VriqXlw1NRSW0zhMBB0W4bNbWRJgzRl/3d0QNDQFfk0GO5SDdtjMZVg6o8ZKEiadd7SCCzoOn5Q==",
|
|
3092
|
-
"license": "MIT",
|
|
3093
|
-
"engines": {
|
|
3094
|
-
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
3095
|
-
},
|
|
3096
|
-
"peerDependencies": {
|
|
3097
|
-
"@types/node": ">=18"
|
|
3098
|
-
},
|
|
3099
|
-
"peerDependenciesMeta": {
|
|
3100
|
-
"@types/node": {
|
|
3101
|
-
"optional": true
|
|
3102
|
-
}
|
|
3103
|
-
}
|
|
3104
|
-
},
|
|
3105
2976
|
"node_modules/@isaacs/balanced-match": {
|
|
3106
2977
|
"version": "4.0.1",
|
|
3107
2978
|
"resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
|
|
@@ -3829,29 +3700,6 @@
|
|
|
3829
3700
|
}
|
|
3830
3701
|
}
|
|
3831
3702
|
},
|
|
3832
|
-
"node_modules/@mswjs/interceptors": {
|
|
3833
|
-
"version": "0.41.8",
|
|
3834
|
-
"resolved": "https://registry.npmjs.org/@mswjs/interceptors/-/interceptors-0.41.8.tgz",
|
|
3835
|
-
"integrity": "sha512-pRLMNKTSGRoLq+KnEB/7OY5vijw1XmcheAAOiv6pj7W1FG32kAGqj1C/RK/cqxRGr1Fh+zBi8sDur8kj3EQv6A==",
|
|
3836
|
-
"license": "MIT",
|
|
3837
|
-
"dependencies": {
|
|
3838
|
-
"@open-draft/deferred-promise": "^2.2.0",
|
|
3839
|
-
"@open-draft/logger": "^0.3.0",
|
|
3840
|
-
"@open-draft/until": "^2.0.0",
|
|
3841
|
-
"is-node-process": "^1.2.0",
|
|
3842
|
-
"outvariant": "^1.4.3",
|
|
3843
|
-
"strict-event-emitter": "^0.5.1"
|
|
3844
|
-
},
|
|
3845
|
-
"engines": {
|
|
3846
|
-
"node": ">=18"
|
|
3847
|
-
}
|
|
3848
|
-
},
|
|
3849
|
-
"node_modules/@mswjs/interceptors/node_modules/@open-draft/deferred-promise": {
|
|
3850
|
-
"version": "2.2.0",
|
|
3851
|
-
"resolved": "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz",
|
|
3852
|
-
"integrity": "sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==",
|
|
3853
|
-
"license": "MIT"
|
|
3854
|
-
},
|
|
3855
3703
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
3856
3704
|
"version": "1.1.4",
|
|
3857
3705
|
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
|
|
@@ -4457,105 +4305,447 @@
|
|
|
4457
4305
|
"node": ">= 8"
|
|
4458
4306
|
}
|
|
4459
4307
|
},
|
|
4460
|
-
"node_modules/@
|
|
4461
|
-
"version": "
|
|
4462
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4463
|
-
"integrity": "sha512-
|
|
4464
|
-
"
|
|
4308
|
+
"node_modules/@oxc-parser/binding-android-arm-eabi": {
|
|
4309
|
+
"version": "0.120.0",
|
|
4310
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm-eabi/-/binding-android-arm-eabi-0.120.0.tgz",
|
|
4311
|
+
"integrity": "sha512-WU3qtINx802wOl8RxAF1v0VvmC2O4D9M8Sv486nLeQ7iPHVmncYZrtBhB4SYyX+XZxj2PNnCcN+PW21jHgiOxg==",
|
|
4312
|
+
"cpu": [
|
|
4313
|
+
"arm"
|
|
4314
|
+
],
|
|
4315
|
+
"dev": true,
|
|
4316
|
+
"license": "MIT",
|
|
4317
|
+
"optional": true,
|
|
4318
|
+
"os": [
|
|
4319
|
+
"android"
|
|
4320
|
+
],
|
|
4321
|
+
"engines": {
|
|
4322
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4323
|
+
}
|
|
4465
4324
|
},
|
|
4466
|
-
"node_modules/@
|
|
4467
|
-
"version": "0.
|
|
4468
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4469
|
-
"integrity": "sha512-
|
|
4325
|
+
"node_modules/@oxc-parser/binding-android-arm64": {
|
|
4326
|
+
"version": "0.120.0",
|
|
4327
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm64/-/binding-android-arm64-0.120.0.tgz",
|
|
4328
|
+
"integrity": "sha512-SEf80EHdhlbjZEgzeWm0ZA/br4GKMenDW3QB/gtyeTV1gStvvZeFi40ioHDZvds2m4Z9J1bUAUL8yn1/+A6iGg==",
|
|
4329
|
+
"cpu": [
|
|
4330
|
+
"arm64"
|
|
4331
|
+
],
|
|
4332
|
+
"dev": true,
|
|
4470
4333
|
"license": "MIT",
|
|
4471
|
-
"
|
|
4472
|
-
|
|
4473
|
-
"
|
|
4334
|
+
"optional": true,
|
|
4335
|
+
"os": [
|
|
4336
|
+
"android"
|
|
4337
|
+
],
|
|
4338
|
+
"engines": {
|
|
4339
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4474
4340
|
}
|
|
4475
4341
|
},
|
|
4476
|
-
"node_modules/@
|
|
4477
|
-
"version": "
|
|
4478
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4479
|
-
"integrity": "sha512-
|
|
4480
|
-
"
|
|
4342
|
+
"node_modules/@oxc-parser/binding-darwin-arm64": {
|
|
4343
|
+
"version": "0.120.0",
|
|
4344
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.120.0.tgz",
|
|
4345
|
+
"integrity": "sha512-xVrrbCai8R8CUIBu3CjryutQnEYhZqs1maIqDvtUCFZb8vY33H7uh9mHpL3a0JBIKoBUKjPH8+rzyAeXnS2d6A==",
|
|
4346
|
+
"cpu": [
|
|
4347
|
+
"arm64"
|
|
4348
|
+
],
|
|
4349
|
+
"dev": true,
|
|
4350
|
+
"license": "MIT",
|
|
4351
|
+
"optional": true,
|
|
4352
|
+
"os": [
|
|
4353
|
+
"darwin"
|
|
4354
|
+
],
|
|
4355
|
+
"engines": {
|
|
4356
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4357
|
+
}
|
|
4481
4358
|
},
|
|
4482
|
-
"node_modules/@oxc-
|
|
4483
|
-
"version": "0.
|
|
4484
|
-
"resolved": "https://registry.npmjs.org/@oxc-
|
|
4485
|
-
"integrity": "sha512-
|
|
4359
|
+
"node_modules/@oxc-parser/binding-darwin-x64": {
|
|
4360
|
+
"version": "0.120.0",
|
|
4361
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.120.0.tgz",
|
|
4362
|
+
"integrity": "sha512-xyHBbnJ6mydnQUH7MAcafOkkrNzQC6T+LXgDH/3InEq2BWl/g424IMRiJVSpVqGjB+p2bd0h0WRR8iIwzjU7rw==",
|
|
4363
|
+
"cpu": [
|
|
4364
|
+
"x64"
|
|
4365
|
+
],
|
|
4366
|
+
"dev": true,
|
|
4486
4367
|
"license": "MIT",
|
|
4487
|
-
"
|
|
4488
|
-
|
|
4368
|
+
"optional": true,
|
|
4369
|
+
"os": [
|
|
4370
|
+
"darwin"
|
|
4371
|
+
],
|
|
4372
|
+
"engines": {
|
|
4373
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4489
4374
|
}
|
|
4490
4375
|
},
|
|
4491
|
-
"node_modules/@
|
|
4492
|
-
"version": "
|
|
4493
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4494
|
-
"integrity": "sha512-
|
|
4376
|
+
"node_modules/@oxc-parser/binding-freebsd-x64": {
|
|
4377
|
+
"version": "0.120.0",
|
|
4378
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-freebsd-x64/-/binding-freebsd-x64-0.120.0.tgz",
|
|
4379
|
+
"integrity": "sha512-UMnVRllquXUYTeNfFKmxTTEdZ/ix1nLl0ducDzMSREoWYGVIHnOOxoKMWlCOvRr9Wk/HZqo2rh1jeumbPGPV9A==",
|
|
4380
|
+
"cpu": [
|
|
4381
|
+
"x64"
|
|
4382
|
+
],
|
|
4383
|
+
"dev": true,
|
|
4495
4384
|
"license": "MIT",
|
|
4496
|
-
"
|
|
4385
|
+
"optional": true,
|
|
4386
|
+
"os": [
|
|
4387
|
+
"freebsd"
|
|
4388
|
+
],
|
|
4389
|
+
"engines": {
|
|
4390
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4391
|
+
}
|
|
4497
4392
|
},
|
|
4498
|
-
"node_modules/@
|
|
4499
|
-
"version": "
|
|
4500
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4501
|
-
"integrity": "sha512-
|
|
4393
|
+
"node_modules/@oxc-parser/binding-linux-arm-gnueabihf": {
|
|
4394
|
+
"version": "0.120.0",
|
|
4395
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.120.0.tgz",
|
|
4396
|
+
"integrity": "sha512-tkvn2CQ7QdcsMnpfiX3fd3wA3EFsWKYlcQzq9cFw/xc89Al7W6Y4O0FgLVkVQpo0Tnq/qtE1XfkJOnRRA9S/NA==",
|
|
4397
|
+
"cpu": [
|
|
4398
|
+
"arm"
|
|
4399
|
+
],
|
|
4400
|
+
"dev": true,
|
|
4502
4401
|
"license": "MIT",
|
|
4503
|
-
"
|
|
4504
|
-
"
|
|
4505
|
-
"
|
|
4402
|
+
"optional": true,
|
|
4403
|
+
"os": [
|
|
4404
|
+
"linux"
|
|
4405
|
+
],
|
|
4406
|
+
"engines": {
|
|
4407
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4506
4408
|
}
|
|
4507
4409
|
},
|
|
4508
|
-
"node_modules/@
|
|
4509
|
-
"version": "
|
|
4510
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4511
|
-
"integrity": "sha512-
|
|
4410
|
+
"node_modules/@oxc-parser/binding-linux-arm-musleabihf": {
|
|
4411
|
+
"version": "0.120.0",
|
|
4412
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.120.0.tgz",
|
|
4413
|
+
"integrity": "sha512-WN5y135Ic42gQDk9grbwY9++fDhqf8knN6fnP+0WALlAUh4odY/BDK1nfTJRSfpJD9P3r1BwU0m3pW2DU89whQ==",
|
|
4414
|
+
"cpu": [
|
|
4415
|
+
"arm"
|
|
4416
|
+
],
|
|
4512
4417
|
"dev": true,
|
|
4513
4418
|
"license": "MIT",
|
|
4514
|
-
"
|
|
4515
|
-
|
|
4516
|
-
"
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
"
|
|
4520
|
-
"jimp": "^1.6.0",
|
|
4521
|
-
"js2xmlparser": "^5.0.0",
|
|
4522
|
-
"map-limit": "0.0.1",
|
|
4523
|
-
"maxrects-packer": "^2.7.3",
|
|
4524
|
-
"opentype.js": "^0.11.0"
|
|
4525
|
-
},
|
|
4526
|
-
"bin": {
|
|
4527
|
-
"msdf-bmfont": "cli.js"
|
|
4419
|
+
"optional": true,
|
|
4420
|
+
"os": [
|
|
4421
|
+
"linux"
|
|
4422
|
+
],
|
|
4423
|
+
"engines": {
|
|
4424
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4528
4425
|
}
|
|
4529
4426
|
},
|
|
4530
|
-
"node_modules/@
|
|
4531
|
-
"version": "
|
|
4532
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4533
|
-
"integrity": "sha512-
|
|
4427
|
+
"node_modules/@oxc-parser/binding-linux-arm64-gnu": {
|
|
4428
|
+
"version": "0.120.0",
|
|
4429
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.120.0.tgz",
|
|
4430
|
+
"integrity": "sha512-1GgQBCcXvFMw99EPdMy+4NZ3aYyXsxjf9kbUUg8HuAy3ZBXzOry5KfFEzT9nqmgZI1cuetvApkiJBZLAPo8uaw==",
|
|
4431
|
+
"cpu": [
|
|
4432
|
+
"arm64"
|
|
4433
|
+
],
|
|
4534
4434
|
"dev": true,
|
|
4435
|
+
"libc": [
|
|
4436
|
+
"glibc"
|
|
4437
|
+
],
|
|
4535
4438
|
"license": "MIT",
|
|
4536
|
-
"
|
|
4537
|
-
|
|
4538
|
-
"
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
"
|
|
4542
|
-
"svgpath": "^2.6.0"
|
|
4543
|
-
},
|
|
4544
|
-
"bin": {
|
|
4545
|
-
"svg2ttf": "svg2ttf.js"
|
|
4439
|
+
"optional": true,
|
|
4440
|
+
"os": [
|
|
4441
|
+
"linux"
|
|
4442
|
+
],
|
|
4443
|
+
"engines": {
|
|
4444
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4546
4445
|
}
|
|
4547
4446
|
},
|
|
4548
|
-
"node_modules/@
|
|
4549
|
-
"version": "
|
|
4550
|
-
"resolved": "https://registry.npmjs.org/@
|
|
4551
|
-
"integrity": "sha512-
|
|
4447
|
+
"node_modules/@oxc-parser/binding-linux-arm64-musl": {
|
|
4448
|
+
"version": "0.120.0",
|
|
4449
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.120.0.tgz",
|
|
4450
|
+
"integrity": "sha512-gmMQ70gsPdDBgpcErvJEoWNBr7bJooSLlvOBVBSGfOzlP5NvJ3bFvnUeZZ9d+dPrqSngtonf7nyzWUTUj/U+lw==",
|
|
4451
|
+
"cpu": [
|
|
4452
|
+
"arm64"
|
|
4453
|
+
],
|
|
4552
4454
|
"dev": true,
|
|
4455
|
+
"libc": [
|
|
4456
|
+
"musl"
|
|
4457
|
+
],
|
|
4553
4458
|
"license": "MIT",
|
|
4554
|
-
"
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
4459
|
+
"optional": true,
|
|
4460
|
+
"os": [
|
|
4461
|
+
"linux"
|
|
4462
|
+
],
|
|
4463
|
+
"engines": {
|
|
4464
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4465
|
+
}
|
|
4466
|
+
},
|
|
4467
|
+
"node_modules/@oxc-parser/binding-linux-ppc64-gnu": {
|
|
4468
|
+
"version": "0.120.0",
|
|
4469
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.120.0.tgz",
|
|
4470
|
+
"integrity": "sha512-T/kZuU0ajop0xhzVMwH5r3srC9Nqup5HaIo+3uFjIN5uPxa0LvSxC1ZqP4aQGJVW5G0z8/nCkjIfSMS91P/wzw==",
|
|
4471
|
+
"cpu": [
|
|
4472
|
+
"ppc64"
|
|
4473
|
+
],
|
|
4474
|
+
"dev": true,
|
|
4475
|
+
"libc": [
|
|
4476
|
+
"glibc"
|
|
4477
|
+
],
|
|
4478
|
+
"license": "MIT",
|
|
4479
|
+
"optional": true,
|
|
4480
|
+
"os": [
|
|
4481
|
+
"linux"
|
|
4482
|
+
],
|
|
4483
|
+
"engines": {
|
|
4484
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4485
|
+
}
|
|
4486
|
+
},
|
|
4487
|
+
"node_modules/@oxc-parser/binding-linux-riscv64-gnu": {
|
|
4488
|
+
"version": "0.120.0",
|
|
4489
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.120.0.tgz",
|
|
4490
|
+
"integrity": "sha512-vn21KXLAXzaI3N5CZWlBr1iWeXLl9QFIMor7S1hUjUGTeUuWCoE6JZB040/ZNDwf+JXPX8Ao9KbmJq9FMC2iGw==",
|
|
4491
|
+
"cpu": [
|
|
4492
|
+
"riscv64"
|
|
4493
|
+
],
|
|
4494
|
+
"dev": true,
|
|
4495
|
+
"libc": [
|
|
4496
|
+
"glibc"
|
|
4497
|
+
],
|
|
4498
|
+
"license": "MIT",
|
|
4499
|
+
"optional": true,
|
|
4500
|
+
"os": [
|
|
4501
|
+
"linux"
|
|
4502
|
+
],
|
|
4503
|
+
"engines": {
|
|
4504
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4505
|
+
}
|
|
4506
|
+
},
|
|
4507
|
+
"node_modules/@oxc-parser/binding-linux-riscv64-musl": {
|
|
4508
|
+
"version": "0.120.0",
|
|
4509
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.120.0.tgz",
|
|
4510
|
+
"integrity": "sha512-SUbUxlar007LTGmSLGIC5x/WJvwhdX+PwNzFJ9f/nOzZOrCFbOT4ikt7pJIRg1tXVsEfzk5mWpGO1NFiSs4PIw==",
|
|
4511
|
+
"cpu": [
|
|
4512
|
+
"riscv64"
|
|
4513
|
+
],
|
|
4514
|
+
"dev": true,
|
|
4515
|
+
"libc": [
|
|
4516
|
+
"musl"
|
|
4517
|
+
],
|
|
4518
|
+
"license": "MIT",
|
|
4519
|
+
"optional": true,
|
|
4520
|
+
"os": [
|
|
4521
|
+
"linux"
|
|
4522
|
+
],
|
|
4523
|
+
"engines": {
|
|
4524
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4525
|
+
}
|
|
4526
|
+
},
|
|
4527
|
+
"node_modules/@oxc-parser/binding-linux-s390x-gnu": {
|
|
4528
|
+
"version": "0.120.0",
|
|
4529
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.120.0.tgz",
|
|
4530
|
+
"integrity": "sha512-hYiPJTxyfJY2+lMBFk3p2bo0R9GN+TtpPFlRqVchL1qvLG+pznstramHNvJlw9AjaoRUHwp9IKR7UZQnRPGjgQ==",
|
|
4531
|
+
"cpu": [
|
|
4532
|
+
"s390x"
|
|
4533
|
+
],
|
|
4534
|
+
"dev": true,
|
|
4535
|
+
"libc": [
|
|
4536
|
+
"glibc"
|
|
4537
|
+
],
|
|
4538
|
+
"license": "MIT",
|
|
4539
|
+
"optional": true,
|
|
4540
|
+
"os": [
|
|
4541
|
+
"linux"
|
|
4542
|
+
],
|
|
4543
|
+
"engines": {
|
|
4544
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4545
|
+
}
|
|
4546
|
+
},
|
|
4547
|
+
"node_modules/@oxc-parser/binding-linux-x64-gnu": {
|
|
4548
|
+
"version": "0.120.0",
|
|
4549
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.120.0.tgz",
|
|
4550
|
+
"integrity": "sha512-q+5jSVZkprJCIy3dzJpApat0InJaoxQLsJuD6DkX8hrUS61z2lHQ1Fe9L2+TYbKHXCLWbL0zXe7ovkIdopBGMQ==",
|
|
4551
|
+
"cpu": [
|
|
4552
|
+
"x64"
|
|
4553
|
+
],
|
|
4554
|
+
"dev": true,
|
|
4555
|
+
"libc": [
|
|
4556
|
+
"glibc"
|
|
4557
|
+
],
|
|
4558
|
+
"license": "MIT",
|
|
4559
|
+
"optional": true,
|
|
4560
|
+
"os": [
|
|
4561
|
+
"linux"
|
|
4562
|
+
],
|
|
4563
|
+
"engines": {
|
|
4564
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4565
|
+
}
|
|
4566
|
+
},
|
|
4567
|
+
"node_modules/@oxc-parser/binding-linux-x64-musl": {
|
|
4568
|
+
"version": "0.120.0",
|
|
4569
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.120.0.tgz",
|
|
4570
|
+
"integrity": "sha512-D9QDDZNnH24e7X4ftSa6ar/2hCavETfW3uk0zgcMIrZNy459O5deTbWrjGzZiVrSWigGtlQwzs2McBP0QsfV1w==",
|
|
4571
|
+
"cpu": [
|
|
4572
|
+
"x64"
|
|
4573
|
+
],
|
|
4574
|
+
"dev": true,
|
|
4575
|
+
"libc": [
|
|
4576
|
+
"musl"
|
|
4577
|
+
],
|
|
4578
|
+
"license": "MIT",
|
|
4579
|
+
"optional": true,
|
|
4580
|
+
"os": [
|
|
4581
|
+
"linux"
|
|
4582
|
+
],
|
|
4583
|
+
"engines": {
|
|
4584
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4585
|
+
}
|
|
4586
|
+
},
|
|
4587
|
+
"node_modules/@oxc-parser/binding-openharmony-arm64": {
|
|
4588
|
+
"version": "0.120.0",
|
|
4589
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-openharmony-arm64/-/binding-openharmony-arm64-0.120.0.tgz",
|
|
4590
|
+
"integrity": "sha512-TBU8ZwOUWAOUWVfmI16CYWbvh4uQb9zHnGBHsw5Cp2JUVG044OIY1CSHODLifqzQIMTXvDvLzcL89GGdUIqNrA==",
|
|
4591
|
+
"cpu": [
|
|
4592
|
+
"arm64"
|
|
4593
|
+
],
|
|
4594
|
+
"dev": true,
|
|
4595
|
+
"license": "MIT",
|
|
4596
|
+
"optional": true,
|
|
4597
|
+
"os": [
|
|
4598
|
+
"openharmony"
|
|
4599
|
+
],
|
|
4600
|
+
"engines": {
|
|
4601
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4602
|
+
}
|
|
4603
|
+
},
|
|
4604
|
+
"node_modules/@oxc-parser/binding-wasm32-wasi": {
|
|
4605
|
+
"version": "0.120.0",
|
|
4606
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.120.0.tgz",
|
|
4607
|
+
"integrity": "sha512-WG/FOZgDJCpJnuF3ToG/K28rcOmSY7FmFmfBKYb2fmLyhDzPpUldFGV7/Fz4ru0Iz/v4KPmf8xVgO8N3lO4KHA==",
|
|
4608
|
+
"cpu": [
|
|
4609
|
+
"wasm32"
|
|
4610
|
+
],
|
|
4611
|
+
"dev": true,
|
|
4612
|
+
"license": "MIT",
|
|
4613
|
+
"optional": true,
|
|
4614
|
+
"dependencies": {
|
|
4615
|
+
"@napi-rs/wasm-runtime": "^1.1.1"
|
|
4616
|
+
},
|
|
4617
|
+
"engines": {
|
|
4618
|
+
"node": ">=14.0.0"
|
|
4619
|
+
}
|
|
4620
|
+
},
|
|
4621
|
+
"node_modules/@oxc-parser/binding-win32-arm64-msvc": {
|
|
4622
|
+
"version": "0.120.0",
|
|
4623
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.120.0.tgz",
|
|
4624
|
+
"integrity": "sha512-1T0HKGcsz/BKo77t7+89L8Qvu4f9DoleKWHp3C5sJEcbCjDOLx3m9m722bWZTY+hANlUEs+yjlK+lBFsA+vrVQ==",
|
|
4625
|
+
"cpu": [
|
|
4626
|
+
"arm64"
|
|
4627
|
+
],
|
|
4628
|
+
"dev": true,
|
|
4629
|
+
"license": "MIT",
|
|
4630
|
+
"optional": true,
|
|
4631
|
+
"os": [
|
|
4632
|
+
"win32"
|
|
4633
|
+
],
|
|
4634
|
+
"engines": {
|
|
4635
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4636
|
+
}
|
|
4637
|
+
},
|
|
4638
|
+
"node_modules/@oxc-parser/binding-win32-ia32-msvc": {
|
|
4639
|
+
"version": "0.120.0",
|
|
4640
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.120.0.tgz",
|
|
4641
|
+
"integrity": "sha512-L7vfLzbOXsjBXV0rv/6Y3Jd9BRjPeCivINZAqrSyAOZN3moCopDN+Psq9ZrGNZtJzP8946MtlRFZ0Als0wBCOw==",
|
|
4642
|
+
"cpu": [
|
|
4643
|
+
"ia32"
|
|
4644
|
+
],
|
|
4645
|
+
"dev": true,
|
|
4646
|
+
"license": "MIT",
|
|
4647
|
+
"optional": true,
|
|
4648
|
+
"os": [
|
|
4649
|
+
"win32"
|
|
4650
|
+
],
|
|
4651
|
+
"engines": {
|
|
4652
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4653
|
+
}
|
|
4654
|
+
},
|
|
4655
|
+
"node_modules/@oxc-parser/binding-win32-x64-msvc": {
|
|
4656
|
+
"version": "0.120.0",
|
|
4657
|
+
"resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.120.0.tgz",
|
|
4658
|
+
"integrity": "sha512-ys+upfqNtSu58huAhJMBKl3XCkGzyVFBlMlGPzHeFKgpFF/OdgNs1MMf8oaJIbgMH8ZxgGF7qfue39eJohmKIg==",
|
|
4659
|
+
"cpu": [
|
|
4660
|
+
"x64"
|
|
4661
|
+
],
|
|
4662
|
+
"dev": true,
|
|
4663
|
+
"license": "MIT",
|
|
4664
|
+
"optional": true,
|
|
4665
|
+
"os": [
|
|
4666
|
+
"win32"
|
|
4667
|
+
],
|
|
4668
|
+
"engines": {
|
|
4669
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
4670
|
+
}
|
|
4671
|
+
},
|
|
4672
|
+
"node_modules/@oxc-project/types": {
|
|
4673
|
+
"version": "0.133.0",
|
|
4674
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
|
|
4675
|
+
"integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
|
|
4676
|
+
"license": "MIT",
|
|
4677
|
+
"funding": {
|
|
4678
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
4679
|
+
}
|
|
4680
|
+
},
|
|
4681
|
+
"node_modules/@pixi/colord": {
|
|
4682
|
+
"version": "2.9.6",
|
|
4683
|
+
"resolved": "https://registry.npmjs.org/@pixi/colord/-/colord-2.9.6.tgz",
|
|
4684
|
+
"integrity": "sha512-nezytU2pw587fQstUu1AsJZDVEynjskwOL+kibwcdxsMBFqPsFFNA7xl0ii/gXuDi6M0xj3mfRJj8pBSc2jCfA==",
|
|
4685
|
+
"license": "MIT",
|
|
4686
|
+
"peer": true
|
|
4687
|
+
},
|
|
4688
|
+
"node_modules/@pixi/devtools": {
|
|
4689
|
+
"version": "2.0.1",
|
|
4690
|
+
"resolved": "https://registry.npmjs.org/@pixi/devtools/-/devtools-2.0.1.tgz",
|
|
4691
|
+
"integrity": "sha512-TFCqNkJoLNYHDELgQ3bKWvA33twWpoUhQB8Y+hneBdDBunRsqZ5ZzwH7+6E5eVaVn7eeLAXHs9QGRGsxM0fRlw==",
|
|
4692
|
+
"license": "MIT",
|
|
4693
|
+
"peer": true,
|
|
4694
|
+
"peerDependencies": {
|
|
4695
|
+
"pixi.js": "^7 || ^8"
|
|
4696
|
+
}
|
|
4697
|
+
},
|
|
4698
|
+
"node_modules/@pixi/msdf-bmfont-xml": {
|
|
4699
|
+
"version": "3.0.0",
|
|
4700
|
+
"resolved": "https://registry.npmjs.org/@pixi/msdf-bmfont-xml/-/msdf-bmfont-xml-3.0.0.tgz",
|
|
4701
|
+
"integrity": "sha512-h/FDfBnWiv4+5JNNsfYs3wpDYYOJCCd14PMbFpt1sHDfutJGZ6MvDvq5JI7pL6toX25uyGPV9ADMCdV1KCVulg==",
|
|
4702
|
+
"dev": true,
|
|
4703
|
+
"license": "MIT",
|
|
4704
|
+
"dependencies": {
|
|
4705
|
+
"arabic-persian-reshaper": "^1.0.1",
|
|
4706
|
+
"cli-progress": "^3.12.0",
|
|
4707
|
+
"commander": "^14.0.0",
|
|
4708
|
+
"handlebars": "^4.7.7",
|
|
4709
|
+
"is-invalid-path": "^1.0.2",
|
|
4710
|
+
"jimp": "^1.6.0",
|
|
4711
|
+
"js2xmlparser": "^5.0.0",
|
|
4712
|
+
"map-limit": "0.0.1",
|
|
4713
|
+
"maxrects-packer": "^2.7.3",
|
|
4714
|
+
"opentype.js": "^0.11.0"
|
|
4715
|
+
},
|
|
4716
|
+
"bin": {
|
|
4717
|
+
"msdf-bmfont": "cli.js"
|
|
4718
|
+
}
|
|
4719
|
+
},
|
|
4720
|
+
"node_modules/@pixi/svg2ttf": {
|
|
4721
|
+
"version": "6.1.0",
|
|
4722
|
+
"resolved": "https://registry.npmjs.org/@pixi/svg2ttf/-/svg2ttf-6.1.0.tgz",
|
|
4723
|
+
"integrity": "sha512-qT7P6F48lyWVWn6w0qxWtxLVVPEcXzAlo9/nimh4cflfKQWdApqfCZVOCgaaO0xHVpClbhCzApQXlJnLEs1oaw==",
|
|
4724
|
+
"dev": true,
|
|
4725
|
+
"license": "MIT",
|
|
4726
|
+
"dependencies": {
|
|
4727
|
+
"@xmldom/xmldom": "~0.9.8",
|
|
4728
|
+
"argparse": "^2.0.1",
|
|
4729
|
+
"cubic2quad": "^1.2.1",
|
|
4730
|
+
"lodash": "^4.17.21",
|
|
4731
|
+
"microbuffer": "^1.0.0",
|
|
4732
|
+
"svgpath": "^2.6.0"
|
|
4733
|
+
},
|
|
4734
|
+
"bin": {
|
|
4735
|
+
"svg2ttf": "svg2ttf.js"
|
|
4736
|
+
}
|
|
4737
|
+
},
|
|
4738
|
+
"node_modules/@quansync/fs": {
|
|
4739
|
+
"version": "1.0.0",
|
|
4740
|
+
"resolved": "https://registry.npmjs.org/@quansync/fs/-/fs-1.0.0.tgz",
|
|
4741
|
+
"integrity": "sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==",
|
|
4742
|
+
"dev": true,
|
|
4743
|
+
"license": "MIT",
|
|
4744
|
+
"dependencies": {
|
|
4745
|
+
"quansync": "^1.0.0"
|
|
4746
|
+
},
|
|
4747
|
+
"funding": {
|
|
4748
|
+
"url": "https://github.com/sponsors/sxzz"
|
|
4559
4749
|
}
|
|
4560
4750
|
},
|
|
4561
4751
|
"node_modules/@radix-ui/primitive": {
|
|
@@ -5654,6 +5844,7 @@
|
|
|
5654
5844
|
"version": "2.4.5",
|
|
5655
5845
|
"resolved": "https://registry.npmjs.org/@solid-primitives/event-listener/-/event-listener-2.4.5.tgz",
|
|
5656
5846
|
"integrity": "sha512-nwRV558mIabl4yVAhZKY8cb6G+O1F0M6Z75ttTu5hk+SxdOnKSGj+eetDIu7Oax1P138ZdUU01qnBPR8rnxaEA==",
|
|
5847
|
+
"dev": true,
|
|
5657
5848
|
"license": "MIT",
|
|
5658
5849
|
"dependencies": {
|
|
5659
5850
|
"@solid-primitives/utils": "^6.4.0"
|
|
@@ -5666,6 +5857,7 @@
|
|
|
5666
5857
|
"version": "1.3.5",
|
|
5667
5858
|
"resolved": "https://registry.npmjs.org/@solid-primitives/keyboard/-/keyboard-1.3.5.tgz",
|
|
5668
5859
|
"integrity": "sha512-sav+l+PL+74z3yaftVs7qd8c2SXkqzuxPOVibUe5wYMt+U5Hxp3V3XCPgBPN2I6cANjvoFtz0NiU8uHVLdi9FQ==",
|
|
5860
|
+
"dev": true,
|
|
5669
5861
|
"license": "MIT",
|
|
5670
5862
|
"dependencies": {
|
|
5671
5863
|
"@solid-primitives/event-listener": "^2.4.5",
|
|
@@ -5680,6 +5872,7 @@
|
|
|
5680
5872
|
"version": "2.1.5",
|
|
5681
5873
|
"resolved": "https://registry.npmjs.org/@solid-primitives/resize-observer/-/resize-observer-2.1.5.tgz",
|
|
5682
5874
|
"integrity": "sha512-AiyTknKcNBaKHbcSMuxtSNM8FjIuiSuFyFghdD0TcCMU9hKi9EmsC5pjfjDwxE+5EueB1a+T/34PLRI5vbBbKw==",
|
|
5875
|
+
"dev": true,
|
|
5683
5876
|
"license": "MIT",
|
|
5684
5877
|
"dependencies": {
|
|
5685
5878
|
"@solid-primitives/event-listener": "^2.4.5",
|
|
@@ -5695,6 +5888,7 @@
|
|
|
5695
5888
|
"version": "1.5.3",
|
|
5696
5889
|
"resolved": "https://registry.npmjs.org/@solid-primitives/rootless/-/rootless-1.5.3.tgz",
|
|
5697
5890
|
"integrity": "sha512-N8cIDAHbWcLahNRLr0knAAQvXyEdEMoAZvIMZKmhNb1mlx9e2UOv9BRD5YNwQUJwbNoYVhhLwFOEOcVXFx0HqA==",
|
|
5891
|
+
"dev": true,
|
|
5698
5892
|
"license": "MIT",
|
|
5699
5893
|
"dependencies": {
|
|
5700
5894
|
"@solid-primitives/utils": "^6.4.0"
|
|
@@ -5707,6 +5901,7 @@
|
|
|
5707
5901
|
"version": "0.1.3",
|
|
5708
5902
|
"resolved": "https://registry.npmjs.org/@solid-primitives/static-store/-/static-store-0.1.3.tgz",
|
|
5709
5903
|
"integrity": "sha512-uxez7SXnr5GiRnzqO2IEDjOJRIXaG+0LZLBizmUA1FwSi+hrpuMzVBwyk70m4prcl8X6FDDXUl9O8hSq8wHbBQ==",
|
|
5904
|
+
"dev": true,
|
|
5710
5905
|
"license": "MIT",
|
|
5711
5906
|
"dependencies": {
|
|
5712
5907
|
"@solid-primitives/utils": "^6.4.0"
|
|
@@ -5719,17 +5914,12 @@
|
|
|
5719
5914
|
"version": "6.4.0",
|
|
5720
5915
|
"resolved": "https://registry.npmjs.org/@solid-primitives/utils/-/utils-6.4.0.tgz",
|
|
5721
5916
|
"integrity": "sha512-AeGTBg8Wtkh/0s+evyLtP8piQoS4wyqqQaAFs2HJcFMMjYAtUgo+ZPduRXLjPlqKVc2ejeR544oeqpbn8Egn8A==",
|
|
5917
|
+
"dev": true,
|
|
5722
5918
|
"license": "MIT",
|
|
5723
5919
|
"peerDependencies": {
|
|
5724
5920
|
"solid-js": "^1.6.12"
|
|
5725
5921
|
}
|
|
5726
5922
|
},
|
|
5727
|
-
"node_modules/@standard-schema/spec": {
|
|
5728
|
-
"version": "1.1.0",
|
|
5729
|
-
"resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
|
|
5730
|
-
"integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
|
|
5731
|
-
"license": "MIT"
|
|
5732
|
-
},
|
|
5733
5923
|
"node_modules/@swc/helpers": {
|
|
5734
5924
|
"version": "0.3.17",
|
|
5735
5925
|
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz",
|
|
@@ -6011,17 +6201,18 @@
|
|
|
6011
6201
|
}
|
|
6012
6202
|
},
|
|
6013
6203
|
"node_modules/@tanstack/devtools": {
|
|
6014
|
-
"version": "0.12.
|
|
6015
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools/-/devtools-0.12.
|
|
6016
|
-
"integrity": "sha512-
|
|
6204
|
+
"version": "0.12.4",
|
|
6205
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools/-/devtools-0.12.4.tgz",
|
|
6206
|
+
"integrity": "sha512-fYZ0KTEpKq7JyjULDe4kGQBN77aw5jtULs1MaVraWvwtcoIwe4UOKV48UJQ9/mEQMFTytbgKxYk2QaSDgI/Znw==",
|
|
6207
|
+
"dev": true,
|
|
6017
6208
|
"license": "MIT",
|
|
6018
6209
|
"dependencies": {
|
|
6019
6210
|
"@solid-primitives/event-listener": "^2.4.3",
|
|
6020
6211
|
"@solid-primitives/keyboard": "^1.3.3",
|
|
6021
6212
|
"@solid-primitives/resize-observer": "^2.1.3",
|
|
6022
|
-
"@tanstack/devtools-client": "0.0.
|
|
6023
|
-
"@tanstack/devtools-event-bus": "0.4.
|
|
6024
|
-
"@tanstack/devtools-ui": "0.5.
|
|
6213
|
+
"@tanstack/devtools-client": "0.0.7",
|
|
6214
|
+
"@tanstack/devtools-event-bus": "0.4.2",
|
|
6215
|
+
"@tanstack/devtools-ui": "0.5.3",
|
|
6025
6216
|
"clsx": "^2.1.1",
|
|
6026
6217
|
"goober": "^2.1.16",
|
|
6027
6218
|
"solid-js": "^1.9.9"
|
|
@@ -6041,12 +6232,13 @@
|
|
|
6041
6232
|
}
|
|
6042
6233
|
},
|
|
6043
6234
|
"node_modules/@tanstack/devtools-client": {
|
|
6044
|
-
"version": "0.0.
|
|
6045
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools-client/-/devtools-client-0.0.
|
|
6046
|
-
"integrity": "sha512-
|
|
6235
|
+
"version": "0.0.7",
|
|
6236
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-client/-/devtools-client-0.0.7.tgz",
|
|
6237
|
+
"integrity": "sha512-bAqBnXQlg/1PqmIC3XhqzG8jV3YmUQ41fD9VlOVzSilFBD4Kp6WJFJa+7N6TvlYXqMAy8xoeF9gg0d2Lt74OEQ==",
|
|
6238
|
+
"dev": true,
|
|
6047
6239
|
"license": "MIT",
|
|
6048
6240
|
"dependencies": {
|
|
6049
|
-
"@tanstack/devtools-event-client": "^0.4.
|
|
6241
|
+
"@tanstack/devtools-event-client": "^0.4.4"
|
|
6050
6242
|
},
|
|
6051
6243
|
"engines": {
|
|
6052
6244
|
"node": ">=18"
|
|
@@ -6057,9 +6249,10 @@
|
|
|
6057
6249
|
}
|
|
6058
6250
|
},
|
|
6059
6251
|
"node_modules/@tanstack/devtools-event-bus": {
|
|
6060
|
-
"version": "0.4.
|
|
6061
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools-event-bus/-/devtools-event-bus-0.4.
|
|
6062
|
-
"integrity": "sha512-
|
|
6252
|
+
"version": "0.4.2",
|
|
6253
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-event-bus/-/devtools-event-bus-0.4.2.tgz",
|
|
6254
|
+
"integrity": "sha512-2LHzhwBFlKHCcklsQrGe8TeyjHd4XAF8nuCO6wHmva5fePUkJUULbu6CsCNAlGlCi0KkEsMXZSvRdR4HgMq4yA==",
|
|
6255
|
+
"dev": true,
|
|
6063
6256
|
"license": "MIT",
|
|
6064
6257
|
"dependencies": {
|
|
6065
6258
|
"ws": "^8.18.3"
|
|
@@ -6073,9 +6266,9 @@
|
|
|
6073
6266
|
}
|
|
6074
6267
|
},
|
|
6075
6268
|
"node_modules/@tanstack/devtools-event-client": {
|
|
6076
|
-
"version": "0.4.
|
|
6077
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools-event-client/-/devtools-event-client-0.4.
|
|
6078
|
-
"integrity": "sha512-
|
|
6269
|
+
"version": "0.4.4",
|
|
6270
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-event-client/-/devtools-event-client-0.4.4.tgz",
|
|
6271
|
+
"integrity": "sha512-6T5Yop/793YI+H+5J8Hsyj4kCih9sl4t3ElLgKioW5hk3ocn+ZdSJ94tT7vL7uabxSugWYBZlOTMPzEw2puvQw==",
|
|
6079
6272
|
"license": "MIT",
|
|
6080
6273
|
"bin": {
|
|
6081
6274
|
"intent": "bin/intent.js"
|
|
@@ -6092,6 +6285,7 @@
|
|
|
6092
6285
|
"version": "0.5.2",
|
|
6093
6286
|
"resolved": "https://registry.npmjs.org/@tanstack/devtools-ui/-/devtools-ui-0.5.2.tgz",
|
|
6094
6287
|
"integrity": "sha512-GtaMk8kaGZ9ZdR8Pu5RAfcse/ZrxzH/xsAIFtHMapLs2VMqSPFfb1NvIDO1MAAfUcub8Ix8XKQEP0uYSPzoFKw==",
|
|
6288
|
+
"dev": true,
|
|
6095
6289
|
"license": "MIT",
|
|
6096
6290
|
"dependencies": {
|
|
6097
6291
|
"clsx": "^2.1.1",
|
|
@@ -6114,6 +6308,7 @@
|
|
|
6114
6308
|
"version": "0.4.0",
|
|
6115
6309
|
"resolved": "https://registry.npmjs.org/@tanstack/devtools-utils/-/devtools-utils-0.4.0.tgz",
|
|
6116
6310
|
"integrity": "sha512-KsGzYhA8L/fCNgyyMyoUy+TKtx+DjNbzWwqH6wXL48Llzo7kvV9RynYJlaO8Qkzwm+NdHXSgsljQNjQ3CKPpZA==",
|
|
6311
|
+
"dev": true,
|
|
6117
6312
|
"license": "MIT",
|
|
6118
6313
|
"bin": {
|
|
6119
6314
|
"intent": "bin/intent.js"
|
|
@@ -6151,21 +6346,18 @@
|
|
|
6151
6346
|
}
|
|
6152
6347
|
},
|
|
6153
6348
|
"node_modules/@tanstack/devtools-vite": {
|
|
6154
|
-
"version": "0.
|
|
6155
|
-
"resolved": "https://registry.npmjs.org/@tanstack/devtools-vite/-/devtools-vite-0.
|
|
6156
|
-
"integrity": "sha512-
|
|
6349
|
+
"version": "0.8.0",
|
|
6350
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-vite/-/devtools-vite-0.8.0.tgz",
|
|
6351
|
+
"integrity": "sha512-Pj4KB6dTK3NGjVxKRym8X0Df8rL/ofojYMVR8sw4jAT7doMCTNSW7VqXrYD5P2cKgyLJiwg3TNOozRm2o+7m3Q==",
|
|
6157
6352
|
"dev": true,
|
|
6158
6353
|
"license": "MIT",
|
|
6159
6354
|
"dependencies": {
|
|
6160
|
-
"@
|
|
6161
|
-
"@
|
|
6162
|
-
"@babel/parser": "^7.28.4",
|
|
6163
|
-
"@babel/traverse": "^7.28.4",
|
|
6164
|
-
"@babel/types": "^7.28.4",
|
|
6165
|
-
"@tanstack/devtools-client": "0.0.6",
|
|
6166
|
-
"@tanstack/devtools-event-bus": "0.4.1",
|
|
6355
|
+
"@tanstack/devtools-client": "0.0.7",
|
|
6356
|
+
"@tanstack/devtools-event-bus": "0.4.2",
|
|
6167
6357
|
"chalk": "^5.6.2",
|
|
6168
6358
|
"launch-editor": "^2.11.1",
|
|
6359
|
+
"magic-string": "^0.30.0",
|
|
6360
|
+
"oxc-parser": "^0.120.0",
|
|
6169
6361
|
"picomatch": "^4.0.3"
|
|
6170
6362
|
},
|
|
6171
6363
|
"bin": {
|
|
@@ -6182,10 +6374,33 @@
|
|
|
6182
6374
|
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
6183
6375
|
}
|
|
6184
6376
|
},
|
|
6377
|
+
"node_modules/@tanstack/devtools/node_modules/@tanstack/devtools-ui": {
|
|
6378
|
+
"version": "0.5.3",
|
|
6379
|
+
"resolved": "https://registry.npmjs.org/@tanstack/devtools-ui/-/devtools-ui-0.5.3.tgz",
|
|
6380
|
+
"integrity": "sha512-iJjwWtdXhUGpeHyyW9+3NhXhmlVFhh3v3UBNKCouykG9UFXEtneVVNXgSRpd70DeYJFmvKOY19LafKRI5/cM7A==",
|
|
6381
|
+
"dev": true,
|
|
6382
|
+
"license": "MIT",
|
|
6383
|
+
"dependencies": {
|
|
6384
|
+
"clsx": "^2.1.1",
|
|
6385
|
+
"dayjs": "^1.11.19",
|
|
6386
|
+
"goober": "^2.1.16",
|
|
6387
|
+
"solid-js": "^1.9.9"
|
|
6388
|
+
},
|
|
6389
|
+
"engines": {
|
|
6390
|
+
"node": ">=18"
|
|
6391
|
+
},
|
|
6392
|
+
"funding": {
|
|
6393
|
+
"type": "github",
|
|
6394
|
+
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6395
|
+
},
|
|
6396
|
+
"peerDependencies": {
|
|
6397
|
+
"solid-js": ">=1.9.7"
|
|
6398
|
+
}
|
|
6399
|
+
},
|
|
6185
6400
|
"node_modules/@tanstack/history": {
|
|
6186
|
-
"version": "1.
|
|
6187
|
-
"resolved": "https://registry.npmjs.org/@tanstack/history/-/history-1.
|
|
6188
|
-
"integrity": "sha512-
|
|
6401
|
+
"version": "1.162.0",
|
|
6402
|
+
"resolved": "https://registry.npmjs.org/@tanstack/history/-/history-1.162.0.tgz",
|
|
6403
|
+
"integrity": "sha512-79pf/RkhteYZTRgcR4F9kbk84P2N8rugQJswxfIqovlbRiT3yI7eBE+5QorIrZaOKktsgzRlXh1l/du/xpl4iA==",
|
|
6189
6404
|
"license": "MIT",
|
|
6190
6405
|
"engines": {
|
|
6191
6406
|
"node": ">=20.19"
|
|
@@ -6215,6 +6430,7 @@
|
|
|
6215
6430
|
"version": "0.9.0",
|
|
6216
6431
|
"resolved": "https://registry.npmjs.org/@tanstack/hotkeys-devtools/-/hotkeys-devtools-0.9.0.tgz",
|
|
6217
6432
|
"integrity": "sha512-6GHhmGbXJpWHBGCpPDBc7kHyrFJNx5+BfCpqeC8bQ1i9N8Bcy7UgkHH/1sM9lvwwWLjpH48A3yPDxhZFD1F8Iw==",
|
|
6433
|
+
"dev": true,
|
|
6218
6434
|
"license": "MIT",
|
|
6219
6435
|
"dependencies": {
|
|
6220
6436
|
"@tanstack/devtools-ui": "^0.5.1",
|
|
@@ -6256,6 +6472,7 @@
|
|
|
6256
6472
|
"version": "1.3.1",
|
|
6257
6473
|
"resolved": "https://registry.npmjs.org/@tanstack/pacer-devtools/-/pacer-devtools-1.3.1.tgz",
|
|
6258
6474
|
"integrity": "sha512-Gx9xCv2QGZo0xIjFhv74Ass5iS21aTnCIHvAtgQEaK95s9HfcNB8GJlDwYt3lHbAFxpmiH8BN04Bd6TosDMUIQ==",
|
|
6475
|
+
"dev": true,
|
|
6259
6476
|
"license": "MIT",
|
|
6260
6477
|
"dependencies": {
|
|
6261
6478
|
"@tanstack/devtools-ui": "0.5.2",
|
|
@@ -6282,6 +6499,7 @@
|
|
|
6282
6499
|
"version": "0.5.0",
|
|
6283
6500
|
"resolved": "https://registry.npmjs.org/@tanstack/devtools-utils/-/devtools-utils-0.5.0.tgz",
|
|
6284
6501
|
"integrity": "sha512-5wRNVDun+y2Gn2OrSj4S73TljY0B3YCzgfIm540tGkqmI6MTu78i57WT/3YOuEUfIyxtZiANRWEnk7fiLNFBZg==",
|
|
6502
|
+
"dev": true,
|
|
6285
6503
|
"license": "MIT",
|
|
6286
6504
|
"bin": {
|
|
6287
6505
|
"intent": "bin/intent.js"
|
|
@@ -6323,9 +6541,9 @@
|
|
|
6323
6541
|
}
|
|
6324
6542
|
},
|
|
6325
6543
|
"node_modules/@tanstack/query-core": {
|
|
6326
|
-
"version": "5.
|
|
6327
|
-
"resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.
|
|
6328
|
-
"integrity": "sha512-
|
|
6544
|
+
"version": "5.101.0",
|
|
6545
|
+
"resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.101.0.tgz",
|
|
6546
|
+
"integrity": "sha512-cQetA74EB+seWySv1TTKr828TnP0u39m6LykwDXIo84SNortpDkp30TMEjkqtYCNP9c40uT/iwl6MLiufEt0Ow==",
|
|
6329
6547
|
"license": "MIT",
|
|
6330
6548
|
"funding": {
|
|
6331
6549
|
"type": "github",
|
|
@@ -6333,9 +6551,10 @@
|
|
|
6333
6551
|
}
|
|
6334
6552
|
},
|
|
6335
6553
|
"node_modules/@tanstack/query-devtools": {
|
|
6336
|
-
"version": "5.
|
|
6337
|
-
"resolved": "https://registry.npmjs.org/@tanstack/query-devtools/-/query-devtools-5.
|
|
6338
|
-
"integrity": "sha512-
|
|
6554
|
+
"version": "5.101.0",
|
|
6555
|
+
"resolved": "https://registry.npmjs.org/@tanstack/query-devtools/-/query-devtools-5.101.0.tgz",
|
|
6556
|
+
"integrity": "sha512-MVqw17k08RQtGGLEL654+dX/btbX9p/8WjkznO//zusLTMaObxi3Q+MoFwGVkC9K3tqjn8qrrNhJevXx4fJTeQ==",
|
|
6557
|
+
"dev": true,
|
|
6339
6558
|
"license": "MIT",
|
|
6340
6559
|
"funding": {
|
|
6341
6560
|
"type": "github",
|
|
@@ -6343,12 +6562,13 @@
|
|
|
6343
6562
|
}
|
|
6344
6563
|
},
|
|
6345
6564
|
"node_modules/@tanstack/react-devtools": {
|
|
6346
|
-
"version": "0.10.
|
|
6347
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-devtools/-/react-devtools-0.10.
|
|
6348
|
-
"integrity": "sha512-
|
|
6565
|
+
"version": "0.10.7",
|
|
6566
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-devtools/-/react-devtools-0.10.7.tgz",
|
|
6567
|
+
"integrity": "sha512-AYHQH06uuK07Asqq8eASgJjpILlaFBpjnTesxx1JVHGoBl4ijwbyIlKnj3Z8+M8sEOPn5mvtV5o6mielPXKHWg==",
|
|
6568
|
+
"dev": true,
|
|
6349
6569
|
"license": "MIT",
|
|
6350
6570
|
"dependencies": {
|
|
6351
|
-
"@tanstack/devtools": "0.12.
|
|
6571
|
+
"@tanstack/devtools": "0.12.4"
|
|
6352
6572
|
},
|
|
6353
6573
|
"engines": {
|
|
6354
6574
|
"node": ">=18"
|
|
@@ -6389,6 +6609,7 @@
|
|
|
6389
6609
|
"version": "0.7.0",
|
|
6390
6610
|
"resolved": "https://registry.npmjs.org/@tanstack/react-hotkeys-devtools/-/react-hotkeys-devtools-0.7.0.tgz",
|
|
6391
6611
|
"integrity": "sha512-gA6/ZQp2NFpnl1iIJKBr+vzM8AcVr3qdU1MJIbDzXg2LJSqV2ekAiB3sI9iFeweLrSyUWzovHRmYhIkAtnDPLg==",
|
|
6612
|
+
"dev": true,
|
|
6392
6613
|
"license": "MIT",
|
|
6393
6614
|
"dependencies": {
|
|
6394
6615
|
"@tanstack/devtools-utils": "^0.4.0",
|
|
@@ -6433,6 +6654,7 @@
|
|
|
6433
6654
|
"version": "0.7.1",
|
|
6434
6655
|
"resolved": "https://registry.npmjs.org/@tanstack/react-pacer-devtools/-/react-pacer-devtools-0.7.1.tgz",
|
|
6435
6656
|
"integrity": "sha512-y1mjaZWvNVBZyWp+/rhf8LzmPqRTiKxszzTc2woFTNTNhl6CDjxZYtTxKQfYUKzeH4Qd136VjV05da/PdmLQVg==",
|
|
6657
|
+
"dev": true,
|
|
6436
6658
|
"license": "MIT",
|
|
6437
6659
|
"dependencies": {
|
|
6438
6660
|
"@tanstack/devtools-utils": "^0.5.0",
|
|
@@ -6456,6 +6678,7 @@
|
|
|
6456
6678
|
"version": "0.5.0",
|
|
6457
6679
|
"resolved": "https://registry.npmjs.org/@tanstack/devtools-utils/-/devtools-utils-0.5.0.tgz",
|
|
6458
6680
|
"integrity": "sha512-5wRNVDun+y2Gn2OrSj4S73TljY0B3YCzgfIm540tGkqmI6MTu78i57WT/3YOuEUfIyxtZiANRWEnk7fiLNFBZg==",
|
|
6681
|
+
"dev": true,
|
|
6459
6682
|
"license": "MIT",
|
|
6460
6683
|
"bin": {
|
|
6461
6684
|
"intent": "bin/intent.js"
|
|
@@ -6497,12 +6720,12 @@
|
|
|
6497
6720
|
}
|
|
6498
6721
|
},
|
|
6499
6722
|
"node_modules/@tanstack/react-query": {
|
|
6500
|
-
"version": "5.
|
|
6501
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.
|
|
6502
|
-
"integrity": "sha512-
|
|
6723
|
+
"version": "5.101.0",
|
|
6724
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.101.0.tgz",
|
|
6725
|
+
"integrity": "sha512-rLlJXSpkqfizLWgkR5+eLeIk0MvTx/meEIR7LRjxic+qxiQP8zVjq7BqQkiCMNLQBlLfuOLqqr6KO5GtrDlmSg==",
|
|
6503
6726
|
"license": "MIT",
|
|
6504
6727
|
"dependencies": {
|
|
6505
|
-
"@tanstack/query-core": "5.
|
|
6728
|
+
"@tanstack/query-core": "5.101.0"
|
|
6506
6729
|
},
|
|
6507
6730
|
"funding": {
|
|
6508
6731
|
"type": "github",
|
|
@@ -6513,31 +6736,32 @@
|
|
|
6513
6736
|
}
|
|
6514
6737
|
},
|
|
6515
6738
|
"node_modules/@tanstack/react-query-devtools": {
|
|
6516
|
-
"version": "5.
|
|
6517
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-5.
|
|
6518
|
-
"integrity": "sha512-
|
|
6739
|
+
"version": "5.101.0",
|
|
6740
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-5.101.0.tgz",
|
|
6741
|
+
"integrity": "sha512-cpZA0+WqKXwrwMfiWZEGGF6QrIWVQFbhBtxqDF5sQsAfrFf47HIE6fiPbQU3wyAUEN2+7UNqLCQe7oG6m3f93w==",
|
|
6742
|
+
"dev": true,
|
|
6519
6743
|
"license": "MIT",
|
|
6520
6744
|
"dependencies": {
|
|
6521
|
-
"@tanstack/query-devtools": "5.
|
|
6745
|
+
"@tanstack/query-devtools": "5.101.0"
|
|
6522
6746
|
},
|
|
6523
6747
|
"funding": {
|
|
6524
6748
|
"type": "github",
|
|
6525
6749
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6526
6750
|
},
|
|
6527
6751
|
"peerDependencies": {
|
|
6528
|
-
"@tanstack/react-query": "^5.
|
|
6752
|
+
"@tanstack/react-query": "^5.101.0",
|
|
6529
6753
|
"react": "^18 || ^19"
|
|
6530
6754
|
}
|
|
6531
6755
|
},
|
|
6532
6756
|
"node_modules/@tanstack/react-router": {
|
|
6533
|
-
"version": "1.
|
|
6534
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-router/-/react-router-1.
|
|
6535
|
-
"integrity": "sha512-
|
|
6757
|
+
"version": "1.170.16",
|
|
6758
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-router/-/react-router-1.170.16.tgz",
|
|
6759
|
+
"integrity": "sha512-w6eq1IJklujs1tESazaK/FxH0+H2l8vm/QPuu1cD3oRW/ubgKneQpd7b64ti/8gUyEimzimJQZDmJr6YHfP5+g==",
|
|
6536
6760
|
"license": "MIT",
|
|
6537
6761
|
"dependencies": {
|
|
6538
|
-
"@tanstack/history": "1.
|
|
6762
|
+
"@tanstack/history": "1.162.0",
|
|
6539
6763
|
"@tanstack/react-store": "^0.9.3",
|
|
6540
|
-
"@tanstack/router-core": "1.
|
|
6764
|
+
"@tanstack/router-core": "1.171.13",
|
|
6541
6765
|
"isbot": "^5.1.22"
|
|
6542
6766
|
},
|
|
6543
6767
|
"engines": {
|
|
@@ -6553,12 +6777,13 @@
|
|
|
6553
6777
|
}
|
|
6554
6778
|
},
|
|
6555
6779
|
"node_modules/@tanstack/react-router-devtools": {
|
|
6556
|
-
"version": "1.
|
|
6557
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-router-devtools/-/react-router-devtools-1.
|
|
6558
|
-
"integrity": "sha512-
|
|
6780
|
+
"version": "1.167.0",
|
|
6781
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-router-devtools/-/react-router-devtools-1.167.0.tgz",
|
|
6782
|
+
"integrity": "sha512-nGw095EG7IHx0h5NtlEmzf6vcCTaFNPWdTSuDKazajhN0ct/v/TkekJ9J6KYUCeV1a8/2ZmToc58M+0rrOyn7w==",
|
|
6783
|
+
"dev": true,
|
|
6559
6784
|
"license": "MIT",
|
|
6560
6785
|
"dependencies": {
|
|
6561
|
-
"@tanstack/router-devtools-core": "1.
|
|
6786
|
+
"@tanstack/router-devtools-core": "1.168.0"
|
|
6562
6787
|
},
|
|
6563
6788
|
"engines": {
|
|
6564
6789
|
"node": ">=20.19"
|
|
@@ -6568,8 +6793,8 @@
|
|
|
6568
6793
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6569
6794
|
},
|
|
6570
6795
|
"peerDependencies": {
|
|
6571
|
-
"@tanstack/react-router": "^1.
|
|
6572
|
-
"@tanstack/router-core": "^1.
|
|
6796
|
+
"@tanstack/react-router": "^1.170.0",
|
|
6797
|
+
"@tanstack/router-core": "^1.170.0",
|
|
6573
6798
|
"react": ">=18.0.0 || >=19.0.0",
|
|
6574
6799
|
"react-dom": ">=18.0.0 || >=19.0.0"
|
|
6575
6800
|
},
|
|
@@ -6626,12 +6851,12 @@
|
|
|
6626
6851
|
}
|
|
6627
6852
|
},
|
|
6628
6853
|
"node_modules/@tanstack/router-core": {
|
|
6629
|
-
"version": "1.
|
|
6630
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-core/-/router-core-1.
|
|
6631
|
-
"integrity": "sha512
|
|
6854
|
+
"version": "1.171.13",
|
|
6855
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-core/-/router-core-1.171.13.tgz",
|
|
6856
|
+
"integrity": "sha512-+NOwEj1kO/6IGmpHRIZHasYxYWpyBQGNIZAST9aNrk9Q3YlU9SgqVnl1pbLa9qAKfeNdXQIRve0RQb/0kyDeDA==",
|
|
6632
6857
|
"license": "MIT",
|
|
6633
6858
|
"dependencies": {
|
|
6634
|
-
"@tanstack/history": "1.
|
|
6859
|
+
"@tanstack/history": "1.162.0",
|
|
6635
6860
|
"cookie-es": "^3.0.0",
|
|
6636
6861
|
"seroval": "^1.5.4",
|
|
6637
6862
|
"seroval-plugins": "^1.5.4"
|
|
@@ -6645,9 +6870,10 @@
|
|
|
6645
6870
|
}
|
|
6646
6871
|
},
|
|
6647
6872
|
"node_modules/@tanstack/router-devtools-core": {
|
|
6648
|
-
"version": "1.
|
|
6649
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-devtools-core/-/router-devtools-core-1.
|
|
6650
|
-
"integrity": "sha512-
|
|
6873
|
+
"version": "1.168.0",
|
|
6874
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-devtools-core/-/router-devtools-core-1.168.0.tgz",
|
|
6875
|
+
"integrity": "sha512-wQoQhlBK7nlZgqzaqdYXKWNTpdHdsaREdaPhFZVH0/Ador+F+eM3/NF2i3f2LPeS0GgKraZUQXe1Q/1+KHyEYg==",
|
|
6876
|
+
"dev": true,
|
|
6651
6877
|
"license": "MIT",
|
|
6652
6878
|
"dependencies": {
|
|
6653
6879
|
"clsx": "^2.1.1",
|
|
@@ -6661,7 +6887,7 @@
|
|
|
6661
6887
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6662
6888
|
},
|
|
6663
6889
|
"peerDependencies": {
|
|
6664
|
-
"@tanstack/router-core": "^1.
|
|
6890
|
+
"@tanstack/router-core": "^1.170.0",
|
|
6665
6891
|
"csstype": "^3.0.10"
|
|
6666
6892
|
},
|
|
6667
6893
|
"peerDependenciesMeta": {
|
|
@@ -6671,19 +6897,20 @@
|
|
|
6671
6897
|
}
|
|
6672
6898
|
},
|
|
6673
6899
|
"node_modules/@tanstack/router-generator": {
|
|
6674
|
-
"version": "1.
|
|
6675
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-generator/-/router-generator-1.
|
|
6676
|
-
"integrity": "sha512-
|
|
6900
|
+
"version": "1.167.17",
|
|
6901
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-generator/-/router-generator-1.167.17.tgz",
|
|
6902
|
+
"integrity": "sha512-xtB9tB2Ws0tWR6Pi7nc3Qk9IYgoh1mQCKWjHqIl9tf6BNUpKoqniJoPAQ4+LGrK8FeZYU0o0p/qlZEyj9FAulA==",
|
|
6903
|
+
"dev": true,
|
|
6677
6904
|
"license": "MIT",
|
|
6678
6905
|
"dependencies": {
|
|
6679
6906
|
"@babel/types": "^7.28.5",
|
|
6680
|
-
"@tanstack/router-core": "1.
|
|
6681
|
-
"@tanstack/router-utils": "1.
|
|
6682
|
-
"@tanstack/virtual-file-routes": "1.
|
|
6907
|
+
"@tanstack/router-core": "1.171.13",
|
|
6908
|
+
"@tanstack/router-utils": "1.162.2",
|
|
6909
|
+
"@tanstack/virtual-file-routes": "1.162.0",
|
|
6683
6910
|
"jiti": "^2.7.0",
|
|
6684
6911
|
"magic-string": "^0.30.21",
|
|
6685
6912
|
"prettier": "^3.5.0",
|
|
6686
|
-
"zod": "^
|
|
6913
|
+
"zod": "^4.4.3"
|
|
6687
6914
|
},
|
|
6688
6915
|
"engines": {
|
|
6689
6916
|
"node": ">=20.19"
|
|
@@ -6693,34 +6920,22 @@
|
|
|
6693
6920
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6694
6921
|
}
|
|
6695
6922
|
},
|
|
6696
|
-
"node_modules/@tanstack/router-generator/node_modules/zod": {
|
|
6697
|
-
"version": "3.25.76",
|
|
6698
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
6699
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
6700
|
-
"license": "MIT",
|
|
6701
|
-
"funding": {
|
|
6702
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
6703
|
-
}
|
|
6704
|
-
},
|
|
6705
6923
|
"node_modules/@tanstack/router-plugin": {
|
|
6706
|
-
"version": "1.
|
|
6707
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-plugin/-/router-plugin-1.
|
|
6708
|
-
"integrity": "sha512-
|
|
6924
|
+
"version": "1.168.18",
|
|
6925
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-plugin/-/router-plugin-1.168.18.tgz",
|
|
6926
|
+
"integrity": "sha512-MofS28/axfnfnhOD2RSgJEaU882aX5RsAzhGz5Vc4XhAmvCjy919u9JrNs4QsTWFbTD1P7IJ8WFlFVsrg0pStg==",
|
|
6927
|
+
"dev": true,
|
|
6709
6928
|
"license": "MIT",
|
|
6710
6929
|
"dependencies": {
|
|
6711
6930
|
"@babel/core": "^7.28.5",
|
|
6712
|
-
"@babel/plugin-syntax-jsx": "^7.27.1",
|
|
6713
|
-
"@babel/plugin-syntax-typescript": "^7.27.1",
|
|
6714
6931
|
"@babel/template": "^7.27.2",
|
|
6715
|
-
"@babel/traverse": "^7.28.5",
|
|
6716
6932
|
"@babel/types": "^7.28.5",
|
|
6717
|
-
"@tanstack/router-core": "1.
|
|
6718
|
-
"@tanstack/router-generator": "1.
|
|
6719
|
-
"@tanstack/router-utils": "1.
|
|
6720
|
-
"
|
|
6721
|
-
"chokidar": "^3.6.0",
|
|
6933
|
+
"@tanstack/router-core": "1.171.13",
|
|
6934
|
+
"@tanstack/router-generator": "1.167.17",
|
|
6935
|
+
"@tanstack/router-utils": "1.162.2",
|
|
6936
|
+
"chokidar": "^5.0.0",
|
|
6722
6937
|
"unplugin": "^3.0.0",
|
|
6723
|
-
"zod": "^
|
|
6938
|
+
"zod": "^4.4.3"
|
|
6724
6939
|
},
|
|
6725
6940
|
"engines": {
|
|
6726
6941
|
"node": ">=20.19"
|
|
@@ -6731,7 +6946,7 @@
|
|
|
6731
6946
|
},
|
|
6732
6947
|
"peerDependencies": {
|
|
6733
6948
|
"@rsbuild/core": ">=1.0.2 || ^2.0.0",
|
|
6734
|
-
"@tanstack/react-router": "^1.
|
|
6949
|
+
"@tanstack/react-router": "^1.170.15",
|
|
6735
6950
|
"vite": ">=5.0.0 || >=6.0.0 || >=7.0.0 || >=8.0.0",
|
|
6736
6951
|
"vite-plugin-solid": "^2.11.10 || ^3.0.0-0",
|
|
6737
6952
|
"webpack": ">=5.92.0"
|
|
@@ -6755,69 +6970,42 @@
|
|
|
6755
6970
|
}
|
|
6756
6971
|
},
|
|
6757
6972
|
"node_modules/@tanstack/router-plugin/node_modules/chokidar": {
|
|
6758
|
-
"version": "
|
|
6759
|
-
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-
|
|
6760
|
-
"integrity": "sha512-
|
|
6973
|
+
"version": "5.0.0",
|
|
6974
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz",
|
|
6975
|
+
"integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==",
|
|
6976
|
+
"dev": true,
|
|
6761
6977
|
"license": "MIT",
|
|
6762
6978
|
"dependencies": {
|
|
6763
|
-
"
|
|
6764
|
-
"braces": "~3.0.2",
|
|
6765
|
-
"glob-parent": "~5.1.2",
|
|
6766
|
-
"is-binary-path": "~2.1.0",
|
|
6767
|
-
"is-glob": "~4.0.1",
|
|
6768
|
-
"normalize-path": "~3.0.0",
|
|
6769
|
-
"readdirp": "~3.6.0"
|
|
6979
|
+
"readdirp": "^5.0.0"
|
|
6770
6980
|
},
|
|
6771
6981
|
"engines": {
|
|
6772
|
-
"node": ">=
|
|
6982
|
+
"node": ">= 20.19.0"
|
|
6773
6983
|
},
|
|
6774
6984
|
"funding": {
|
|
6775
6985
|
"url": "https://paulmillr.com/funding/"
|
|
6776
|
-
},
|
|
6777
|
-
"optionalDependencies": {
|
|
6778
|
-
"fsevents": "~2.3.2"
|
|
6779
|
-
}
|
|
6780
|
-
},
|
|
6781
|
-
"node_modules/@tanstack/router-plugin/node_modules/picomatch": {
|
|
6782
|
-
"version": "2.3.2",
|
|
6783
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
|
|
6784
|
-
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
|
6785
|
-
"license": "MIT",
|
|
6786
|
-
"engines": {
|
|
6787
|
-
"node": ">=8.6"
|
|
6788
|
-
},
|
|
6789
|
-
"funding": {
|
|
6790
|
-
"url": "https://github.com/sponsors/jonschlinkert"
|
|
6791
6986
|
}
|
|
6792
6987
|
},
|
|
6793
6988
|
"node_modules/@tanstack/router-plugin/node_modules/readdirp": {
|
|
6794
|
-
"version": "
|
|
6795
|
-
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-
|
|
6796
|
-
"integrity": "sha512-
|
|
6989
|
+
"version": "5.0.0",
|
|
6990
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.0.0.tgz",
|
|
6991
|
+
"integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==",
|
|
6992
|
+
"dev": true,
|
|
6797
6993
|
"license": "MIT",
|
|
6798
|
-
"dependencies": {
|
|
6799
|
-
"picomatch": "^2.2.1"
|
|
6800
|
-
},
|
|
6801
6994
|
"engines": {
|
|
6802
|
-
"node": ">=
|
|
6803
|
-
}
|
|
6804
|
-
},
|
|
6805
|
-
"node_modules/@tanstack/router-plugin/node_modules/zod": {
|
|
6806
|
-
"version": "3.25.76",
|
|
6807
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
6808
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
6809
|
-
"license": "MIT",
|
|
6995
|
+
"node": ">= 20.19.0"
|
|
6996
|
+
},
|
|
6810
6997
|
"funding": {
|
|
6811
|
-
"
|
|
6998
|
+
"type": "individual",
|
|
6999
|
+
"url": "https://paulmillr.com/funding/"
|
|
6812
7000
|
}
|
|
6813
7001
|
},
|
|
6814
7002
|
"node_modules/@tanstack/router-utils": {
|
|
6815
|
-
"version": "1.
|
|
6816
|
-
"resolved": "https://registry.npmjs.org/@tanstack/router-utils/-/router-utils-1.
|
|
6817
|
-
"integrity": "sha512-
|
|
7003
|
+
"version": "1.162.2",
|
|
7004
|
+
"resolved": "https://registry.npmjs.org/@tanstack/router-utils/-/router-utils-1.162.2.tgz",
|
|
7005
|
+
"integrity": "sha512-hTWqJtqIFFdvuCl8WXNyrodp2L9zo2G37xKRrcVmVRWpAB2h+U1LuRAfS4tsFTiWOIoE/B+WDVFB8JpoEdw6jQ==",
|
|
7006
|
+
"dev": true,
|
|
6818
7007
|
"license": "MIT",
|
|
6819
7008
|
"dependencies": {
|
|
6820
|
-
"@babel/core": "^7.28.5",
|
|
6821
7009
|
"@babel/generator": "^7.28.5",
|
|
6822
7010
|
"@babel/parser": "^7.28.5",
|
|
6823
7011
|
"@babel/types": "^7.28.5",
|
|
@@ -6839,6 +7027,7 @@
|
|
|
6839
7027
|
"version": "0.11.0",
|
|
6840
7028
|
"resolved": "https://registry.npmjs.org/@tanstack/solid-store/-/solid-store-0.11.0.tgz",
|
|
6841
7029
|
"integrity": "sha512-2isL0ZnnyI1iN0V+QPrxE3OcPndohBgVlBcHZYoAOIAiU1WoWjVy0q5gb0suPu1Id0h5cKC23JnwzQTxWDZD0w==",
|
|
7030
|
+
"dev": true,
|
|
6842
7031
|
"license": "MIT",
|
|
6843
7032
|
"dependencies": {
|
|
6844
7033
|
"@tanstack/store": "0.11.0"
|
|
@@ -6862,13 +7051,11 @@
|
|
|
6862
7051
|
}
|
|
6863
7052
|
},
|
|
6864
7053
|
"node_modules/@tanstack/virtual-file-routes": {
|
|
6865
|
-
"version": "1.
|
|
6866
|
-
"resolved": "https://registry.npmjs.org/@tanstack/virtual-file-routes/-/virtual-file-routes-1.
|
|
6867
|
-
"integrity": "sha512-
|
|
7054
|
+
"version": "1.162.0",
|
|
7055
|
+
"resolved": "https://registry.npmjs.org/@tanstack/virtual-file-routes/-/virtual-file-routes-1.162.0.tgz",
|
|
7056
|
+
"integrity": "sha512-uhOeFyxLcU41HzvrxsGpiWdcMbScY1EDgbZ5K7DVRMYInbLYWAC0EA/kx9wXAoSM8q82bUG2hRl8+EAjE6XAbA==",
|
|
7057
|
+
"dev": true,
|
|
6868
7058
|
"license": "MIT",
|
|
6869
|
-
"bin": {
|
|
6870
|
-
"intent": "bin/intent.js"
|
|
6871
|
-
},
|
|
6872
7059
|
"engines": {
|
|
6873
7060
|
"node": ">=20.19"
|
|
6874
7061
|
},
|
|
@@ -6939,16 +7126,6 @@
|
|
|
6939
7126
|
"tslib": "^2.4.0"
|
|
6940
7127
|
}
|
|
6941
7128
|
},
|
|
6942
|
-
"node_modules/@types/chai": {
|
|
6943
|
-
"version": "5.2.3",
|
|
6944
|
-
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
|
|
6945
|
-
"integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
|
|
6946
|
-
"license": "MIT",
|
|
6947
|
-
"dependencies": {
|
|
6948
|
-
"@types/deep-eql": "*",
|
|
6949
|
-
"assertion-error": "^2.0.1"
|
|
6950
|
-
}
|
|
6951
|
-
},
|
|
6952
7129
|
"node_modules/@types/cli-progress": {
|
|
6953
7130
|
"version": "3.11.6",
|
|
6954
7131
|
"resolved": "https://registry.npmjs.org/@types/cli-progress/-/cli-progress-3.11.6.tgz",
|
|
@@ -6975,12 +7152,6 @@
|
|
|
6975
7152
|
"@types/ms": "*"
|
|
6976
7153
|
}
|
|
6977
7154
|
},
|
|
6978
|
-
"node_modules/@types/deep-eql": {
|
|
6979
|
-
"version": "4.0.2",
|
|
6980
|
-
"resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
|
|
6981
|
-
"integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
|
|
6982
|
-
"license": "MIT"
|
|
6983
|
-
},
|
|
6984
7155
|
"node_modules/@types/earcut": {
|
|
6985
7156
|
"version": "3.0.0",
|
|
6986
7157
|
"resolved": "https://registry.npmjs.org/@types/earcut/-/earcut-3.0.0.tgz",
|
|
@@ -7062,6 +7233,7 @@
|
|
|
7062
7233
|
"version": "25.9.1",
|
|
7063
7234
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.1.tgz",
|
|
7064
7235
|
"integrity": "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==",
|
|
7236
|
+
"devOptional": true,
|
|
7065
7237
|
"license": "MIT",
|
|
7066
7238
|
"dependencies": {
|
|
7067
7239
|
"undici-types": ">=7.24.0 <7.24.7"
|
|
@@ -7087,6 +7259,7 @@
|
|
|
7087
7259
|
"version": "19.2.3",
|
|
7088
7260
|
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
|
|
7089
7261
|
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
|
|
7262
|
+
"devOptional": true,
|
|
7090
7263
|
"license": "MIT",
|
|
7091
7264
|
"peerDependencies": {
|
|
7092
7265
|
"@types/react": "^19.2.0"
|
|
@@ -7099,21 +7272,6 @@
|
|
|
7099
7272
|
"dev": true,
|
|
7100
7273
|
"license": "MIT"
|
|
7101
7274
|
},
|
|
7102
|
-
"node_modules/@types/set-cookie-parser": {
|
|
7103
|
-
"version": "2.4.10",
|
|
7104
|
-
"resolved": "https://registry.npmjs.org/@types/set-cookie-parser/-/set-cookie-parser-2.4.10.tgz",
|
|
7105
|
-
"integrity": "sha512-GGmQVGpQWUe5qglJozEjZV/5dyxbOOZ0LHe/lqyWssB88Y4svNfst0uqBVscdDeIKl5Jy5+aPSvy7mI9tYRguw==",
|
|
7106
|
-
"license": "MIT",
|
|
7107
|
-
"dependencies": {
|
|
7108
|
-
"@types/node": "*"
|
|
7109
|
-
}
|
|
7110
|
-
},
|
|
7111
|
-
"node_modules/@types/statuses": {
|
|
7112
|
-
"version": "2.0.6",
|
|
7113
|
-
"resolved": "https://registry.npmjs.org/@types/statuses/-/statuses-2.0.6.tgz",
|
|
7114
|
-
"integrity": "sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==",
|
|
7115
|
-
"license": "MIT"
|
|
7116
|
-
},
|
|
7117
7275
|
"node_modules/@types/trusted-types": {
|
|
7118
7276
|
"version": "2.0.7",
|
|
7119
7277
|
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
|
|
@@ -7650,116 +7808,10 @@
|
|
|
7650
7808
|
}
|
|
7651
7809
|
}
|
|
7652
7810
|
},
|
|
7653
|
-
"node_modules/@vitest/expect": {
|
|
7654
|
-
"version": "4.1.5",
|
|
7655
|
-
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.5.tgz",
|
|
7656
|
-
"integrity": "sha512-PWBaRY5JoKuRnHlUHfpV/KohFylaDZTupcXN1H9vYryNLOnitSw60Mw9IAE2r67NbwwzBw/Cc/8q9BK3kIX8Kw==",
|
|
7657
|
-
"license": "MIT",
|
|
7658
|
-
"dependencies": {
|
|
7659
|
-
"@standard-schema/spec": "^1.1.0",
|
|
7660
|
-
"@types/chai": "^5.2.2",
|
|
7661
|
-
"@vitest/spy": "4.1.5",
|
|
7662
|
-
"@vitest/utils": "4.1.5",
|
|
7663
|
-
"chai": "^6.2.2",
|
|
7664
|
-
"tinyrainbow": "^3.1.0"
|
|
7665
|
-
},
|
|
7666
|
-
"funding": {
|
|
7667
|
-
"url": "https://opencollective.com/vitest"
|
|
7668
|
-
}
|
|
7669
|
-
},
|
|
7670
|
-
"node_modules/@vitest/mocker": {
|
|
7671
|
-
"version": "4.1.5",
|
|
7672
|
-
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.5.tgz",
|
|
7673
|
-
"integrity": "sha512-/x2EmFC4mT4NNzqvC3fmesuV97w5FC903KPmey4gsnJiMQ3Be1IlDKVaDaG8iqaLFHqJ2FVEkxZk5VmeLjIItw==",
|
|
7674
|
-
"license": "MIT",
|
|
7675
|
-
"dependencies": {
|
|
7676
|
-
"@vitest/spy": "4.1.5",
|
|
7677
|
-
"estree-walker": "^3.0.3",
|
|
7678
|
-
"magic-string": "^0.30.21"
|
|
7679
|
-
},
|
|
7680
|
-
"funding": {
|
|
7681
|
-
"url": "https://opencollective.com/vitest"
|
|
7682
|
-
},
|
|
7683
|
-
"peerDependencies": {
|
|
7684
|
-
"msw": "^2.4.9",
|
|
7685
|
-
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
7686
|
-
},
|
|
7687
|
-
"peerDependenciesMeta": {
|
|
7688
|
-
"msw": {
|
|
7689
|
-
"optional": true
|
|
7690
|
-
},
|
|
7691
|
-
"vite": {
|
|
7692
|
-
"optional": true
|
|
7693
|
-
}
|
|
7694
|
-
}
|
|
7695
|
-
},
|
|
7696
|
-
"node_modules/@vitest/pretty-format": {
|
|
7697
|
-
"version": "4.1.5",
|
|
7698
|
-
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.5.tgz",
|
|
7699
|
-
"integrity": "sha512-7I3q6l5qr03dVfMX2wCo9FxwSJbPdwKjy2uu/YPpU3wfHvIL4QHwVRp57OfGrDFeUJ8/8QdfBKIV12FTtLn00g==",
|
|
7700
|
-
"license": "MIT",
|
|
7701
|
-
"dependencies": {
|
|
7702
|
-
"tinyrainbow": "^3.1.0"
|
|
7703
|
-
},
|
|
7704
|
-
"funding": {
|
|
7705
|
-
"url": "https://opencollective.com/vitest"
|
|
7706
|
-
}
|
|
7707
|
-
},
|
|
7708
|
-
"node_modules/@vitest/runner": {
|
|
7709
|
-
"version": "4.1.5",
|
|
7710
|
-
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.5.tgz",
|
|
7711
|
-
"integrity": "sha512-2D+o7Pr82IEO46YPpoA/YU0neeyr6FTerQb5Ro7BUnBuv6NQtT/kmVnczngiMEBhzgqz2UZYl5gArejsyERDSQ==",
|
|
7712
|
-
"license": "MIT",
|
|
7713
|
-
"dependencies": {
|
|
7714
|
-
"@vitest/utils": "4.1.5",
|
|
7715
|
-
"pathe": "^2.0.3"
|
|
7716
|
-
},
|
|
7717
|
-
"funding": {
|
|
7718
|
-
"url": "https://opencollective.com/vitest"
|
|
7719
|
-
}
|
|
7720
|
-
},
|
|
7721
|
-
"node_modules/@vitest/snapshot": {
|
|
7722
|
-
"version": "4.1.5",
|
|
7723
|
-
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.5.tgz",
|
|
7724
|
-
"integrity": "sha512-zypXEt4KH/XgKGPUz4eC2AvErYx0My5hfL8oDb1HzGFpEk1P62bxSohdyOmvz+d9UJwanI68MKwr2EquOaOgMQ==",
|
|
7725
|
-
"license": "MIT",
|
|
7726
|
-
"dependencies": {
|
|
7727
|
-
"@vitest/pretty-format": "4.1.5",
|
|
7728
|
-
"@vitest/utils": "4.1.5",
|
|
7729
|
-
"magic-string": "^0.30.21",
|
|
7730
|
-
"pathe": "^2.0.3"
|
|
7731
|
-
},
|
|
7732
|
-
"funding": {
|
|
7733
|
-
"url": "https://opencollective.com/vitest"
|
|
7734
|
-
}
|
|
7735
|
-
},
|
|
7736
|
-
"node_modules/@vitest/spy": {
|
|
7737
|
-
"version": "4.1.5",
|
|
7738
|
-
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.5.tgz",
|
|
7739
|
-
"integrity": "sha512-2lNOsh6+R2Idnf1TCZqSwYlKN2E/iDlD8sgU59kYVl+OMDmvldO1VDk39smRfpUNwYpNRVn3w4YfuC7KfbBnkQ==",
|
|
7740
|
-
"license": "MIT",
|
|
7741
|
-
"funding": {
|
|
7742
|
-
"url": "https://opencollective.com/vitest"
|
|
7743
|
-
}
|
|
7744
|
-
},
|
|
7745
|
-
"node_modules/@vitest/utils": {
|
|
7746
|
-
"version": "4.1.5",
|
|
7747
|
-
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.5.tgz",
|
|
7748
|
-
"integrity": "sha512-76wdkrmfXfqGjueGgnb45ITPyUi1ycZ4IHgC2bhPDUfWHklY/q3MdLOAB+TF1e6xfl8NxNY0ZYaPCFNWSsw3Ug==",
|
|
7749
|
-
"license": "MIT",
|
|
7750
|
-
"dependencies": {
|
|
7751
|
-
"@vitest/pretty-format": "4.1.5",
|
|
7752
|
-
"convert-source-map": "^2.0.0",
|
|
7753
|
-
"tinyrainbow": "^3.1.0"
|
|
7754
|
-
},
|
|
7755
|
-
"funding": {
|
|
7756
|
-
"url": "https://opencollective.com/vitest"
|
|
7757
|
-
}
|
|
7758
|
-
},
|
|
7759
7811
|
"node_modules/@webgpu/types": {
|
|
7760
|
-
"version": "0.1.
|
|
7761
|
-
"resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.1.
|
|
7762
|
-
"integrity": "sha512-
|
|
7812
|
+
"version": "0.1.70",
|
|
7813
|
+
"resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.1.70.tgz",
|
|
7814
|
+
"integrity": "sha512-LFiNHHKMvmAEvwVew3JLJmTdShhbdwRFSImUshGhE2mGE8ybQzIo63l5uRp+YKnNx+8Qno8Kf6gN+DKMreIJCA==",
|
|
7763
7815
|
"license": "BSD-3-Clause",
|
|
7764
7816
|
"peer": true
|
|
7765
7817
|
},
|
|
@@ -7857,6 +7909,7 @@
|
|
|
7857
7909
|
"version": "4.3.0",
|
|
7858
7910
|
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
7859
7911
|
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
7912
|
+
"dev": true,
|
|
7860
7913
|
"license": "MIT",
|
|
7861
7914
|
"dependencies": {
|
|
7862
7915
|
"color-convert": "^2.0.1"
|
|
@@ -7869,9 +7922,10 @@
|
|
|
7869
7922
|
}
|
|
7870
7923
|
},
|
|
7871
7924
|
"node_modules/ansis": {
|
|
7872
|
-
"version": "4.
|
|
7873
|
-
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.
|
|
7874
|
-
"integrity": "sha512-
|
|
7925
|
+
"version": "4.3.1",
|
|
7926
|
+
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.3.1.tgz",
|
|
7927
|
+
"integrity": "sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA==",
|
|
7928
|
+
"dev": true,
|
|
7875
7929
|
"license": "ISC",
|
|
7876
7930
|
"engines": {
|
|
7877
7931
|
"node": ">=14"
|
|
@@ -7884,31 +7938,6 @@
|
|
|
7884
7938
|
"dev": true,
|
|
7885
7939
|
"license": "MIT"
|
|
7886
7940
|
},
|
|
7887
|
-
"node_modules/anymatch": {
|
|
7888
|
-
"version": "3.1.3",
|
|
7889
|
-
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
|
7890
|
-
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
|
7891
|
-
"license": "ISC",
|
|
7892
|
-
"dependencies": {
|
|
7893
|
-
"normalize-path": "^3.0.0",
|
|
7894
|
-
"picomatch": "^2.0.4"
|
|
7895
|
-
},
|
|
7896
|
-
"engines": {
|
|
7897
|
-
"node": ">= 8"
|
|
7898
|
-
}
|
|
7899
|
-
},
|
|
7900
|
-
"node_modules/anymatch/node_modules/picomatch": {
|
|
7901
|
-
"version": "2.3.2",
|
|
7902
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
|
|
7903
|
-
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
|
7904
|
-
"license": "MIT",
|
|
7905
|
-
"engines": {
|
|
7906
|
-
"node": ">=8.6"
|
|
7907
|
-
},
|
|
7908
|
-
"funding": {
|
|
7909
|
-
"url": "https://github.com/sponsors/jonschlinkert"
|
|
7910
|
-
}
|
|
7911
|
-
},
|
|
7912
7941
|
"node_modules/arabic-persian-reshaper": {
|
|
7913
7942
|
"version": "1.0.1",
|
|
7914
7943
|
"resolved": "https://registry.npmjs.org/arabic-persian-reshaper/-/arabic-persian-reshaper-1.0.1.tgz",
|
|
@@ -7973,15 +8002,6 @@
|
|
|
7973
8002
|
"url": "https://github.com/sponsors/ljharb"
|
|
7974
8003
|
}
|
|
7975
8004
|
},
|
|
7976
|
-
"node_modules/assertion-error": {
|
|
7977
|
-
"version": "2.0.1",
|
|
7978
|
-
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
|
|
7979
|
-
"integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
|
|
7980
|
-
"license": "MIT",
|
|
7981
|
-
"engines": {
|
|
7982
|
-
"node": ">=12"
|
|
7983
|
-
}
|
|
7984
|
-
},
|
|
7985
8005
|
"node_modules/ast-types": {
|
|
7986
8006
|
"version": "0.16.1",
|
|
7987
8007
|
"resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
|
|
@@ -8064,6 +8084,7 @@
|
|
|
8064
8084
|
"version": "1.0.12",
|
|
8065
8085
|
"resolved": "https://registry.npmjs.org/babel-dead-code-elimination/-/babel-dead-code-elimination-1.0.12.tgz",
|
|
8066
8086
|
"integrity": "sha512-GERT7L2TiYcYDtYk1IpD+ASAYXjKbLTDPhBtYj7X1NuRMDTMtAx9kyBenub1Ev41lo91OHCKdmP+egTDmfQ7Ig==",
|
|
8087
|
+
"dev": true,
|
|
8067
8088
|
"license": "MIT",
|
|
8068
8089
|
"dependencies": {
|
|
8069
8090
|
"@babel/core": "^7.23.7",
|
|
@@ -8164,18 +8185,6 @@
|
|
|
8164
8185
|
"node": ">=6.0.0"
|
|
8165
8186
|
}
|
|
8166
8187
|
},
|
|
8167
|
-
"node_modules/binary-extensions": {
|
|
8168
|
-
"version": "2.3.0",
|
|
8169
|
-
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
8170
|
-
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
|
8171
|
-
"license": "MIT",
|
|
8172
|
-
"engines": {
|
|
8173
|
-
"node": ">=8"
|
|
8174
|
-
},
|
|
8175
|
-
"funding": {
|
|
8176
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
8177
|
-
}
|
|
8178
|
-
},
|
|
8179
8188
|
"node_modules/bmp-ts": {
|
|
8180
8189
|
"version": "1.0.9",
|
|
8181
8190
|
"resolved": "https://registry.npmjs.org/bmp-ts/-/bmp-ts-1.0.9.tgz",
|
|
@@ -8410,15 +8419,6 @@
|
|
|
8410
8419
|
"url": "https://github.com/sponsors/wooorm"
|
|
8411
8420
|
}
|
|
8412
8421
|
},
|
|
8413
|
-
"node_modules/chai": {
|
|
8414
|
-
"version": "6.2.2",
|
|
8415
|
-
"resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz",
|
|
8416
|
-
"integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==",
|
|
8417
|
-
"license": "MIT",
|
|
8418
|
-
"engines": {
|
|
8419
|
-
"node": ">=18"
|
|
8420
|
-
}
|
|
8421
|
-
},
|
|
8422
8422
|
"node_modules/chalk": {
|
|
8423
8423
|
"version": "5.6.2",
|
|
8424
8424
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
|
|
@@ -8584,19 +8584,11 @@
|
|
|
8584
8584
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
8585
8585
|
}
|
|
8586
8586
|
},
|
|
8587
|
-
"node_modules/cli-width": {
|
|
8588
|
-
"version": "4.1.0",
|
|
8589
|
-
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
8590
|
-
"integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
|
|
8591
|
-
"license": "ISC",
|
|
8592
|
-
"engines": {
|
|
8593
|
-
"node": ">= 12"
|
|
8594
|
-
}
|
|
8595
|
-
},
|
|
8596
8587
|
"node_modules/cliui": {
|
|
8597
8588
|
"version": "8.0.1",
|
|
8598
8589
|
"resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
|
|
8599
8590
|
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
|
|
8591
|
+
"dev": true,
|
|
8600
8592
|
"license": "ISC",
|
|
8601
8593
|
"dependencies": {
|
|
8602
8594
|
"string-width": "^4.2.0",
|
|
@@ -8611,6 +8603,7 @@
|
|
|
8611
8603
|
"version": "5.0.1",
|
|
8612
8604
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
8613
8605
|
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
8606
|
+
"dev": true,
|
|
8614
8607
|
"license": "MIT",
|
|
8615
8608
|
"engines": {
|
|
8616
8609
|
"node": ">=8"
|
|
@@ -8620,12 +8613,14 @@
|
|
|
8620
8613
|
"version": "8.0.0",
|
|
8621
8614
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
8622
8615
|
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
8616
|
+
"dev": true,
|
|
8623
8617
|
"license": "MIT"
|
|
8624
8618
|
},
|
|
8625
8619
|
"node_modules/cliui/node_modules/string-width": {
|
|
8626
8620
|
"version": "4.2.3",
|
|
8627
8621
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
8628
8622
|
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
8623
|
+
"dev": true,
|
|
8629
8624
|
"license": "MIT",
|
|
8630
8625
|
"dependencies": {
|
|
8631
8626
|
"emoji-regex": "^8.0.0",
|
|
@@ -8640,6 +8635,7 @@
|
|
|
8640
8635
|
"version": "6.0.1",
|
|
8641
8636
|
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
8642
8637
|
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
8638
|
+
"dev": true,
|
|
8643
8639
|
"license": "MIT",
|
|
8644
8640
|
"dependencies": {
|
|
8645
8641
|
"ansi-regex": "^5.0.1"
|
|
@@ -8691,6 +8687,7 @@
|
|
|
8691
8687
|
"version": "2.0.1",
|
|
8692
8688
|
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
8693
8689
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
8690
|
+
"dev": true,
|
|
8694
8691
|
"license": "MIT",
|
|
8695
8692
|
"dependencies": {
|
|
8696
8693
|
"color-name": "~1.1.4"
|
|
@@ -8703,6 +8700,7 @@
|
|
|
8703
8700
|
"version": "1.1.4",
|
|
8704
8701
|
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
8705
8702
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
8703
|
+
"dev": true,
|
|
8706
8704
|
"license": "MIT"
|
|
8707
8705
|
},
|
|
8708
8706
|
"node_modules/color-string": {
|
|
@@ -9017,6 +9015,7 @@
|
|
|
9017
9015
|
"version": "1.11.20",
|
|
9018
9016
|
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.20.tgz",
|
|
9019
9017
|
"integrity": "sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==",
|
|
9018
|
+
"dev": true,
|
|
9020
9019
|
"license": "MIT"
|
|
9021
9020
|
},
|
|
9022
9021
|
"node_modules/debug": {
|
|
@@ -9551,12 +9550,6 @@
|
|
|
9551
9550
|
"url": "https://github.com/sponsors/ljharb"
|
|
9552
9551
|
}
|
|
9553
9552
|
},
|
|
9554
|
-
"node_modules/es-module-lexer": {
|
|
9555
|
-
"version": "2.1.0",
|
|
9556
|
-
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz",
|
|
9557
|
-
"integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==",
|
|
9558
|
-
"license": "MIT"
|
|
9559
|
-
},
|
|
9560
9553
|
"node_modules/es-object-atoms": {
|
|
9561
9554
|
"version": "1.1.1",
|
|
9562
9555
|
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
@@ -9653,15 +9646,6 @@
|
|
|
9653
9646
|
"url": "https://opencollective.com/unified"
|
|
9654
9647
|
}
|
|
9655
9648
|
},
|
|
9656
|
-
"node_modules/estree-walker": {
|
|
9657
|
-
"version": "3.0.3",
|
|
9658
|
-
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
|
|
9659
|
-
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
|
|
9660
|
-
"license": "MIT",
|
|
9661
|
-
"dependencies": {
|
|
9662
|
-
"@types/estree": "^1.0.0"
|
|
9663
|
-
}
|
|
9664
|
-
},
|
|
9665
9649
|
"node_modules/esutils": {
|
|
9666
9650
|
"version": "2.0.3",
|
|
9667
9651
|
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
|
@@ -9749,19 +9733,10 @@
|
|
|
9749
9733
|
}
|
|
9750
9734
|
},
|
|
9751
9735
|
"node_modules/exif-parser": {
|
|
9752
|
-
"version": "0.1.12",
|
|
9753
|
-
"resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz",
|
|
9754
|
-
"integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==",
|
|
9755
|
-
"dev": true
|
|
9756
|
-
},
|
|
9757
|
-
"node_modules/expect-type": {
|
|
9758
|
-
"version": "1.3.0",
|
|
9759
|
-
"resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz",
|
|
9760
|
-
"integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==",
|
|
9761
|
-
"license": "Apache-2.0",
|
|
9762
|
-
"engines": {
|
|
9763
|
-
"node": ">=12.0.0"
|
|
9764
|
-
}
|
|
9736
|
+
"version": "0.1.12",
|
|
9737
|
+
"resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz",
|
|
9738
|
+
"integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==",
|
|
9739
|
+
"dev": true
|
|
9765
9740
|
},
|
|
9766
9741
|
"node_modules/express": {
|
|
9767
9742
|
"version": "5.2.1",
|
|
@@ -9868,21 +9843,6 @@
|
|
|
9868
9843
|
"dev": true,
|
|
9869
9844
|
"license": "MIT"
|
|
9870
9845
|
},
|
|
9871
|
-
"node_modules/fast-string-truncated-width": {
|
|
9872
|
-
"version": "3.0.3",
|
|
9873
|
-
"resolved": "https://registry.npmjs.org/fast-string-truncated-width/-/fast-string-truncated-width-3.0.3.tgz",
|
|
9874
|
-
"integrity": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==",
|
|
9875
|
-
"license": "MIT"
|
|
9876
|
-
},
|
|
9877
|
-
"node_modules/fast-string-width": {
|
|
9878
|
-
"version": "3.0.2",
|
|
9879
|
-
"resolved": "https://registry.npmjs.org/fast-string-width/-/fast-string-width-3.0.2.tgz",
|
|
9880
|
-
"integrity": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==",
|
|
9881
|
-
"license": "MIT",
|
|
9882
|
-
"dependencies": {
|
|
9883
|
-
"fast-string-truncated-width": "^3.0.2"
|
|
9884
|
-
}
|
|
9885
|
-
},
|
|
9886
9846
|
"node_modules/fast-uri": {
|
|
9887
9847
|
"version": "3.1.2",
|
|
9888
9848
|
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
|
|
@@ -9899,15 +9859,6 @@
|
|
|
9899
9859
|
],
|
|
9900
9860
|
"license": "BSD-3-Clause"
|
|
9901
9861
|
},
|
|
9902
|
-
"node_modules/fast-wrap-ansi": {
|
|
9903
|
-
"version": "0.2.0",
|
|
9904
|
-
"resolved": "https://registry.npmjs.org/fast-wrap-ansi/-/fast-wrap-ansi-0.2.0.tgz",
|
|
9905
|
-
"integrity": "sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==",
|
|
9906
|
-
"license": "MIT",
|
|
9907
|
-
"dependencies": {
|
|
9908
|
-
"fast-string-width": "^3.0.2"
|
|
9909
|
-
}
|
|
9910
|
-
},
|
|
9911
9862
|
"node_modules/fastq": {
|
|
9912
9863
|
"version": "1.20.1",
|
|
9913
9864
|
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
|
|
@@ -10285,6 +10236,7 @@
|
|
|
10285
10236
|
"version": "2.0.5",
|
|
10286
10237
|
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
|
10287
10238
|
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
|
|
10239
|
+
"dev": true,
|
|
10288
10240
|
"license": "ISC",
|
|
10289
10241
|
"engines": {
|
|
10290
10242
|
"node": "6.* || 8.* || >= 10.*"
|
|
@@ -10532,6 +10484,7 @@
|
|
|
10532
10484
|
"version": "2.1.19",
|
|
10533
10485
|
"resolved": "https://registry.npmjs.org/goober/-/goober-2.1.19.tgz",
|
|
10534
10486
|
"integrity": "sha512-U7veizMqxyKlM58+Z5j2ngJBH/r9siDmxpvNxSw0PylF6WQvrASJEZrxh1hidRBJc2jqoBVSyOban5u8m+6Rxg==",
|
|
10487
|
+
"dev": true,
|
|
10535
10488
|
"license": "MIT",
|
|
10536
10489
|
"peerDependencies": {
|
|
10537
10490
|
"csstype": "^3.0.10"
|
|
@@ -11013,15 +10966,6 @@
|
|
|
11013
10966
|
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
11014
10967
|
"license": "ISC"
|
|
11015
10968
|
},
|
|
11016
|
-
"node_modules/graphql": {
|
|
11017
|
-
"version": "16.14.0",
|
|
11018
|
-
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.14.0.tgz",
|
|
11019
|
-
"integrity": "sha512-BBvQ/406p+4CZbTpCbVPSxfzrZrbnuWSP1ELYgyS6B+hNeKzgrdB4JczCa5VZUBQrDa9hUngm0KnexY6pJRN5Q==",
|
|
11020
|
-
"license": "MIT",
|
|
11021
|
-
"engines": {
|
|
11022
|
-
"node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
|
|
11023
|
-
}
|
|
11024
|
-
},
|
|
11025
10969
|
"node_modules/handlebars": {
|
|
11026
10970
|
"version": "4.7.9",
|
|
11027
10971
|
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.9.tgz",
|
|
@@ -11260,16 +11204,6 @@
|
|
|
11260
11204
|
"url": "https://opencollective.com/unified"
|
|
11261
11205
|
}
|
|
11262
11206
|
},
|
|
11263
|
-
"node_modules/headers-polyfill": {
|
|
11264
|
-
"version": "5.0.1",
|
|
11265
|
-
"resolved": "https://registry.npmjs.org/headers-polyfill/-/headers-polyfill-5.0.1.tgz",
|
|
11266
|
-
"integrity": "sha512-1TJ6Fih/b8h5TIcv+1+Hw0PDQWJTKDKzFZzcKOiW1wJza3XoAQlkCuXLbymPYB8+ZQyw8mHvdw560e8zVFIWyA==",
|
|
11267
|
-
"license": "MIT",
|
|
11268
|
-
"dependencies": {
|
|
11269
|
-
"@types/set-cookie-parser": "^2.4.10",
|
|
11270
|
-
"set-cookie-parser": "^3.0.1"
|
|
11271
|
-
}
|
|
11272
|
-
},
|
|
11273
11207
|
"node_modules/hono": {
|
|
11274
11208
|
"version": "4.12.18",
|
|
11275
11209
|
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.18.tgz",
|
|
@@ -11644,18 +11578,6 @@
|
|
|
11644
11578
|
"url": "https://github.com/sponsors/ljharb"
|
|
11645
11579
|
}
|
|
11646
11580
|
},
|
|
11647
|
-
"node_modules/is-binary-path": {
|
|
11648
|
-
"version": "2.1.0",
|
|
11649
|
-
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
|
11650
|
-
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
|
11651
|
-
"license": "MIT",
|
|
11652
|
-
"dependencies": {
|
|
11653
|
-
"binary-extensions": "^2.0.0"
|
|
11654
|
-
},
|
|
11655
|
-
"engines": {
|
|
11656
|
-
"node": ">=8"
|
|
11657
|
-
}
|
|
11658
|
-
},
|
|
11659
11581
|
"node_modules/is-boolean-object": {
|
|
11660
11582
|
"version": "1.2.2",
|
|
11661
11583
|
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
|
|
@@ -11791,6 +11713,7 @@
|
|
|
11791
11713
|
"version": "3.0.0",
|
|
11792
11714
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
11793
11715
|
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
11716
|
+
"dev": true,
|
|
11794
11717
|
"license": "MIT",
|
|
11795
11718
|
"engines": {
|
|
11796
11719
|
"node": ">=8"
|
|
@@ -11923,12 +11846,6 @@
|
|
|
11923
11846
|
"url": "https://github.com/sponsors/ljharb"
|
|
11924
11847
|
}
|
|
11925
11848
|
},
|
|
11926
|
-
"node_modules/is-node-process": {
|
|
11927
|
-
"version": "1.2.0",
|
|
11928
|
-
"resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz",
|
|
11929
|
-
"integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==",
|
|
11930
|
-
"license": "MIT"
|
|
11931
|
-
},
|
|
11932
11849
|
"node_modules/is-number": {
|
|
11933
11850
|
"version": "7.0.0",
|
|
11934
11851
|
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
@@ -12784,9 +12701,9 @@
|
|
|
12784
12701
|
}
|
|
12785
12702
|
},
|
|
12786
12703
|
"node_modules/lucide-react": {
|
|
12787
|
-
"version": "1.
|
|
12788
|
-
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.
|
|
12789
|
-
"integrity": "sha512-
|
|
12704
|
+
"version": "1.21.0",
|
|
12705
|
+
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.21.0.tgz",
|
|
12706
|
+
"integrity": "sha512-reEZMXq8Qdd5jg5XYkQ5TR1fB/GiQ7ih4vcrthYDtgjSDwh0i6/YLiGjsWsIwgN49gpAnd4J2elSNzncMEEUUQ==",
|
|
12790
12707
|
"license": "ISC",
|
|
12791
12708
|
"peerDependencies": {
|
|
12792
12709
|
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
@@ -12825,6 +12742,7 @@
|
|
|
12825
12742
|
"version": "8.3.0",
|
|
12826
12743
|
"resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-8.3.0.tgz",
|
|
12827
12744
|
"integrity": "sha512-8Py1GbZi5zsclYSFcPAH4H5xfTbeD0bOREA7qP/t8bW4MbOSlPl8sbqHOedEV7O+Bxyvxm6xs/v6BXJGe+JDNA==",
|
|
12745
|
+
"dev": true,
|
|
12828
12746
|
"license": "MIT",
|
|
12829
12747
|
"dependencies": {
|
|
12830
12748
|
"@babel/runtime": "^7.23.8",
|
|
@@ -13895,72 +13813,6 @@
|
|
|
13895
13813
|
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
13896
13814
|
"license": "MIT"
|
|
13897
13815
|
},
|
|
13898
|
-
"node_modules/msw": {
|
|
13899
|
-
"version": "2.14.5",
|
|
13900
|
-
"resolved": "https://registry.npmjs.org/msw/-/msw-2.14.5.tgz",
|
|
13901
|
-
"integrity": "sha512-X6G05oX4x0e+CNI55KMdhMmwHCBKf2iwazGr+iwsdoJ94JA1ED7wSXb6V+lLPdqFkmIlPiGYvayqnaNcOzobDA==",
|
|
13902
|
-
"hasInstallScript": true,
|
|
13903
|
-
"license": "MIT",
|
|
13904
|
-
"dependencies": {
|
|
13905
|
-
"@inquirer/confirm": "^6.0.11",
|
|
13906
|
-
"@mswjs/interceptors": "^0.41.3",
|
|
13907
|
-
"@open-draft/deferred-promise": "^3.0.0",
|
|
13908
|
-
"@types/statuses": "^2.0.6",
|
|
13909
|
-
"cookie": "^1.1.1",
|
|
13910
|
-
"graphql": "^16.13.2",
|
|
13911
|
-
"headers-polyfill": "^5.0.1",
|
|
13912
|
-
"is-node-process": "^1.2.0",
|
|
13913
|
-
"outvariant": "^1.4.3",
|
|
13914
|
-
"path-to-regexp": "^6.3.0",
|
|
13915
|
-
"picocolors": "^1.1.1",
|
|
13916
|
-
"rettime": "^0.11.11",
|
|
13917
|
-
"statuses": "^2.0.2",
|
|
13918
|
-
"strict-event-emitter": "^0.5.1",
|
|
13919
|
-
"tough-cookie": "^6.0.1",
|
|
13920
|
-
"type-fest": "^5.5.0",
|
|
13921
|
-
"until-async": "^3.0.2",
|
|
13922
|
-
"yargs": "^17.7.2"
|
|
13923
|
-
},
|
|
13924
|
-
"bin": {
|
|
13925
|
-
"msw": "cli/index.js"
|
|
13926
|
-
},
|
|
13927
|
-
"engines": {
|
|
13928
|
-
"node": ">=18"
|
|
13929
|
-
},
|
|
13930
|
-
"funding": {
|
|
13931
|
-
"url": "https://github.com/sponsors/mswjs"
|
|
13932
|
-
},
|
|
13933
|
-
"peerDependencies": {
|
|
13934
|
-
"typescript": ">= 4.8.x"
|
|
13935
|
-
},
|
|
13936
|
-
"peerDependenciesMeta": {
|
|
13937
|
-
"typescript": {
|
|
13938
|
-
"optional": true
|
|
13939
|
-
}
|
|
13940
|
-
}
|
|
13941
|
-
},
|
|
13942
|
-
"node_modules/msw/node_modules/cookie": {
|
|
13943
|
-
"version": "1.1.1",
|
|
13944
|
-
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
|
|
13945
|
-
"integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
|
|
13946
|
-
"license": "MIT",
|
|
13947
|
-
"engines": {
|
|
13948
|
-
"node": ">=18"
|
|
13949
|
-
},
|
|
13950
|
-
"funding": {
|
|
13951
|
-
"type": "opencollective",
|
|
13952
|
-
"url": "https://opencollective.com/express"
|
|
13953
|
-
}
|
|
13954
|
-
},
|
|
13955
|
-
"node_modules/mute-stream": {
|
|
13956
|
-
"version": "3.0.0",
|
|
13957
|
-
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-3.0.0.tgz",
|
|
13958
|
-
"integrity": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==",
|
|
13959
|
-
"license": "ISC",
|
|
13960
|
-
"engines": {
|
|
13961
|
-
"node": "^20.17.0 || >=22.9.0"
|
|
13962
|
-
}
|
|
13963
|
-
},
|
|
13964
13816
|
"node_modules/nan": {
|
|
13965
13817
|
"version": "2.26.2",
|
|
13966
13818
|
"resolved": "https://registry.npmjs.org/nan/-/nan-2.26.2.tgz",
|
|
@@ -14057,15 +13909,6 @@
|
|
|
14057
13909
|
"integrity": "sha512-3qT/88Y3FbH/Kx4szpQQ4HzUbVrHPKTLVpVocKiLfoYvw9XSGOX2FmD2d6DrXbVYyAQTF2HeF6My8jmzx7/CRw==",
|
|
14058
13910
|
"license": "MIT"
|
|
14059
13911
|
},
|
|
14060
|
-
"node_modules/normalize-path": {
|
|
14061
|
-
"version": "3.0.0",
|
|
14062
|
-
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
14063
|
-
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
14064
|
-
"license": "MIT",
|
|
14065
|
-
"engines": {
|
|
14066
|
-
"node": ">=0.10.0"
|
|
14067
|
-
}
|
|
14068
|
-
},
|
|
14069
13912
|
"node_modules/npm-run-path": {
|
|
14070
13913
|
"version": "6.0.0",
|
|
14071
13914
|
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz",
|
|
@@ -14194,16 +14037,6 @@
|
|
|
14194
14037
|
"url": "https://github.com/sponsors/ljharb"
|
|
14195
14038
|
}
|
|
14196
14039
|
},
|
|
14197
|
-
"node_modules/obug": {
|
|
14198
|
-
"version": "2.1.1",
|
|
14199
|
-
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz",
|
|
14200
|
-
"integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==",
|
|
14201
|
-
"funding": [
|
|
14202
|
-
"https://github.com/sponsors/sxzz",
|
|
14203
|
-
"https://opencollective.com/debug"
|
|
14204
|
-
],
|
|
14205
|
-
"license": "MIT"
|
|
14206
|
-
},
|
|
14207
14040
|
"node_modules/omggif": {
|
|
14208
14041
|
"version": "1.0.10",
|
|
14209
14042
|
"resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz",
|
|
@@ -14318,12 +14151,6 @@
|
|
|
14318
14151
|
"otf2svg": "lib/index.js"
|
|
14319
14152
|
}
|
|
14320
14153
|
},
|
|
14321
|
-
"node_modules/outvariant": {
|
|
14322
|
-
"version": "1.4.3",
|
|
14323
|
-
"resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz",
|
|
14324
|
-
"integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==",
|
|
14325
|
-
"license": "MIT"
|
|
14326
|
-
},
|
|
14327
14154
|
"node_modules/own-keys": {
|
|
14328
14155
|
"version": "1.0.1",
|
|
14329
14156
|
"resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
|
|
@@ -14342,6 +14169,54 @@
|
|
|
14342
14169
|
"url": "https://github.com/sponsors/ljharb"
|
|
14343
14170
|
}
|
|
14344
14171
|
},
|
|
14172
|
+
"node_modules/oxc-parser": {
|
|
14173
|
+
"version": "0.120.0",
|
|
14174
|
+
"resolved": "https://registry.npmjs.org/oxc-parser/-/oxc-parser-0.120.0.tgz",
|
|
14175
|
+
"integrity": "sha512-WyPWZlcIm+Fkte63FGfgFB8mAAk33aH9h5N9lphXVOHSXEBFFsmYdOBedVKly363aWABjZdaj/m9lBfEY4wt+w==",
|
|
14176
|
+
"dev": true,
|
|
14177
|
+
"license": "MIT",
|
|
14178
|
+
"dependencies": {
|
|
14179
|
+
"@oxc-project/types": "^0.120.0"
|
|
14180
|
+
},
|
|
14181
|
+
"engines": {
|
|
14182
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
14183
|
+
},
|
|
14184
|
+
"funding": {
|
|
14185
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
14186
|
+
},
|
|
14187
|
+
"optionalDependencies": {
|
|
14188
|
+
"@oxc-parser/binding-android-arm-eabi": "0.120.0",
|
|
14189
|
+
"@oxc-parser/binding-android-arm64": "0.120.0",
|
|
14190
|
+
"@oxc-parser/binding-darwin-arm64": "0.120.0",
|
|
14191
|
+
"@oxc-parser/binding-darwin-x64": "0.120.0",
|
|
14192
|
+
"@oxc-parser/binding-freebsd-x64": "0.120.0",
|
|
14193
|
+
"@oxc-parser/binding-linux-arm-gnueabihf": "0.120.0",
|
|
14194
|
+
"@oxc-parser/binding-linux-arm-musleabihf": "0.120.0",
|
|
14195
|
+
"@oxc-parser/binding-linux-arm64-gnu": "0.120.0",
|
|
14196
|
+
"@oxc-parser/binding-linux-arm64-musl": "0.120.0",
|
|
14197
|
+
"@oxc-parser/binding-linux-ppc64-gnu": "0.120.0",
|
|
14198
|
+
"@oxc-parser/binding-linux-riscv64-gnu": "0.120.0",
|
|
14199
|
+
"@oxc-parser/binding-linux-riscv64-musl": "0.120.0",
|
|
14200
|
+
"@oxc-parser/binding-linux-s390x-gnu": "0.120.0",
|
|
14201
|
+
"@oxc-parser/binding-linux-x64-gnu": "0.120.0",
|
|
14202
|
+
"@oxc-parser/binding-linux-x64-musl": "0.120.0",
|
|
14203
|
+
"@oxc-parser/binding-openharmony-arm64": "0.120.0",
|
|
14204
|
+
"@oxc-parser/binding-wasm32-wasi": "0.120.0",
|
|
14205
|
+
"@oxc-parser/binding-win32-arm64-msvc": "0.120.0",
|
|
14206
|
+
"@oxc-parser/binding-win32-ia32-msvc": "0.120.0",
|
|
14207
|
+
"@oxc-parser/binding-win32-x64-msvc": "0.120.0"
|
|
14208
|
+
}
|
|
14209
|
+
},
|
|
14210
|
+
"node_modules/oxc-parser/node_modules/@oxc-project/types": {
|
|
14211
|
+
"version": "0.120.0",
|
|
14212
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.120.0.tgz",
|
|
14213
|
+
"integrity": "sha512-k1YNu55DuvAip/MGE1FTsIuU3FUCn6v/ujG9V7Nq5Df/kX2CWb13hhwD0lmJGMGqE+bE1MXvv9SZVnMzEXlWcg==",
|
|
14214
|
+
"dev": true,
|
|
14215
|
+
"license": "MIT",
|
|
14216
|
+
"funding": {
|
|
14217
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
14218
|
+
}
|
|
14219
|
+
},
|
|
14345
14220
|
"node_modules/p-limit": {
|
|
14346
14221
|
"version": "4.0.0",
|
|
14347
14222
|
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz",
|
|
@@ -14481,9 +14356,9 @@
|
|
|
14481
14356
|
}
|
|
14482
14357
|
},
|
|
14483
14358
|
"node_modules/parse-svg-path": {
|
|
14484
|
-
"version": "0.
|
|
14485
|
-
"resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.
|
|
14486
|
-
"integrity": "sha512-
|
|
14359
|
+
"version": "0.2.0",
|
|
14360
|
+
"resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.2.0.tgz",
|
|
14361
|
+
"integrity": "sha512-Tf7FFIrguPKQwzD4pWnYkR2VOv3raoHeKED80Bm+BYHI3KxC8KsgsGC5+fSMzAGDA6UEk4bHvmi+RsjmL3khpg==",
|
|
14487
14362
|
"license": "MIT",
|
|
14488
14363
|
"peer": true
|
|
14489
14364
|
},
|
|
@@ -14567,16 +14442,11 @@
|
|
|
14567
14442
|
"node": "20 || >=22"
|
|
14568
14443
|
}
|
|
14569
14444
|
},
|
|
14570
|
-
"node_modules/path-to-regexp": {
|
|
14571
|
-
"version": "6.3.0",
|
|
14572
|
-
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz",
|
|
14573
|
-
"integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==",
|
|
14574
|
-
"license": "MIT"
|
|
14575
|
-
},
|
|
14576
14445
|
"node_modules/pathe": {
|
|
14577
14446
|
"version": "2.0.3",
|
|
14578
14447
|
"resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
|
|
14579
14448
|
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
|
|
14449
|
+
"dev": true,
|
|
14580
14450
|
"license": "MIT"
|
|
14581
14451
|
},
|
|
14582
14452
|
"node_modules/picocolors": {
|
|
@@ -14621,9 +14491,9 @@
|
|
|
14621
14491
|
}
|
|
14622
14492
|
},
|
|
14623
14493
|
"node_modules/pixi.js": {
|
|
14624
|
-
"version": "8.
|
|
14625
|
-
"resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-8.
|
|
14626
|
-
"integrity": "sha512-
|
|
14494
|
+
"version": "8.19.0",
|
|
14495
|
+
"resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-8.19.0.tgz",
|
|
14496
|
+
"integrity": "sha512-pq1O6emA/GFjjeF+8d3Pb5t7knD8FsnfWGqQcRjYjsqFZ7QdzG1XgjLDUu0DFJRbafjV5+g8iNLFBx0b9649lg==",
|
|
14627
14497
|
"license": "MIT",
|
|
14628
14498
|
"peer": true,
|
|
14629
14499
|
"workspaces": [
|
|
@@ -14634,12 +14504,12 @@
|
|
|
14634
14504
|
"@pixi/colord": "^2.9.6",
|
|
14635
14505
|
"@types/earcut": "^3.0.0",
|
|
14636
14506
|
"@webgpu/types": "^0.1.69",
|
|
14637
|
-
"@xmldom/xmldom": "^0.8.
|
|
14507
|
+
"@xmldom/xmldom": "^0.8.13",
|
|
14638
14508
|
"earcut": "^3.0.2",
|
|
14639
14509
|
"eventemitter3": "^5.0.1",
|
|
14640
14510
|
"gifuct-js": "^2.1.2",
|
|
14641
14511
|
"ismobilejs": "^1.1.1",
|
|
14642
|
-
"parse-svg-path": "^0.
|
|
14512
|
+
"parse-svg-path": "^0.2.0",
|
|
14643
14513
|
"tiny-lru": "^11.4.7"
|
|
14644
14514
|
},
|
|
14645
14515
|
"funding": {
|
|
@@ -14741,9 +14611,10 @@
|
|
|
14741
14611
|
}
|
|
14742
14612
|
},
|
|
14743
14613
|
"node_modules/prettier": {
|
|
14744
|
-
"version": "3.8.
|
|
14745
|
-
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.
|
|
14746
|
-
"integrity": "sha512-
|
|
14614
|
+
"version": "3.8.4",
|
|
14615
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.4.tgz",
|
|
14616
|
+
"integrity": "sha512-N2MylSdi48+5N/6S5j+maeHbUSIzzZ5uOcX5Hm4QpV8Dkb1HFjfAKTKX6yNPJQD9AhcT3ifHNB66tWTTJDi11Q==",
|
|
14617
|
+
"dev": true,
|
|
14747
14618
|
"license": "MIT",
|
|
14748
14619
|
"bin": {
|
|
14749
14620
|
"prettier": "bin/prettier.cjs"
|
|
@@ -15337,12 +15208,14 @@
|
|
|
15337
15208
|
"version": "0.5.0",
|
|
15338
15209
|
"resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.5.0.tgz",
|
|
15339
15210
|
"integrity": "sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==",
|
|
15211
|
+
"dev": true,
|
|
15340
15212
|
"license": "MIT"
|
|
15341
15213
|
},
|
|
15342
15214
|
"node_modules/require-directory": {
|
|
15343
15215
|
"version": "2.1.1",
|
|
15344
15216
|
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
|
|
15345
15217
|
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
|
|
15218
|
+
"dev": true,
|
|
15346
15219
|
"license": "MIT",
|
|
15347
15220
|
"engines": {
|
|
15348
15221
|
"node": ">=0.10.0"
|
|
@@ -15427,12 +15300,6 @@
|
|
|
15427
15300
|
"node": ">= 4"
|
|
15428
15301
|
}
|
|
15429
15302
|
},
|
|
15430
|
-
"node_modules/rettime": {
|
|
15431
|
-
"version": "0.11.11",
|
|
15432
|
-
"resolved": "https://registry.npmjs.org/rettime/-/rettime-0.11.11.tgz",
|
|
15433
|
-
"integrity": "sha512-ILJRqVWBCTlg9r42fFgwVZx1gnFAcQF8mRoMkbgQfIrjEDf9nbBFDFx00oloOa+Q869FUtaYDXZvEfnecQSCoQ==",
|
|
15434
|
-
"license": "MIT"
|
|
15435
|
-
},
|
|
15436
15303
|
"node_modules/reusify": {
|
|
15437
15304
|
"version": "1.1.0",
|
|
15438
15305
|
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
|
|
@@ -15751,12 +15618,6 @@
|
|
|
15751
15618
|
"url": "https://opencollective.com/express"
|
|
15752
15619
|
}
|
|
15753
15620
|
},
|
|
15754
|
-
"node_modules/set-cookie-parser": {
|
|
15755
|
-
"version": "3.1.0",
|
|
15756
|
-
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-3.1.0.tgz",
|
|
15757
|
-
"integrity": "sha512-kjnC1DXBHcxaOaOXBHBeRtltsDG2nUiUni+jP92M9gYdW12rsmx92UsfpH7o5tDRs7I1ZZPSQJQGv3UaRfCiuw==",
|
|
15758
|
-
"license": "MIT"
|
|
15759
|
-
},
|
|
15760
15621
|
"node_modules/set-function-length": {
|
|
15761
15622
|
"version": "1.2.2",
|
|
15762
15623
|
"resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
|
|
@@ -15813,9 +15674,9 @@
|
|
|
15813
15674
|
"license": "ISC"
|
|
15814
15675
|
},
|
|
15815
15676
|
"node_modules/shadcn": {
|
|
15816
|
-
"version": "4.
|
|
15817
|
-
"resolved": "https://registry.npmjs.org/shadcn/-/shadcn-4.
|
|
15818
|
-
"integrity": "sha512-
|
|
15677
|
+
"version": "4.11.0",
|
|
15678
|
+
"resolved": "https://registry.npmjs.org/shadcn/-/shadcn-4.11.0.tgz",
|
|
15679
|
+
"integrity": "sha512-UV0cchFea9hO7poV1CuEP0wvmYjpAqcxCKdy23bndl2Du2ARtDs8A4xdzfhUjDBeOW1nNpJ6lXmsEpsply2SfQ==",
|
|
15819
15680
|
"license": "MIT",
|
|
15820
15681
|
"dependencies": {
|
|
15821
15682
|
"@babel/core": "^7.28.0",
|
|
@@ -15837,7 +15698,6 @@
|
|
|
15837
15698
|
"fuzzysort": "^3.1.0",
|
|
15838
15699
|
"https-proxy-agent": "^7.0.6",
|
|
15839
15700
|
"kleur": "^4.1.5",
|
|
15840
|
-
"msw": "^2.10.4",
|
|
15841
15701
|
"node-fetch": "^3.3.2",
|
|
15842
15702
|
"open": "^11.0.0",
|
|
15843
15703
|
"ora": "^8.2.0",
|
|
@@ -16061,12 +15921,6 @@
|
|
|
16061
15921
|
"url": "https://github.com/sponsors/ljharb"
|
|
16062
15922
|
}
|
|
16063
15923
|
},
|
|
16064
|
-
"node_modules/siginfo": {
|
|
16065
|
-
"version": "2.0.0",
|
|
16066
|
-
"resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
|
|
16067
|
-
"integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==",
|
|
16068
|
-
"license": "ISC"
|
|
16069
|
-
},
|
|
16070
15924
|
"node_modules/signal-exit": {
|
|
16071
15925
|
"version": "4.1.0",
|
|
16072
15926
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
@@ -16126,6 +15980,7 @@
|
|
|
16126
15980
|
"version": "1.9.12",
|
|
16127
15981
|
"resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.9.12.tgz",
|
|
16128
15982
|
"integrity": "sha512-QzKaSJq2/iDrWR1As6MHZQ8fQkdOBf8GReYb7L5iKwMGceg7HxDcaOHk0at66tNgn9U2U7dXo8ZZpLIAmGMzgw==",
|
|
15983
|
+
"dev": true,
|
|
16129
15984
|
"license": "MIT",
|
|
16130
15985
|
"dependencies": {
|
|
16131
15986
|
"csstype": "^3.1.0",
|
|
@@ -16182,12 +16037,6 @@
|
|
|
16182
16037
|
"url": "https://github.com/sponsors/wooorm"
|
|
16183
16038
|
}
|
|
16184
16039
|
},
|
|
16185
|
-
"node_modules/stackback": {
|
|
16186
|
-
"version": "0.0.2",
|
|
16187
|
-
"resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
|
|
16188
|
-
"integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==",
|
|
16189
|
-
"license": "MIT"
|
|
16190
|
-
},
|
|
16191
16040
|
"node_modules/standardized-audio-context": {
|
|
16192
16041
|
"version": "25.3.77",
|
|
16193
16042
|
"resolved": "https://registry.npmjs.org/standardized-audio-context/-/standardized-audio-context-25.3.77.tgz",
|
|
@@ -16209,12 +16058,6 @@
|
|
|
16209
16058
|
"node": ">= 0.8"
|
|
16210
16059
|
}
|
|
16211
16060
|
},
|
|
16212
|
-
"node_modules/std-env": {
|
|
16213
|
-
"version": "4.1.0",
|
|
16214
|
-
"resolved": "https://registry.npmjs.org/std-env/-/std-env-4.1.0.tgz",
|
|
16215
|
-
"integrity": "sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==",
|
|
16216
|
-
"license": "MIT"
|
|
16217
|
-
},
|
|
16218
16061
|
"node_modules/stdin-discarder": {
|
|
16219
16062
|
"version": "0.2.2",
|
|
16220
16063
|
"resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
|
|
@@ -16241,12 +16084,6 @@
|
|
|
16241
16084
|
"node": ">= 0.4"
|
|
16242
16085
|
}
|
|
16243
16086
|
},
|
|
16244
|
-
"node_modules/strict-event-emitter": {
|
|
16245
|
-
"version": "0.5.1",
|
|
16246
|
-
"resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz",
|
|
16247
|
-
"integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==",
|
|
16248
|
-
"license": "MIT"
|
|
16249
|
-
},
|
|
16250
16087
|
"node_modules/string-width": {
|
|
16251
16088
|
"version": "7.2.0",
|
|
16252
16089
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
|
|
@@ -16493,18 +16330,6 @@
|
|
|
16493
16330
|
"url": "https://github.com/fontello/svg2ttf?sponsor=1"
|
|
16494
16331
|
}
|
|
16495
16332
|
},
|
|
16496
|
-
"node_modules/tagged-tag": {
|
|
16497
|
-
"version": "1.0.0",
|
|
16498
|
-
"resolved": "https://registry.npmjs.org/tagged-tag/-/tagged-tag-1.0.0.tgz",
|
|
16499
|
-
"integrity": "sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==",
|
|
16500
|
-
"license": "MIT",
|
|
16501
|
-
"engines": {
|
|
16502
|
-
"node": ">=20"
|
|
16503
|
-
},
|
|
16504
|
-
"funding": {
|
|
16505
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
16506
|
-
}
|
|
16507
|
-
},
|
|
16508
16333
|
"node_modules/tailwind-animations": {
|
|
16509
16334
|
"version": "1.0.1",
|
|
16510
16335
|
"resolved": "https://registry.npmjs.org/tailwind-animations/-/tailwind-animations-1.0.1.tgz",
|
|
@@ -16660,12 +16485,6 @@
|
|
|
16660
16485
|
"node": ">=12"
|
|
16661
16486
|
}
|
|
16662
16487
|
},
|
|
16663
|
-
"node_modules/tinybench": {
|
|
16664
|
-
"version": "2.9.0",
|
|
16665
|
-
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
|
|
16666
|
-
"integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==",
|
|
16667
|
-
"license": "MIT"
|
|
16668
|
-
},
|
|
16669
16488
|
"node_modules/tinycolor2": {
|
|
16670
16489
|
"version": "1.6.0",
|
|
16671
16490
|
"resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz",
|
|
@@ -16673,15 +16492,6 @@
|
|
|
16673
16492
|
"dev": true,
|
|
16674
16493
|
"license": "MIT"
|
|
16675
16494
|
},
|
|
16676
|
-
"node_modules/tinyexec": {
|
|
16677
|
-
"version": "1.1.2",
|
|
16678
|
-
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.1.2.tgz",
|
|
16679
|
-
"integrity": "sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==",
|
|
16680
|
-
"license": "MIT",
|
|
16681
|
-
"engines": {
|
|
16682
|
-
"node": ">=18"
|
|
16683
|
-
}
|
|
16684
|
-
},
|
|
16685
16495
|
"node_modules/tinyglobby": {
|
|
16686
16496
|
"version": "0.2.17",
|
|
16687
16497
|
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
@@ -16698,33 +16508,6 @@
|
|
|
16698
16508
|
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
16699
16509
|
}
|
|
16700
16510
|
},
|
|
16701
|
-
"node_modules/tinyrainbow": {
|
|
16702
|
-
"version": "3.1.0",
|
|
16703
|
-
"resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz",
|
|
16704
|
-
"integrity": "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==",
|
|
16705
|
-
"license": "MIT",
|
|
16706
|
-
"engines": {
|
|
16707
|
-
"node": ">=14.0.0"
|
|
16708
|
-
}
|
|
16709
|
-
},
|
|
16710
|
-
"node_modules/tldts": {
|
|
16711
|
-
"version": "7.0.30",
|
|
16712
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.30.tgz",
|
|
16713
|
-
"integrity": "sha512-ELrFxuqsDdHUwoh0XxDbxuLD3Wnz49Z57IFvTtvWy1hJdcMZjXLIuonjilCiWHlT2GbE4Wlv1wKVTzDFnXH1aw==",
|
|
16714
|
-
"license": "MIT",
|
|
16715
|
-
"dependencies": {
|
|
16716
|
-
"tldts-core": "^7.0.30"
|
|
16717
|
-
},
|
|
16718
|
-
"bin": {
|
|
16719
|
-
"tldts": "bin/cli.js"
|
|
16720
|
-
}
|
|
16721
|
-
},
|
|
16722
|
-
"node_modules/tldts-core": {
|
|
16723
|
-
"version": "7.0.30",
|
|
16724
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.30.tgz",
|
|
16725
|
-
"integrity": "sha512-uiHN8PIB1VmWyS98eZYja4xzlYqeFZVjb4OuYlJQnZAuJhMw4PbKQOKgHKhBdJR3FE/t5mUQ1Kd80++B+qhD1Q==",
|
|
16726
|
-
"license": "MIT"
|
|
16727
|
-
},
|
|
16728
16511
|
"node_modules/to-data-view": {
|
|
16729
16512
|
"version": "1.1.0",
|
|
16730
16513
|
"resolved": "https://registry.npmjs.org/to-data-view/-/to-data-view-1.1.0.tgz",
|
|
@@ -16783,18 +16566,6 @@
|
|
|
16783
16566
|
"tslib": "^2.3.1"
|
|
16784
16567
|
}
|
|
16785
16568
|
},
|
|
16786
|
-
"node_modules/tough-cookie": {
|
|
16787
|
-
"version": "6.0.1",
|
|
16788
|
-
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.1.tgz",
|
|
16789
|
-
"integrity": "sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==",
|
|
16790
|
-
"license": "BSD-3-Clause",
|
|
16791
|
-
"dependencies": {
|
|
16792
|
-
"tldts": "^7.0.5"
|
|
16793
|
-
},
|
|
16794
|
-
"engines": {
|
|
16795
|
-
"node": ">=16"
|
|
16796
|
-
}
|
|
16797
|
-
},
|
|
16798
16569
|
"node_modules/tr46": {
|
|
16799
16570
|
"version": "1.0.1",
|
|
16800
16571
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz",
|
|
@@ -16864,21 +16635,6 @@
|
|
|
16864
16635
|
"url": "https://github.com/sponsors/Wombosvideo"
|
|
16865
16636
|
}
|
|
16866
16637
|
},
|
|
16867
|
-
"node_modules/type-fest": {
|
|
16868
|
-
"version": "5.6.0",
|
|
16869
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-5.6.0.tgz",
|
|
16870
|
-
"integrity": "sha512-8ZiHFm91orbSAe2PSAiSVBVko18pbhbiB3U9GglSzF/zCGkR+rxpHx6sEMCUm4kxY4LjDIUGgCfUMtwfZfjfUA==",
|
|
16871
|
-
"license": "(MIT OR CC0-1.0)",
|
|
16872
|
-
"dependencies": {
|
|
16873
|
-
"tagged-tag": "^1.0.0"
|
|
16874
|
-
},
|
|
16875
|
-
"engines": {
|
|
16876
|
-
"node": ">=20"
|
|
16877
|
-
},
|
|
16878
|
-
"funding": {
|
|
16879
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
16880
|
-
}
|
|
16881
|
-
},
|
|
16882
16638
|
"node_modules/type-is": {
|
|
16883
16639
|
"version": "2.0.1",
|
|
16884
16640
|
"resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
|
|
@@ -17066,6 +16822,7 @@
|
|
|
17066
16822
|
"version": "7.24.6",
|
|
17067
16823
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
|
|
17068
16824
|
"integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
|
|
16825
|
+
"devOptional": true,
|
|
17069
16826
|
"license": "MIT"
|
|
17070
16827
|
},
|
|
17071
16828
|
"node_modules/unicode-canonical-property-names-ecmascript": {
|
|
@@ -17275,6 +17032,7 @@
|
|
|
17275
17032
|
"version": "3.0.0",
|
|
17276
17033
|
"resolved": "https://registry.npmjs.org/unplugin/-/unplugin-3.0.0.tgz",
|
|
17277
17034
|
"integrity": "sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==",
|
|
17035
|
+
"dev": true,
|
|
17278
17036
|
"license": "MIT",
|
|
17279
17037
|
"dependencies": {
|
|
17280
17038
|
"@jridgewell/remapping": "^2.3.5",
|
|
@@ -17285,15 +17043,6 @@
|
|
|
17285
17043
|
"node": "^20.19.0 || >=22.12.0"
|
|
17286
17044
|
}
|
|
17287
17045
|
},
|
|
17288
|
-
"node_modules/until-async": {
|
|
17289
|
-
"version": "3.0.2",
|
|
17290
|
-
"resolved": "https://registry.npmjs.org/until-async/-/until-async-3.0.2.tgz",
|
|
17291
|
-
"integrity": "sha512-IiSk4HlzAMqTUseHHe3VhIGyuFmN90zMTpD3Z3y8jeQbzLIq500MVM7Jq2vUAnTKAFPJrqwkzr6PoTcPhGcOiw==",
|
|
17292
|
-
"license": "MIT",
|
|
17293
|
-
"funding": {
|
|
17294
|
-
"url": "https://github.com/sponsors/kettanaito"
|
|
17295
|
-
}
|
|
17296
|
-
},
|
|
17297
17046
|
"node_modules/upath": {
|
|
17298
17047
|
"version": "2.0.1",
|
|
17299
17048
|
"resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz",
|
|
@@ -17677,95 +17426,6 @@
|
|
|
17677
17426
|
}
|
|
17678
17427
|
}
|
|
17679
17428
|
},
|
|
17680
|
-
"node_modules/vitest": {
|
|
17681
|
-
"version": "4.1.5",
|
|
17682
|
-
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.5.tgz",
|
|
17683
|
-
"integrity": "sha512-9Xx1v3/ih3m9hN+SbfkUyy0JAs72ap3r7joc87XL6jwF0jGg6mFBvQ1SrwaX+h8BlkX6Hz9shdd1uo6AF+ZGpg==",
|
|
17684
|
-
"license": "MIT",
|
|
17685
|
-
"dependencies": {
|
|
17686
|
-
"@vitest/expect": "4.1.5",
|
|
17687
|
-
"@vitest/mocker": "4.1.5",
|
|
17688
|
-
"@vitest/pretty-format": "4.1.5",
|
|
17689
|
-
"@vitest/runner": "4.1.5",
|
|
17690
|
-
"@vitest/snapshot": "4.1.5",
|
|
17691
|
-
"@vitest/spy": "4.1.5",
|
|
17692
|
-
"@vitest/utils": "4.1.5",
|
|
17693
|
-
"es-module-lexer": "^2.0.0",
|
|
17694
|
-
"expect-type": "^1.3.0",
|
|
17695
|
-
"magic-string": "^0.30.21",
|
|
17696
|
-
"obug": "^2.1.1",
|
|
17697
|
-
"pathe": "^2.0.3",
|
|
17698
|
-
"picomatch": "^4.0.3",
|
|
17699
|
-
"std-env": "^4.0.0-rc.1",
|
|
17700
|
-
"tinybench": "^2.9.0",
|
|
17701
|
-
"tinyexec": "^1.0.2",
|
|
17702
|
-
"tinyglobby": "^0.2.15",
|
|
17703
|
-
"tinyrainbow": "^3.1.0",
|
|
17704
|
-
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0",
|
|
17705
|
-
"why-is-node-running": "^2.3.0"
|
|
17706
|
-
},
|
|
17707
|
-
"bin": {
|
|
17708
|
-
"vitest": "vitest.mjs"
|
|
17709
|
-
},
|
|
17710
|
-
"engines": {
|
|
17711
|
-
"node": "^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
17712
|
-
},
|
|
17713
|
-
"funding": {
|
|
17714
|
-
"url": "https://opencollective.com/vitest"
|
|
17715
|
-
},
|
|
17716
|
-
"peerDependencies": {
|
|
17717
|
-
"@edge-runtime/vm": "*",
|
|
17718
|
-
"@opentelemetry/api": "^1.9.0",
|
|
17719
|
-
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
|
|
17720
|
-
"@vitest/browser-playwright": "4.1.5",
|
|
17721
|
-
"@vitest/browser-preview": "4.1.5",
|
|
17722
|
-
"@vitest/browser-webdriverio": "4.1.5",
|
|
17723
|
-
"@vitest/coverage-istanbul": "4.1.5",
|
|
17724
|
-
"@vitest/coverage-v8": "4.1.5",
|
|
17725
|
-
"@vitest/ui": "4.1.5",
|
|
17726
|
-
"happy-dom": "*",
|
|
17727
|
-
"jsdom": "*",
|
|
17728
|
-
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
17729
|
-
},
|
|
17730
|
-
"peerDependenciesMeta": {
|
|
17731
|
-
"@edge-runtime/vm": {
|
|
17732
|
-
"optional": true
|
|
17733
|
-
},
|
|
17734
|
-
"@opentelemetry/api": {
|
|
17735
|
-
"optional": true
|
|
17736
|
-
},
|
|
17737
|
-
"@types/node": {
|
|
17738
|
-
"optional": true
|
|
17739
|
-
},
|
|
17740
|
-
"@vitest/browser-playwright": {
|
|
17741
|
-
"optional": true
|
|
17742
|
-
},
|
|
17743
|
-
"@vitest/browser-preview": {
|
|
17744
|
-
"optional": true
|
|
17745
|
-
},
|
|
17746
|
-
"@vitest/browser-webdriverio": {
|
|
17747
|
-
"optional": true
|
|
17748
|
-
},
|
|
17749
|
-
"@vitest/coverage-istanbul": {
|
|
17750
|
-
"optional": true
|
|
17751
|
-
},
|
|
17752
|
-
"@vitest/coverage-v8": {
|
|
17753
|
-
"optional": true
|
|
17754
|
-
},
|
|
17755
|
-
"@vitest/ui": {
|
|
17756
|
-
"optional": true
|
|
17757
|
-
},
|
|
17758
|
-
"happy-dom": {
|
|
17759
|
-
"optional": true
|
|
17760
|
-
},
|
|
17761
|
-
"jsdom": {
|
|
17762
|
-
"optional": true
|
|
17763
|
-
},
|
|
17764
|
-
"vite": {
|
|
17765
|
-
"optional": false
|
|
17766
|
-
}
|
|
17767
|
-
}
|
|
17768
|
-
},
|
|
17769
17429
|
"node_modules/void-elements": {
|
|
17770
17430
|
"version": "3.1.0",
|
|
17771
17431
|
"resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz",
|
|
@@ -17805,6 +17465,7 @@
|
|
|
17805
17465
|
"version": "0.6.2",
|
|
17806
17466
|
"resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
|
|
17807
17467
|
"integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
|
|
17468
|
+
"dev": true,
|
|
17808
17469
|
"license": "MIT"
|
|
17809
17470
|
},
|
|
17810
17471
|
"node_modules/whatwg-url": {
|
|
@@ -17921,22 +17582,6 @@
|
|
|
17921
17582
|
"url": "https://github.com/sponsors/ljharb"
|
|
17922
17583
|
}
|
|
17923
17584
|
},
|
|
17924
|
-
"node_modules/why-is-node-running": {
|
|
17925
|
-
"version": "2.3.0",
|
|
17926
|
-
"resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz",
|
|
17927
|
-
"integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==",
|
|
17928
|
-
"license": "MIT",
|
|
17929
|
-
"dependencies": {
|
|
17930
|
-
"siginfo": "^2.0.0",
|
|
17931
|
-
"stackback": "0.0.2"
|
|
17932
|
-
},
|
|
17933
|
-
"bin": {
|
|
17934
|
-
"why-is-node-running": "cli.js"
|
|
17935
|
-
},
|
|
17936
|
-
"engines": {
|
|
17937
|
-
"node": ">=8"
|
|
17938
|
-
}
|
|
17939
|
-
},
|
|
17940
17585
|
"node_modules/wordwrap": {
|
|
17941
17586
|
"version": "1.0.0",
|
|
17942
17587
|
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
|
|
@@ -18244,6 +17889,7 @@
|
|
|
18244
17889
|
"version": "7.0.0",
|
|
18245
17890
|
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
18246
17891
|
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
17892
|
+
"dev": true,
|
|
18247
17893
|
"license": "MIT",
|
|
18248
17894
|
"dependencies": {
|
|
18249
17895
|
"ansi-styles": "^4.0.0",
|
|
@@ -18261,6 +17907,7 @@
|
|
|
18261
17907
|
"version": "5.0.1",
|
|
18262
17908
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
18263
17909
|
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
17910
|
+
"dev": true,
|
|
18264
17911
|
"license": "MIT",
|
|
18265
17912
|
"engines": {
|
|
18266
17913
|
"node": ">=8"
|
|
@@ -18270,12 +17917,14 @@
|
|
|
18270
17917
|
"version": "8.0.0",
|
|
18271
17918
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
18272
17919
|
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
17920
|
+
"dev": true,
|
|
18273
17921
|
"license": "MIT"
|
|
18274
17922
|
},
|
|
18275
17923
|
"node_modules/wrap-ansi/node_modules/string-width": {
|
|
18276
17924
|
"version": "4.2.3",
|
|
18277
17925
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
18278
17926
|
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
17927
|
+
"dev": true,
|
|
18279
17928
|
"license": "MIT",
|
|
18280
17929
|
"dependencies": {
|
|
18281
17930
|
"emoji-regex": "^8.0.0",
|
|
@@ -18290,6 +17939,7 @@
|
|
|
18290
17939
|
"version": "6.0.1",
|
|
18291
17940
|
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
18292
17941
|
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
17942
|
+
"dev": true,
|
|
18293
17943
|
"license": "MIT",
|
|
18294
17944
|
"dependencies": {
|
|
18295
17945
|
"ansi-regex": "^5.0.1"
|
|
@@ -18305,9 +17955,10 @@
|
|
|
18305
17955
|
"license": "ISC"
|
|
18306
17956
|
},
|
|
18307
17957
|
"node_modules/ws": {
|
|
18308
|
-
"version": "8.
|
|
18309
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.
|
|
18310
|
-
"integrity": "sha512-
|
|
17958
|
+
"version": "8.21.0",
|
|
17959
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
|
|
17960
|
+
"integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
|
|
17961
|
+
"dev": true,
|
|
18311
17962
|
"license": "MIT",
|
|
18312
17963
|
"engines": {
|
|
18313
17964
|
"node": ">=10.0.0"
|
|
@@ -18383,6 +18034,7 @@
|
|
|
18383
18034
|
"version": "5.0.8",
|
|
18384
18035
|
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
|
18385
18036
|
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
|
|
18037
|
+
"dev": true,
|
|
18386
18038
|
"license": "ISC",
|
|
18387
18039
|
"engines": {
|
|
18388
18040
|
"node": ">=10"
|
|
@@ -18398,6 +18050,7 @@
|
|
|
18398
18050
|
"version": "17.7.2",
|
|
18399
18051
|
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
|
|
18400
18052
|
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
|
|
18053
|
+
"dev": true,
|
|
18401
18054
|
"license": "MIT",
|
|
18402
18055
|
"dependencies": {
|
|
18403
18056
|
"cliui": "^8.0.1",
|
|
@@ -18416,6 +18069,7 @@
|
|
|
18416
18069
|
"version": "21.1.1",
|
|
18417
18070
|
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
|
|
18418
18071
|
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
|
|
18072
|
+
"dev": true,
|
|
18419
18073
|
"license": "ISC",
|
|
18420
18074
|
"engines": {
|
|
18421
18075
|
"node": ">=12"
|
|
@@ -18425,6 +18079,7 @@
|
|
|
18425
18079
|
"version": "5.0.1",
|
|
18426
18080
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
18427
18081
|
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
18082
|
+
"dev": true,
|
|
18428
18083
|
"license": "MIT",
|
|
18429
18084
|
"engines": {
|
|
18430
18085
|
"node": ">=8"
|
|
@@ -18434,12 +18089,14 @@
|
|
|
18434
18089
|
"version": "8.0.0",
|
|
18435
18090
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
18436
18091
|
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
18092
|
+
"dev": true,
|
|
18437
18093
|
"license": "MIT"
|
|
18438
18094
|
},
|
|
18439
18095
|
"node_modules/yargs/node_modules/string-width": {
|
|
18440
18096
|
"version": "4.2.3",
|
|
18441
18097
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
18442
18098
|
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
18099
|
+
"dev": true,
|
|
18443
18100
|
"license": "MIT",
|
|
18444
18101
|
"dependencies": {
|
|
18445
18102
|
"emoji-regex": "^8.0.0",
|
|
@@ -18454,6 +18111,7 @@
|
|
|
18454
18111
|
"version": "6.0.1",
|
|
18455
18112
|
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
18456
18113
|
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
18114
|
+
"dev": true,
|
|
18457
18115
|
"license": "MIT",
|
|
18458
18116
|
"dependencies": {
|
|
18459
18117
|
"ansi-regex": "^5.0.1"
|