create-next-imagicma 0.1.2 → 0.1.3
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/package.json +1 -1
- package/template/process-compose.yaml +1 -1
- package/template-hono/.env.example +3 -6
- package/template-hono/AGENTS.md +1 -1
- package/template-hono/README.md +25 -4
- package/template-hono/client/src/components/ErrorBoundary.tsx +88 -14
- package/template-hono/client/src/components/HelloClient.tsx +1 -1
- package/template-hono/client/src/lib/imagicma-preview-repair.ts +137 -0
- package/template-hono/client/src/pages/home.tsx +70 -2
- package/template-hono/drizzle.config.ts +4 -8
- package/template-hono/gitignore +1 -0
- package/template-hono/package.json +6 -2
- package/template-hono/playwright.config.ts +40 -0
- package/template-hono/pnpm-lock.yaml +645 -16
- package/template-hono/process-compose.yaml +0 -1
- package/template-hono/scripts/imagicma-dev.mjs +12 -21
- package/template-hono/scripts/imagicma-runtime-logs.mjs +314 -0
- package/template-hono/scripts/imagicma-start.mjs +6 -12
- package/template-hono/server/database-path.ts +35 -0
- package/template-hono/server/db.ts +11 -13
- package/template-hono/server/storage.ts +2 -11
- package/template-hono/shared/schema.ts +4 -4
- package/template-hono/tests/e2e/fixtures/imagicma.ts +70 -0
- package/template-hono/types/pg.d.ts +0 -19
|
@@ -14,6 +14,9 @@ importers:
|
|
|
14
14
|
'@hono/zod-validator':
|
|
15
15
|
specifier: ^0.7.6
|
|
16
16
|
version: 0.7.6(hono@4.11.9)(zod@4.3.6)
|
|
17
|
+
'@libsql/client':
|
|
18
|
+
specifier: ^0.17.0
|
|
19
|
+
version: 0.17.0
|
|
17
20
|
'@radix-ui/react-accordion':
|
|
18
21
|
specifier: ^1.2.4
|
|
19
22
|
version: 1.2.12(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
@@ -109,10 +112,10 @@ importers:
|
|
|
109
112
|
version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
110
113
|
drizzle-orm:
|
|
111
114
|
specifier: ^0.39.3
|
|
112
|
-
version: 0.39.3(pg@8.18.0)
|
|
115
|
+
version: 0.39.3(@libsql/client@0.17.0)(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(pg@8.18.0)
|
|
113
116
|
drizzle-zod:
|
|
114
117
|
specifier: ^0.7.0
|
|
115
|
-
version: 0.7.1(drizzle-orm@0.39.3(pg@8.18.0))(zod@4.3.6)
|
|
118
|
+
version: 0.7.1(drizzle-orm@0.39.3(@libsql/client@0.17.0)(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(pg@8.18.0))(zod@4.3.6)
|
|
116
119
|
embla-carousel-react:
|
|
117
120
|
specifier: ^8.6.0
|
|
118
121
|
version: 8.6.0(react@19.2.3)
|
|
@@ -131,9 +134,6 @@ importers:
|
|
|
131
134
|
next-themes:
|
|
132
135
|
specifier: ^0.4.6
|
|
133
136
|
version: 0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
134
|
-
pg:
|
|
135
|
-
specifier: ^8.16.3
|
|
136
|
-
version: 8.18.0
|
|
137
137
|
react:
|
|
138
138
|
specifier: 19.2.3
|
|
139
139
|
version: 19.2.3
|
|
@@ -168,6 +168,9 @@ importers:
|
|
|
168
168
|
'@hono/vite-dev-server':
|
|
169
169
|
specifier: ^0.25.0
|
|
170
170
|
version: 0.25.0(hono@4.11.9)
|
|
171
|
+
'@playwright/test':
|
|
172
|
+
specifier: ^1.57.0
|
|
173
|
+
version: 1.58.2
|
|
171
174
|
'@tailwindcss/postcss':
|
|
172
175
|
specifier: ^4
|
|
173
176
|
version: 4.1.18
|
|
@@ -863,6 +866,71 @@ packages:
|
|
|
863
866
|
'@jridgewell/trace-mapping@0.3.31':
|
|
864
867
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
865
868
|
|
|
869
|
+
'@libsql/client@0.17.0':
|
|
870
|
+
resolution: {integrity: sha512-TLjSU9Otdpq0SpKHl1tD1Nc9MKhrsZbCFGot3EbCxRa8m1E5R1mMwoOjKMMM31IyF7fr+hPNHLpYfwbMKNusmg==}
|
|
871
|
+
|
|
872
|
+
'@libsql/core@0.17.0':
|
|
873
|
+
resolution: {integrity: sha512-hnZRnJHiS+nrhHKLGYPoJbc78FE903MSDrFJTbftxo+e52X+E0Y0fHOCVYsKWcg6XgB7BbJYUrz/xEkVTSaipw==}
|
|
874
|
+
|
|
875
|
+
'@libsql/darwin-arm64@0.5.22':
|
|
876
|
+
resolution: {integrity: sha512-4B8ZlX3nIDPndfct7GNe0nI3Yw6ibocEicWdC4fvQbSs/jdq/RC2oCsoJxJ4NzXkvktX70C1J4FcmmoBy069UA==}
|
|
877
|
+
cpu: [arm64]
|
|
878
|
+
os: [darwin]
|
|
879
|
+
|
|
880
|
+
'@libsql/darwin-x64@0.5.22':
|
|
881
|
+
resolution: {integrity: sha512-ny2HYWt6lFSIdNFzUFIJ04uiW6finXfMNJ7wypkAD8Pqdm6nAByO+Fdqu8t7sD0sqJGeUCiOg480icjyQ2/8VA==}
|
|
882
|
+
cpu: [x64]
|
|
883
|
+
os: [darwin]
|
|
884
|
+
|
|
885
|
+
'@libsql/hrana-client@0.9.0':
|
|
886
|
+
resolution: {integrity: sha512-pxQ1986AuWfPX4oXzBvLwBnfgKDE5OMhAdR/5cZmRaB4Ygz5MecQybvwZupnRz341r2CtFmbk/BhSu7k2Lm+Jw==}
|
|
887
|
+
|
|
888
|
+
'@libsql/isomorphic-ws@0.1.5':
|
|
889
|
+
resolution: {integrity: sha512-DtLWIH29onUYR00i0GlQ3UdcTRC6EP4u9w/h9LxpUZJWRMARk6dQwZ6Jkd+QdwVpuAOrdxt18v0K2uIYR3fwFg==}
|
|
890
|
+
|
|
891
|
+
'@libsql/linux-arm-gnueabihf@0.5.22':
|
|
892
|
+
resolution: {integrity: sha512-3Uo3SoDPJe/zBnyZKosziRGtszXaEtv57raWrZIahtQDsjxBVjuzYQinCm9LRCJCUT5t2r5Z5nLDPJi2CwZVoA==}
|
|
893
|
+
cpu: [arm]
|
|
894
|
+
os: [linux]
|
|
895
|
+
|
|
896
|
+
'@libsql/linux-arm-musleabihf@0.5.22':
|
|
897
|
+
resolution: {integrity: sha512-LCsXh07jvSojTNJptT9CowOzwITznD+YFGGW+1XxUr7fS+7/ydUrpDfsMX7UqTqjm7xG17eq86VkWJgHJfvpNg==}
|
|
898
|
+
cpu: [arm]
|
|
899
|
+
os: [linux]
|
|
900
|
+
|
|
901
|
+
'@libsql/linux-arm64-gnu@0.5.22':
|
|
902
|
+
resolution: {integrity: sha512-KSdnOMy88c9mpOFKUEzPskSaF3VLflfSUCBwas/pn1/sV3pEhtMF6H8VUCd2rsedwoukeeCSEONqX7LLnQwRMA==}
|
|
903
|
+
cpu: [arm64]
|
|
904
|
+
os: [linux]
|
|
905
|
+
|
|
906
|
+
'@libsql/linux-arm64-musl@0.5.22':
|
|
907
|
+
resolution: {integrity: sha512-mCHSMAsDTLK5YH//lcV3eFEgiR23Ym0U9oEvgZA0667gqRZg/2px+7LshDvErEKv2XZ8ixzw3p1IrBzLQHGSsw==}
|
|
908
|
+
cpu: [arm64]
|
|
909
|
+
os: [linux]
|
|
910
|
+
|
|
911
|
+
'@libsql/linux-x64-gnu@0.5.22':
|
|
912
|
+
resolution: {integrity: sha512-kNBHaIkSg78Y4BqAdgjcR2mBilZXs4HYkAmi58J+4GRwDQZh5fIUWbnQvB9f95DkWUIGVeenqLRFY2pcTmlsew==}
|
|
913
|
+
cpu: [x64]
|
|
914
|
+
os: [linux]
|
|
915
|
+
|
|
916
|
+
'@libsql/linux-x64-musl@0.5.22':
|
|
917
|
+
resolution: {integrity: sha512-UZ4Xdxm4pu3pQXjvfJiyCzZop/9j/eA2JjmhMaAhe3EVLH2g11Fy4fwyUp9sT1QJYR1kpc2JLuybPM0kuXv/Tg==}
|
|
918
|
+
cpu: [x64]
|
|
919
|
+
os: [linux]
|
|
920
|
+
|
|
921
|
+
'@libsql/win32-x64-msvc@0.5.22':
|
|
922
|
+
resolution: {integrity: sha512-Fj0j8RnBpo43tVZUVoNK6BV/9AtDUM5S7DF3LB4qTYg1LMSZqi3yeCneUTLJD6XomQJlZzbI4mst89yspVSAnA==}
|
|
923
|
+
cpu: [x64]
|
|
924
|
+
os: [win32]
|
|
925
|
+
|
|
926
|
+
'@neon-rs/load@0.0.4':
|
|
927
|
+
resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==}
|
|
928
|
+
|
|
929
|
+
'@playwright/test@1.58.2':
|
|
930
|
+
resolution: {integrity: sha512-akea+6bHYBBfA9uQqSYmlJXn61cTa+jbO87xVLCWbTqbWadRVmhxlXATaOjOgcBaWU4ePo0wB41KMFv3o35IXA==}
|
|
931
|
+
engines: {node: '>=18'}
|
|
932
|
+
hasBin: true
|
|
933
|
+
|
|
866
934
|
'@radix-ui/number@1.1.1':
|
|
867
935
|
resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
|
|
868
936
|
|
|
@@ -1776,6 +1844,9 @@ packages:
|
|
|
1776
1844
|
'@types/babel__traverse@7.28.0':
|
|
1777
1845
|
resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
|
|
1778
1846
|
|
|
1847
|
+
'@types/better-sqlite3@7.6.13':
|
|
1848
|
+
resolution: {integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==}
|
|
1849
|
+
|
|
1779
1850
|
'@types/d3-array@3.2.2':
|
|
1780
1851
|
resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
|
|
1781
1852
|
|
|
@@ -1820,6 +1891,9 @@ packages:
|
|
|
1820
1891
|
'@types/react@19.2.13':
|
|
1821
1892
|
resolution: {integrity: sha512-KkiJeU6VbYbUOp5ITMIc7kBfqlYkKA5KhEHVrGMmUUMt7NeaZg65ojdPk+FtNrBAOXNVM5QM72jnADjM+XVRAQ==}
|
|
1822
1893
|
|
|
1894
|
+
'@types/ws@8.18.1':
|
|
1895
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
1896
|
+
|
|
1823
1897
|
'@vitejs/plugin-react@5.1.4':
|
|
1824
1898
|
resolution: {integrity: sha512-VIcFLdRi/VYRU8OL/puL7QXMYafHmqOnwTZY50U1JPlCNj30PxCMx65c494b1K9be9hX83KVt0+gTEwTWLqToA==}
|
|
1825
1899
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
@@ -1853,10 +1927,22 @@ packages:
|
|
|
1853
1927
|
balanced-match@1.0.2:
|
|
1854
1928
|
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
1855
1929
|
|
|
1930
|
+
base64-js@1.5.1:
|
|
1931
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
1932
|
+
|
|
1856
1933
|
baseline-browser-mapping@2.9.19:
|
|
1857
1934
|
resolution: {integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==}
|
|
1858
1935
|
hasBin: true
|
|
1859
1936
|
|
|
1937
|
+
better-sqlite3@11.10.0:
|
|
1938
|
+
resolution: {integrity: sha512-EwhOpyXiOEL/lKzHz9AW1msWFNzGc/z+LzeB3/jnFJpxu+th2yqvzsSWas1v9jgs9+xiXJcD5A8CJxAG2TaghQ==}
|
|
1939
|
+
|
|
1940
|
+
bindings@1.5.0:
|
|
1941
|
+
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
|
|
1942
|
+
|
|
1943
|
+
bl@4.1.0:
|
|
1944
|
+
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
|
|
1945
|
+
|
|
1860
1946
|
brace-expansion@1.1.12:
|
|
1861
1947
|
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
|
|
1862
1948
|
|
|
@@ -1871,6 +1957,9 @@ packages:
|
|
|
1871
1957
|
buffer-from@1.1.2:
|
|
1872
1958
|
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
1873
1959
|
|
|
1960
|
+
buffer@5.7.1:
|
|
1961
|
+
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
|
1962
|
+
|
|
1874
1963
|
callsites@3.1.0:
|
|
1875
1964
|
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
1876
1965
|
engines: {node: '>=6'}
|
|
@@ -1882,6 +1971,9 @@ packages:
|
|
|
1882
1971
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
1883
1972
|
engines: {node: '>=10'}
|
|
1884
1973
|
|
|
1974
|
+
chownr@1.1.4:
|
|
1975
|
+
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
|
|
1976
|
+
|
|
1885
1977
|
class-variance-authority@0.7.1:
|
|
1886
1978
|
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
|
|
1887
1979
|
|
|
@@ -1908,6 +2000,9 @@ packages:
|
|
|
1908
2000
|
convert-source-map@2.0.0:
|
|
1909
2001
|
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
1910
2002
|
|
|
2003
|
+
cross-fetch@4.1.0:
|
|
2004
|
+
resolution: {integrity: sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==}
|
|
2005
|
+
|
|
1911
2006
|
cross-spawn@7.0.6:
|
|
1912
2007
|
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
1913
2008
|
engines: {node: '>= 8'}
|
|
@@ -1959,6 +2054,10 @@ packages:
|
|
|
1959
2054
|
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
|
|
1960
2055
|
engines: {node: '>=12'}
|
|
1961
2056
|
|
|
2057
|
+
data-uri-to-buffer@4.0.1:
|
|
2058
|
+
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
|
|
2059
|
+
engines: {node: '>= 12'}
|
|
2060
|
+
|
|
1962
2061
|
date-fns-jalali@4.1.0-0:
|
|
1963
2062
|
resolution: {integrity: sha512-hTIP/z+t+qKwBDcmmsnmjWTduxCg+5KfdqWQvb2X/8C9+knYY6epN/pfxdDuyVlSVeFz0sM5eEfwIUQ70U4ckg==}
|
|
1964
2063
|
|
|
@@ -1977,9 +2076,21 @@ packages:
|
|
|
1977
2076
|
decimal.js-light@2.5.1:
|
|
1978
2077
|
resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
|
|
1979
2078
|
|
|
2079
|
+
decompress-response@6.0.0:
|
|
2080
|
+
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
|
|
2081
|
+
engines: {node: '>=10'}
|
|
2082
|
+
|
|
2083
|
+
deep-extend@0.6.0:
|
|
2084
|
+
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
|
|
2085
|
+
engines: {node: '>=4.0.0'}
|
|
2086
|
+
|
|
1980
2087
|
deep-is@0.1.4:
|
|
1981
2088
|
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
|
1982
2089
|
|
|
2090
|
+
detect-libc@2.0.2:
|
|
2091
|
+
resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
|
|
2092
|
+
engines: {node: '>=8'}
|
|
2093
|
+
|
|
1983
2094
|
detect-libc@2.1.2:
|
|
1984
2095
|
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
1985
2096
|
engines: {node: '>=8'}
|
|
@@ -2102,6 +2213,9 @@ packages:
|
|
|
2102
2213
|
embla-carousel@8.6.0:
|
|
2103
2214
|
resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==}
|
|
2104
2215
|
|
|
2216
|
+
end-of-stream@1.4.5:
|
|
2217
|
+
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
|
|
2218
|
+
|
|
2105
2219
|
enhanced-resolve@5.19.0:
|
|
2106
2220
|
resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==}
|
|
2107
2221
|
engines: {node: '>=10.13.0'}
|
|
@@ -2179,6 +2293,10 @@ packages:
|
|
|
2179
2293
|
eventemitter3@4.0.7:
|
|
2180
2294
|
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
|
2181
2295
|
|
|
2296
|
+
expand-template@2.0.3:
|
|
2297
|
+
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
|
|
2298
|
+
engines: {node: '>=6'}
|
|
2299
|
+
|
|
2182
2300
|
fast-deep-equal@3.1.3:
|
|
2183
2301
|
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
2184
2302
|
|
|
@@ -2201,10 +2319,17 @@ packages:
|
|
|
2201
2319
|
picomatch:
|
|
2202
2320
|
optional: true
|
|
2203
2321
|
|
|
2322
|
+
fetch-blob@3.2.0:
|
|
2323
|
+
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
|
|
2324
|
+
engines: {node: ^12.20 || >= 14.13}
|
|
2325
|
+
|
|
2204
2326
|
file-entry-cache@8.0.0:
|
|
2205
2327
|
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
|
2206
2328
|
engines: {node: '>=16.0.0'}
|
|
2207
2329
|
|
|
2330
|
+
file-uri-to-path@1.0.0:
|
|
2331
|
+
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
|
|
2332
|
+
|
|
2208
2333
|
find-up@5.0.0:
|
|
2209
2334
|
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
2210
2335
|
engines: {node: '>=10'}
|
|
@@ -2216,6 +2341,10 @@ packages:
|
|
|
2216
2341
|
flatted@3.3.3:
|
|
2217
2342
|
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
|
|
2218
2343
|
|
|
2344
|
+
formdata-polyfill@4.0.10:
|
|
2345
|
+
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
|
|
2346
|
+
engines: {node: '>=12.20.0'}
|
|
2347
|
+
|
|
2219
2348
|
framer-motion@11.18.2:
|
|
2220
2349
|
resolution: {integrity: sha512-5F5Och7wrvtLVElIpclDT0CBzMVg3dL22B64aZwHtsIY8RB4mXICLrkajK4G9R+ieSAGcgrLeae2SeUTg2pr6w==}
|
|
2221
2350
|
peerDependencies:
|
|
@@ -2230,6 +2359,14 @@ packages:
|
|
|
2230
2359
|
react-dom:
|
|
2231
2360
|
optional: true
|
|
2232
2361
|
|
|
2362
|
+
fs-constants@1.0.0:
|
|
2363
|
+
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
|
|
2364
|
+
|
|
2365
|
+
fsevents@2.3.2:
|
|
2366
|
+
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
|
|
2367
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
2368
|
+
os: [darwin]
|
|
2369
|
+
|
|
2233
2370
|
fsevents@2.3.3:
|
|
2234
2371
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
2235
2372
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
@@ -2246,6 +2383,9 @@ packages:
|
|
|
2246
2383
|
get-tsconfig@4.13.2:
|
|
2247
2384
|
resolution: {integrity: sha512-LwrDmz5/YSHHIrxETNzL39eyuhUffOSD43v08W+jIOzUJmku47wD7itIoOjI2BOxxa+irG3Hqj8kSD4Y/dmQ6g==}
|
|
2248
2385
|
|
|
2386
|
+
github-from-package@0.0.0:
|
|
2387
|
+
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
|
|
2388
|
+
|
|
2249
2389
|
glob-parent@6.0.2:
|
|
2250
2390
|
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
2251
2391
|
engines: {node: '>=10.13.0'}
|
|
@@ -2265,6 +2405,9 @@ packages:
|
|
|
2265
2405
|
resolution: {integrity: sha512-Eaw2YTGM6WOxA6CXbckaEvslr2Ne4NFsKrvc0v97JD5awbmeBLO5w9Ho9L9kmKonrwF9RJlW6BxT1PVv/agBHQ==}
|
|
2266
2406
|
engines: {node: '>=16.9.0'}
|
|
2267
2407
|
|
|
2408
|
+
ieee754@1.2.1:
|
|
2409
|
+
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
|
2410
|
+
|
|
2268
2411
|
ignore@5.3.2:
|
|
2269
2412
|
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
2270
2413
|
engines: {node: '>= 4'}
|
|
@@ -2277,6 +2420,12 @@ packages:
|
|
|
2277
2420
|
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
2278
2421
|
engines: {node: '>=0.8.19'}
|
|
2279
2422
|
|
|
2423
|
+
inherits@2.0.4:
|
|
2424
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
2425
|
+
|
|
2426
|
+
ini@1.3.8:
|
|
2427
|
+
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
|
|
2428
|
+
|
|
2280
2429
|
input-otp@1.4.2:
|
|
2281
2430
|
resolution: {integrity: sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA==}
|
|
2282
2431
|
peerDependencies:
|
|
@@ -2302,6 +2451,9 @@ packages:
|
|
|
2302
2451
|
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
|
|
2303
2452
|
hasBin: true
|
|
2304
2453
|
|
|
2454
|
+
js-base64@3.7.8:
|
|
2455
|
+
resolution: {integrity: sha512-hNngCeKxIUQiEUN3GPJOkz4wF/YvdUdbNL9hsBcMQTkKzboD7T/q3OYOuuPZLUE6dBxSGpwhk5mwuDud7JVAow==}
|
|
2456
|
+
|
|
2305
2457
|
js-tokens@4.0.0:
|
|
2306
2458
|
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
2307
2459
|
|
|
@@ -2335,6 +2487,11 @@ packages:
|
|
|
2335
2487
|
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
2336
2488
|
engines: {node: '>= 0.8.0'}
|
|
2337
2489
|
|
|
2490
|
+
libsql@0.5.22:
|
|
2491
|
+
resolution: {integrity: sha512-NscWthMQt7fpU8lqd7LXMvT9pi+KhhmTHAJWUB/Lj6MWa0MKFv0F2V4C6WKKpjCVZl0VwcDz4nOI3CyaT1DDiA==}
|
|
2492
|
+
cpu: [x64, arm64, wasm32, arm]
|
|
2493
|
+
os: [darwin, linux, win32]
|
|
2494
|
+
|
|
2338
2495
|
lightningcss-android-arm64@1.30.2:
|
|
2339
2496
|
resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
|
|
2340
2497
|
engines: {node: '>= 12.0.0'}
|
|
@@ -2434,6 +2591,10 @@ packages:
|
|
|
2434
2591
|
magic-string@0.30.21:
|
|
2435
2592
|
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
2436
2593
|
|
|
2594
|
+
mimic-response@3.1.0:
|
|
2595
|
+
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
|
|
2596
|
+
engines: {node: '>=10'}
|
|
2597
|
+
|
|
2437
2598
|
minimatch@3.1.2:
|
|
2438
2599
|
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
2439
2600
|
|
|
@@ -2441,6 +2602,12 @@ packages:
|
|
|
2441
2602
|
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
|
2442
2603
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
2443
2604
|
|
|
2605
|
+
minimist@1.2.8:
|
|
2606
|
+
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
|
2607
|
+
|
|
2608
|
+
mkdirp-classic@0.5.3:
|
|
2609
|
+
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
|
|
2610
|
+
|
|
2444
2611
|
motion-dom@11.18.1:
|
|
2445
2612
|
resolution: {integrity: sha512-g76KvA001z+atjfxczdRtw/RXOM3OMSdd1f4DL77qCTF/+avrRJiawSG4yDibEQ215sr9kpinSlX2pCTJ9zbhw==}
|
|
2446
2613
|
|
|
@@ -2455,6 +2622,9 @@ packages:
|
|
|
2455
2622
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
2456
2623
|
hasBin: true
|
|
2457
2624
|
|
|
2625
|
+
napi-build-utils@2.0.0:
|
|
2626
|
+
resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
|
|
2627
|
+
|
|
2458
2628
|
natural-compare@1.4.0:
|
|
2459
2629
|
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
2460
2630
|
|
|
@@ -2464,6 +2634,28 @@ packages:
|
|
|
2464
2634
|
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
2465
2635
|
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
2466
2636
|
|
|
2637
|
+
node-abi@3.89.0:
|
|
2638
|
+
resolution: {integrity: sha512-6u9UwL0HlAl21+agMN3YAMXcKByMqwGx+pq+P76vii5f7hTPtKDp08/H9py6DY+cfDw7kQNTGEj/rly3IgbNQA==}
|
|
2639
|
+
engines: {node: '>=10'}
|
|
2640
|
+
|
|
2641
|
+
node-domexception@1.0.0:
|
|
2642
|
+
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
|
|
2643
|
+
engines: {node: '>=10.5.0'}
|
|
2644
|
+
deprecated: Use your platform's native DOMException instead
|
|
2645
|
+
|
|
2646
|
+
node-fetch@2.7.0:
|
|
2647
|
+
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
|
|
2648
|
+
engines: {node: 4.x || >=6.0.0}
|
|
2649
|
+
peerDependencies:
|
|
2650
|
+
encoding: ^0.1.0
|
|
2651
|
+
peerDependenciesMeta:
|
|
2652
|
+
encoding:
|
|
2653
|
+
optional: true
|
|
2654
|
+
|
|
2655
|
+
node-fetch@3.3.2:
|
|
2656
|
+
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
|
|
2657
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
2658
|
+
|
|
2467
2659
|
node-releases@2.0.27:
|
|
2468
2660
|
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
|
|
2469
2661
|
|
|
@@ -2471,6 +2663,9 @@ packages:
|
|
|
2471
2663
|
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
|
2472
2664
|
engines: {node: '>=0.10.0'}
|
|
2473
2665
|
|
|
2666
|
+
once@1.4.0:
|
|
2667
|
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
|
2668
|
+
|
|
2474
2669
|
optionator@0.9.4:
|
|
2475
2670
|
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
2476
2671
|
engines: {node: '>= 0.8.0'}
|
|
@@ -2536,6 +2731,16 @@ packages:
|
|
|
2536
2731
|
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
|
|
2537
2732
|
engines: {node: '>=12'}
|
|
2538
2733
|
|
|
2734
|
+
playwright-core@1.58.2:
|
|
2735
|
+
resolution: {integrity: sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg==}
|
|
2736
|
+
engines: {node: '>=18'}
|
|
2737
|
+
hasBin: true
|
|
2738
|
+
|
|
2739
|
+
playwright@1.58.2:
|
|
2740
|
+
resolution: {integrity: sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A==}
|
|
2741
|
+
engines: {node: '>=18'}
|
|
2742
|
+
hasBin: true
|
|
2743
|
+
|
|
2539
2744
|
postcss@8.5.6:
|
|
2540
2745
|
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
2541
2746
|
engines: {node: ^10 || ^12 || >=14}
|
|
@@ -2556,17 +2761,33 @@ packages:
|
|
|
2556
2761
|
resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
|
|
2557
2762
|
engines: {node: '>=0.10.0'}
|
|
2558
2763
|
|
|
2764
|
+
prebuild-install@7.1.3:
|
|
2765
|
+
resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
|
|
2766
|
+
engines: {node: '>=10'}
|
|
2767
|
+
deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
|
|
2768
|
+
hasBin: true
|
|
2769
|
+
|
|
2559
2770
|
prelude-ls@1.2.1:
|
|
2560
2771
|
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
2561
2772
|
engines: {node: '>= 0.8.0'}
|
|
2562
2773
|
|
|
2774
|
+
promise-limit@2.7.0:
|
|
2775
|
+
resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==}
|
|
2776
|
+
|
|
2563
2777
|
prop-types@15.8.1:
|
|
2564
2778
|
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
|
|
2565
2779
|
|
|
2780
|
+
pump@3.0.4:
|
|
2781
|
+
resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==}
|
|
2782
|
+
|
|
2566
2783
|
punycode@2.3.1:
|
|
2567
2784
|
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
2568
2785
|
engines: {node: '>=6'}
|
|
2569
2786
|
|
|
2787
|
+
rc@1.2.8:
|
|
2788
|
+
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
|
|
2789
|
+
hasBin: true
|
|
2790
|
+
|
|
2570
2791
|
react-day-picker@9.13.0:
|
|
2571
2792
|
resolution: {integrity: sha512-euzj5Hlq+lOHqI53NiuNhCP8HWgsPf/bBAVijR50hNaY1XwjKjShAnIe8jm8RD2W9IJUvihDIZ+KrmqfFzNhFQ==}
|
|
2572
2793
|
engines: {node: '>=18'}
|
|
@@ -2659,6 +2880,10 @@ packages:
|
|
|
2659
2880
|
resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==}
|
|
2660
2881
|
engines: {node: '>=0.10.0'}
|
|
2661
2882
|
|
|
2883
|
+
readable-stream@3.6.2:
|
|
2884
|
+
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
2885
|
+
engines: {node: '>= 6'}
|
|
2886
|
+
|
|
2662
2887
|
recharts-scale@0.4.5:
|
|
2663
2888
|
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
|
|
2664
2889
|
|
|
@@ -2681,6 +2906,9 @@ packages:
|
|
|
2681
2906
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
2682
2907
|
hasBin: true
|
|
2683
2908
|
|
|
2909
|
+
safe-buffer@5.2.1:
|
|
2910
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
2911
|
+
|
|
2684
2912
|
scheduler@0.27.0:
|
|
2685
2913
|
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
|
|
2686
2914
|
|
|
@@ -2688,6 +2916,11 @@ packages:
|
|
|
2688
2916
|
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
2689
2917
|
hasBin: true
|
|
2690
2918
|
|
|
2919
|
+
semver@7.7.4:
|
|
2920
|
+
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
|
|
2921
|
+
engines: {node: '>=10'}
|
|
2922
|
+
hasBin: true
|
|
2923
|
+
|
|
2691
2924
|
shebang-command@2.0.0:
|
|
2692
2925
|
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
2693
2926
|
engines: {node: '>=8'}
|
|
@@ -2696,6 +2929,12 @@ packages:
|
|
|
2696
2929
|
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
2697
2930
|
engines: {node: '>=8'}
|
|
2698
2931
|
|
|
2932
|
+
simple-concat@1.0.1:
|
|
2933
|
+
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
|
|
2934
|
+
|
|
2935
|
+
simple-get@4.0.1:
|
|
2936
|
+
resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
|
|
2937
|
+
|
|
2699
2938
|
source-map-js@1.2.1:
|
|
2700
2939
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
2701
2940
|
engines: {node: '>=0.10.0'}
|
|
@@ -2711,6 +2950,13 @@ packages:
|
|
|
2711
2950
|
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
|
|
2712
2951
|
engines: {node: '>= 10.x'}
|
|
2713
2952
|
|
|
2953
|
+
string_decoder@1.3.0:
|
|
2954
|
+
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
2955
|
+
|
|
2956
|
+
strip-json-comments@2.0.1:
|
|
2957
|
+
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
|
|
2958
|
+
engines: {node: '>=0.10.0'}
|
|
2959
|
+
|
|
2714
2960
|
strip-json-comments@3.1.1:
|
|
2715
2961
|
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
2716
2962
|
engines: {node: '>=8'}
|
|
@@ -2734,6 +2980,13 @@ packages:
|
|
|
2734
2980
|
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
|
|
2735
2981
|
engines: {node: '>=6'}
|
|
2736
2982
|
|
|
2983
|
+
tar-fs@2.1.4:
|
|
2984
|
+
resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==}
|
|
2985
|
+
|
|
2986
|
+
tar-stream@2.2.0:
|
|
2987
|
+
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
|
|
2988
|
+
engines: {node: '>=6'}
|
|
2989
|
+
|
|
2737
2990
|
tiny-invariant@1.3.3:
|
|
2738
2991
|
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
|
|
2739
2992
|
|
|
@@ -2741,9 +2994,15 @@ packages:
|
|
|
2741
2994
|
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
2742
2995
|
engines: {node: '>=12.0.0'}
|
|
2743
2996
|
|
|
2997
|
+
tr46@0.0.3:
|
|
2998
|
+
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
|
|
2999
|
+
|
|
2744
3000
|
tslib@2.8.1:
|
|
2745
3001
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
2746
3002
|
|
|
3003
|
+
tunnel-agent@0.6.0:
|
|
3004
|
+
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
|
|
3005
|
+
|
|
2747
3006
|
type-check@0.4.0:
|
|
2748
3007
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
2749
3008
|
engines: {node: '>= 0.8.0'}
|
|
@@ -2790,6 +3049,9 @@ packages:
|
|
|
2790
3049
|
peerDependencies:
|
|
2791
3050
|
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
2792
3051
|
|
|
3052
|
+
util-deprecate@1.0.2:
|
|
3053
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
3054
|
+
|
|
2793
3055
|
vaul@1.1.2:
|
|
2794
3056
|
resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
|
|
2795
3057
|
peerDependencies:
|
|
@@ -2839,6 +3101,16 @@ packages:
|
|
|
2839
3101
|
yaml:
|
|
2840
3102
|
optional: true
|
|
2841
3103
|
|
|
3104
|
+
web-streams-polyfill@3.3.3:
|
|
3105
|
+
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
|
|
3106
|
+
engines: {node: '>= 8'}
|
|
3107
|
+
|
|
3108
|
+
webidl-conversions@3.0.1:
|
|
3109
|
+
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
|
|
3110
|
+
|
|
3111
|
+
whatwg-url@5.0.0:
|
|
3112
|
+
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
|
|
3113
|
+
|
|
2842
3114
|
which@2.0.2:
|
|
2843
3115
|
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
2844
3116
|
engines: {node: '>= 8'}
|
|
@@ -2848,6 +3120,21 @@ packages:
|
|
|
2848
3120
|
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
2849
3121
|
engines: {node: '>=0.10.0'}
|
|
2850
3122
|
|
|
3123
|
+
wrappy@1.0.2:
|
|
3124
|
+
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
3125
|
+
|
|
3126
|
+
ws@8.19.0:
|
|
3127
|
+
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
3128
|
+
engines: {node: '>=10.0.0'}
|
|
3129
|
+
peerDependencies:
|
|
3130
|
+
bufferutil: ^4.0.1
|
|
3131
|
+
utf-8-validate: '>=5.0.2'
|
|
3132
|
+
peerDependenciesMeta:
|
|
3133
|
+
bufferutil:
|
|
3134
|
+
optional: true
|
|
3135
|
+
utf-8-validate:
|
|
3136
|
+
optional: true
|
|
3137
|
+
|
|
2851
3138
|
xtend@4.0.2:
|
|
2852
3139
|
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
|
2853
3140
|
engines: {node: '>=0.4'}
|
|
@@ -3324,6 +3611,74 @@ snapshots:
|
|
|
3324
3611
|
'@jridgewell/resolve-uri': 3.1.2
|
|
3325
3612
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3326
3613
|
|
|
3614
|
+
'@libsql/client@0.17.0':
|
|
3615
|
+
dependencies:
|
|
3616
|
+
'@libsql/core': 0.17.0
|
|
3617
|
+
'@libsql/hrana-client': 0.9.0
|
|
3618
|
+
js-base64: 3.7.8
|
|
3619
|
+
libsql: 0.5.22
|
|
3620
|
+
promise-limit: 2.7.0
|
|
3621
|
+
transitivePeerDependencies:
|
|
3622
|
+
- bufferutil
|
|
3623
|
+
- encoding
|
|
3624
|
+
- utf-8-validate
|
|
3625
|
+
|
|
3626
|
+
'@libsql/core@0.17.0':
|
|
3627
|
+
dependencies:
|
|
3628
|
+
js-base64: 3.7.8
|
|
3629
|
+
|
|
3630
|
+
'@libsql/darwin-arm64@0.5.22':
|
|
3631
|
+
optional: true
|
|
3632
|
+
|
|
3633
|
+
'@libsql/darwin-x64@0.5.22':
|
|
3634
|
+
optional: true
|
|
3635
|
+
|
|
3636
|
+
'@libsql/hrana-client@0.9.0':
|
|
3637
|
+
dependencies:
|
|
3638
|
+
'@libsql/isomorphic-ws': 0.1.5
|
|
3639
|
+
cross-fetch: 4.1.0
|
|
3640
|
+
js-base64: 3.7.8
|
|
3641
|
+
node-fetch: 3.3.2
|
|
3642
|
+
transitivePeerDependencies:
|
|
3643
|
+
- bufferutil
|
|
3644
|
+
- encoding
|
|
3645
|
+
- utf-8-validate
|
|
3646
|
+
|
|
3647
|
+
'@libsql/isomorphic-ws@0.1.5':
|
|
3648
|
+
dependencies:
|
|
3649
|
+
'@types/ws': 8.18.1
|
|
3650
|
+
ws: 8.19.0
|
|
3651
|
+
transitivePeerDependencies:
|
|
3652
|
+
- bufferutil
|
|
3653
|
+
- utf-8-validate
|
|
3654
|
+
|
|
3655
|
+
'@libsql/linux-arm-gnueabihf@0.5.22':
|
|
3656
|
+
optional: true
|
|
3657
|
+
|
|
3658
|
+
'@libsql/linux-arm-musleabihf@0.5.22':
|
|
3659
|
+
optional: true
|
|
3660
|
+
|
|
3661
|
+
'@libsql/linux-arm64-gnu@0.5.22':
|
|
3662
|
+
optional: true
|
|
3663
|
+
|
|
3664
|
+
'@libsql/linux-arm64-musl@0.5.22':
|
|
3665
|
+
optional: true
|
|
3666
|
+
|
|
3667
|
+
'@libsql/linux-x64-gnu@0.5.22':
|
|
3668
|
+
optional: true
|
|
3669
|
+
|
|
3670
|
+
'@libsql/linux-x64-musl@0.5.22':
|
|
3671
|
+
optional: true
|
|
3672
|
+
|
|
3673
|
+
'@libsql/win32-x64-msvc@0.5.22':
|
|
3674
|
+
optional: true
|
|
3675
|
+
|
|
3676
|
+
'@neon-rs/load@0.0.4': {}
|
|
3677
|
+
|
|
3678
|
+
'@playwright/test@1.58.2':
|
|
3679
|
+
dependencies:
|
|
3680
|
+
playwright: 1.58.2
|
|
3681
|
+
|
|
3327
3682
|
'@radix-ui/number@1.1.1': {}
|
|
3328
3683
|
|
|
3329
3684
|
'@radix-ui/primitive@1.1.3': {}
|
|
@@ -4195,6 +4550,11 @@ snapshots:
|
|
|
4195
4550
|
dependencies:
|
|
4196
4551
|
'@babel/types': 7.29.0
|
|
4197
4552
|
|
|
4553
|
+
'@types/better-sqlite3@7.6.13':
|
|
4554
|
+
dependencies:
|
|
4555
|
+
'@types/node': 20.19.31
|
|
4556
|
+
optional: true
|
|
4557
|
+
|
|
4198
4558
|
'@types/d3-array@3.2.2': {}
|
|
4199
4559
|
|
|
4200
4560
|
'@types/d3-color@3.1.3': {}
|
|
@@ -4235,6 +4595,10 @@ snapshots:
|
|
|
4235
4595
|
dependencies:
|
|
4236
4596
|
csstype: 3.2.3
|
|
4237
4597
|
|
|
4598
|
+
'@types/ws@8.18.1':
|
|
4599
|
+
dependencies:
|
|
4600
|
+
'@types/node': 20.19.31
|
|
4601
|
+
|
|
4238
4602
|
'@vitejs/plugin-react@5.1.4(vite@7.3.1(@types/node@20.19.31)(jiti@2.6.1)(lightningcss@1.30.2))':
|
|
4239
4603
|
dependencies:
|
|
4240
4604
|
'@babel/core': 7.29.0
|
|
@@ -4272,8 +4636,29 @@ snapshots:
|
|
|
4272
4636
|
|
|
4273
4637
|
balanced-match@1.0.2: {}
|
|
4274
4638
|
|
|
4639
|
+
base64-js@1.5.1:
|
|
4640
|
+
optional: true
|
|
4641
|
+
|
|
4275
4642
|
baseline-browser-mapping@2.9.19: {}
|
|
4276
4643
|
|
|
4644
|
+
better-sqlite3@11.10.0:
|
|
4645
|
+
dependencies:
|
|
4646
|
+
bindings: 1.5.0
|
|
4647
|
+
prebuild-install: 7.1.3
|
|
4648
|
+
optional: true
|
|
4649
|
+
|
|
4650
|
+
bindings@1.5.0:
|
|
4651
|
+
dependencies:
|
|
4652
|
+
file-uri-to-path: 1.0.0
|
|
4653
|
+
optional: true
|
|
4654
|
+
|
|
4655
|
+
bl@4.1.0:
|
|
4656
|
+
dependencies:
|
|
4657
|
+
buffer: 5.7.1
|
|
4658
|
+
inherits: 2.0.4
|
|
4659
|
+
readable-stream: 3.6.2
|
|
4660
|
+
optional: true
|
|
4661
|
+
|
|
4277
4662
|
brace-expansion@1.1.12:
|
|
4278
4663
|
dependencies:
|
|
4279
4664
|
balanced-match: 1.0.2
|
|
@@ -4293,6 +4678,12 @@ snapshots:
|
|
|
4293
4678
|
|
|
4294
4679
|
buffer-from@1.1.2: {}
|
|
4295
4680
|
|
|
4681
|
+
buffer@5.7.1:
|
|
4682
|
+
dependencies:
|
|
4683
|
+
base64-js: 1.5.1
|
|
4684
|
+
ieee754: 1.2.1
|
|
4685
|
+
optional: true
|
|
4686
|
+
|
|
4296
4687
|
callsites@3.1.0: {}
|
|
4297
4688
|
|
|
4298
4689
|
caniuse-lite@1.0.30001768: {}
|
|
@@ -4302,6 +4693,9 @@ snapshots:
|
|
|
4302
4693
|
ansi-styles: 4.3.0
|
|
4303
4694
|
supports-color: 7.2.0
|
|
4304
4695
|
|
|
4696
|
+
chownr@1.1.4:
|
|
4697
|
+
optional: true
|
|
4698
|
+
|
|
4305
4699
|
class-variance-authority@0.7.1:
|
|
4306
4700
|
dependencies:
|
|
4307
4701
|
clsx: 2.1.1
|
|
@@ -4330,6 +4724,12 @@ snapshots:
|
|
|
4330
4724
|
|
|
4331
4725
|
convert-source-map@2.0.0: {}
|
|
4332
4726
|
|
|
4727
|
+
cross-fetch@4.1.0:
|
|
4728
|
+
dependencies:
|
|
4729
|
+
node-fetch: 2.7.0
|
|
4730
|
+
transitivePeerDependencies:
|
|
4731
|
+
- encoding
|
|
4732
|
+
|
|
4333
4733
|
cross-spawn@7.0.6:
|
|
4334
4734
|
dependencies:
|
|
4335
4735
|
path-key: 3.1.1
|
|
@@ -4376,6 +4776,8 @@ snapshots:
|
|
|
4376
4776
|
|
|
4377
4777
|
d3-timer@3.0.1: {}
|
|
4378
4778
|
|
|
4779
|
+
data-uri-to-buffer@4.0.1: {}
|
|
4780
|
+
|
|
4379
4781
|
date-fns-jalali@4.1.0-0: {}
|
|
4380
4782
|
|
|
4381
4783
|
date-fns@4.1.0: {}
|
|
@@ -4386,8 +4788,18 @@ snapshots:
|
|
|
4386
4788
|
|
|
4387
4789
|
decimal.js-light@2.5.1: {}
|
|
4388
4790
|
|
|
4791
|
+
decompress-response@6.0.0:
|
|
4792
|
+
dependencies:
|
|
4793
|
+
mimic-response: 3.1.0
|
|
4794
|
+
optional: true
|
|
4795
|
+
|
|
4796
|
+
deep-extend@0.6.0:
|
|
4797
|
+
optional: true
|
|
4798
|
+
|
|
4389
4799
|
deep-is@0.1.4: {}
|
|
4390
4800
|
|
|
4801
|
+
detect-libc@2.0.2: {}
|
|
4802
|
+
|
|
4391
4803
|
detect-libc@2.1.2: {}
|
|
4392
4804
|
|
|
4393
4805
|
detect-node-es@1.1.0: {}
|
|
@@ -4406,13 +4818,16 @@ snapshots:
|
|
|
4406
4818
|
transitivePeerDependencies:
|
|
4407
4819
|
- supports-color
|
|
4408
4820
|
|
|
4409
|
-
drizzle-orm@0.39.3(pg@8.18.0):
|
|
4821
|
+
drizzle-orm@0.39.3(@libsql/client@0.17.0)(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(pg@8.18.0):
|
|
4410
4822
|
optionalDependencies:
|
|
4823
|
+
'@libsql/client': 0.17.0
|
|
4824
|
+
'@types/better-sqlite3': 7.6.13
|
|
4825
|
+
better-sqlite3: 11.10.0
|
|
4411
4826
|
pg: 8.18.0
|
|
4412
4827
|
|
|
4413
|
-
drizzle-zod@0.7.1(drizzle-orm@0.39.3(pg@8.18.0))(zod@4.3.6):
|
|
4828
|
+
drizzle-zod@0.7.1(drizzle-orm@0.39.3(@libsql/client@0.17.0)(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(pg@8.18.0))(zod@4.3.6):
|
|
4414
4829
|
dependencies:
|
|
4415
|
-
drizzle-orm: 0.39.3(pg@8.18.0)
|
|
4830
|
+
drizzle-orm: 0.39.3(@libsql/client@0.17.0)(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(pg@8.18.0)
|
|
4416
4831
|
zod: 4.3.6
|
|
4417
4832
|
|
|
4418
4833
|
electron-to-chromium@1.5.286: {}
|
|
@@ -4429,6 +4844,11 @@ snapshots:
|
|
|
4429
4844
|
|
|
4430
4845
|
embla-carousel@8.6.0: {}
|
|
4431
4846
|
|
|
4847
|
+
end-of-stream@1.4.5:
|
|
4848
|
+
dependencies:
|
|
4849
|
+
once: 1.4.0
|
|
4850
|
+
optional: true
|
|
4851
|
+
|
|
4432
4852
|
enhanced-resolve@5.19.0:
|
|
4433
4853
|
dependencies:
|
|
4434
4854
|
graceful-fs: 4.2.11
|
|
@@ -4598,6 +5018,9 @@ snapshots:
|
|
|
4598
5018
|
|
|
4599
5019
|
eventemitter3@4.0.7: {}
|
|
4600
5020
|
|
|
5021
|
+
expand-template@2.0.3:
|
|
5022
|
+
optional: true
|
|
5023
|
+
|
|
4601
5024
|
fast-deep-equal@3.1.3: {}
|
|
4602
5025
|
|
|
4603
5026
|
fast-equals@5.4.0: {}
|
|
@@ -4610,10 +5033,18 @@ snapshots:
|
|
|
4610
5033
|
optionalDependencies:
|
|
4611
5034
|
picomatch: 4.0.3
|
|
4612
5035
|
|
|
5036
|
+
fetch-blob@3.2.0:
|
|
5037
|
+
dependencies:
|
|
5038
|
+
node-domexception: 1.0.0
|
|
5039
|
+
web-streams-polyfill: 3.3.3
|
|
5040
|
+
|
|
4613
5041
|
file-entry-cache@8.0.0:
|
|
4614
5042
|
dependencies:
|
|
4615
5043
|
flat-cache: 4.0.1
|
|
4616
5044
|
|
|
5045
|
+
file-uri-to-path@1.0.0:
|
|
5046
|
+
optional: true
|
|
5047
|
+
|
|
4617
5048
|
find-up@5.0.0:
|
|
4618
5049
|
dependencies:
|
|
4619
5050
|
locate-path: 6.0.0
|
|
@@ -4626,6 +5057,10 @@ snapshots:
|
|
|
4626
5057
|
|
|
4627
5058
|
flatted@3.3.3: {}
|
|
4628
5059
|
|
|
5060
|
+
formdata-polyfill@4.0.10:
|
|
5061
|
+
dependencies:
|
|
5062
|
+
fetch-blob: 3.2.0
|
|
5063
|
+
|
|
4629
5064
|
framer-motion@11.18.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
4630
5065
|
dependencies:
|
|
4631
5066
|
motion-dom: 11.18.1
|
|
@@ -4635,6 +5070,12 @@ snapshots:
|
|
|
4635
5070
|
react: 19.2.3
|
|
4636
5071
|
react-dom: 19.2.3(react@19.2.3)
|
|
4637
5072
|
|
|
5073
|
+
fs-constants@1.0.0:
|
|
5074
|
+
optional: true
|
|
5075
|
+
|
|
5076
|
+
fsevents@2.3.2:
|
|
5077
|
+
optional: true
|
|
5078
|
+
|
|
4638
5079
|
fsevents@2.3.3:
|
|
4639
5080
|
optional: true
|
|
4640
5081
|
|
|
@@ -4646,6 +5087,9 @@ snapshots:
|
|
|
4646
5087
|
dependencies:
|
|
4647
5088
|
resolve-pkg-maps: 1.0.0
|
|
4648
5089
|
|
|
5090
|
+
github-from-package@0.0.0:
|
|
5091
|
+
optional: true
|
|
5092
|
+
|
|
4649
5093
|
glob-parent@6.0.2:
|
|
4650
5094
|
dependencies:
|
|
4651
5095
|
is-glob: 4.0.3
|
|
@@ -4658,6 +5102,9 @@ snapshots:
|
|
|
4658
5102
|
|
|
4659
5103
|
hono@4.11.9: {}
|
|
4660
5104
|
|
|
5105
|
+
ieee754@1.2.1:
|
|
5106
|
+
optional: true
|
|
5107
|
+
|
|
4661
5108
|
ignore@5.3.2: {}
|
|
4662
5109
|
|
|
4663
5110
|
import-fresh@3.3.1:
|
|
@@ -4667,6 +5114,12 @@ snapshots:
|
|
|
4667
5114
|
|
|
4668
5115
|
imurmurhash@0.1.4: {}
|
|
4669
5116
|
|
|
5117
|
+
inherits@2.0.4:
|
|
5118
|
+
optional: true
|
|
5119
|
+
|
|
5120
|
+
ini@1.3.8:
|
|
5121
|
+
optional: true
|
|
5122
|
+
|
|
4670
5123
|
input-otp@1.4.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
4671
5124
|
dependencies:
|
|
4672
5125
|
react: 19.2.3
|
|
@@ -4684,6 +5137,8 @@ snapshots:
|
|
|
4684
5137
|
|
|
4685
5138
|
jiti@2.6.1: {}
|
|
4686
5139
|
|
|
5140
|
+
js-base64@3.7.8: {}
|
|
5141
|
+
|
|
4687
5142
|
js-tokens@4.0.0: {}
|
|
4688
5143
|
|
|
4689
5144
|
js-yaml@4.1.1:
|
|
@@ -4709,6 +5164,21 @@ snapshots:
|
|
|
4709
5164
|
prelude-ls: 1.2.1
|
|
4710
5165
|
type-check: 0.4.0
|
|
4711
5166
|
|
|
5167
|
+
libsql@0.5.22:
|
|
5168
|
+
dependencies:
|
|
5169
|
+
'@neon-rs/load': 0.0.4
|
|
5170
|
+
detect-libc: 2.0.2
|
|
5171
|
+
optionalDependencies:
|
|
5172
|
+
'@libsql/darwin-arm64': 0.5.22
|
|
5173
|
+
'@libsql/darwin-x64': 0.5.22
|
|
5174
|
+
'@libsql/linux-arm-gnueabihf': 0.5.22
|
|
5175
|
+
'@libsql/linux-arm-musleabihf': 0.5.22
|
|
5176
|
+
'@libsql/linux-arm64-gnu': 0.5.22
|
|
5177
|
+
'@libsql/linux-arm64-musl': 0.5.22
|
|
5178
|
+
'@libsql/linux-x64-gnu': 0.5.22
|
|
5179
|
+
'@libsql/linux-x64-musl': 0.5.22
|
|
5180
|
+
'@libsql/win32-x64-msvc': 0.5.22
|
|
5181
|
+
|
|
4712
5182
|
lightningcss-android-arm64@1.30.2:
|
|
4713
5183
|
optional: true
|
|
4714
5184
|
|
|
@@ -4782,6 +5252,9 @@ snapshots:
|
|
|
4782
5252
|
dependencies:
|
|
4783
5253
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
4784
5254
|
|
|
5255
|
+
mimic-response@3.1.0:
|
|
5256
|
+
optional: true
|
|
5257
|
+
|
|
4785
5258
|
minimatch@3.1.2:
|
|
4786
5259
|
dependencies:
|
|
4787
5260
|
brace-expansion: 1.1.12
|
|
@@ -4790,6 +5263,12 @@ snapshots:
|
|
|
4790
5263
|
dependencies:
|
|
4791
5264
|
brace-expansion: 2.0.2
|
|
4792
5265
|
|
|
5266
|
+
minimist@1.2.8:
|
|
5267
|
+
optional: true
|
|
5268
|
+
|
|
5269
|
+
mkdirp-classic@0.5.3:
|
|
5270
|
+
optional: true
|
|
5271
|
+
|
|
4793
5272
|
motion-dom@11.18.1:
|
|
4794
5273
|
dependencies:
|
|
4795
5274
|
motion-utils: 11.18.1
|
|
@@ -4800,6 +5279,9 @@ snapshots:
|
|
|
4800
5279
|
|
|
4801
5280
|
nanoid@3.3.11: {}
|
|
4802
5281
|
|
|
5282
|
+
napi-build-utils@2.0.0:
|
|
5283
|
+
optional: true
|
|
5284
|
+
|
|
4803
5285
|
natural-compare@1.4.0: {}
|
|
4804
5286
|
|
|
4805
5287
|
next-themes@0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
@@ -4807,10 +5289,32 @@ snapshots:
|
|
|
4807
5289
|
react: 19.2.3
|
|
4808
5290
|
react-dom: 19.2.3(react@19.2.3)
|
|
4809
5291
|
|
|
5292
|
+
node-abi@3.89.0:
|
|
5293
|
+
dependencies:
|
|
5294
|
+
semver: 7.7.4
|
|
5295
|
+
optional: true
|
|
5296
|
+
|
|
5297
|
+
node-domexception@1.0.0: {}
|
|
5298
|
+
|
|
5299
|
+
node-fetch@2.7.0:
|
|
5300
|
+
dependencies:
|
|
5301
|
+
whatwg-url: 5.0.0
|
|
5302
|
+
|
|
5303
|
+
node-fetch@3.3.2:
|
|
5304
|
+
dependencies:
|
|
5305
|
+
data-uri-to-buffer: 4.0.1
|
|
5306
|
+
fetch-blob: 3.2.0
|
|
5307
|
+
formdata-polyfill: 4.0.10
|
|
5308
|
+
|
|
4810
5309
|
node-releases@2.0.27: {}
|
|
4811
5310
|
|
|
4812
5311
|
object-assign@4.1.1: {}
|
|
4813
5312
|
|
|
5313
|
+
once@1.4.0:
|
|
5314
|
+
dependencies:
|
|
5315
|
+
wrappy: 1.0.2
|
|
5316
|
+
optional: true
|
|
5317
|
+
|
|
4814
5318
|
optionator@0.9.4:
|
|
4815
5319
|
dependencies:
|
|
4816
5320
|
deep-is: 0.1.4
|
|
@@ -4839,15 +5343,19 @@ snapshots:
|
|
|
4839
5343
|
pg-cloudflare@1.3.0:
|
|
4840
5344
|
optional: true
|
|
4841
5345
|
|
|
4842
|
-
pg-connection-string@2.11.0:
|
|
5346
|
+
pg-connection-string@2.11.0:
|
|
5347
|
+
optional: true
|
|
4843
5348
|
|
|
4844
|
-
pg-int8@1.0.1:
|
|
5349
|
+
pg-int8@1.0.1:
|
|
5350
|
+
optional: true
|
|
4845
5351
|
|
|
4846
5352
|
pg-pool@3.11.0(pg@8.18.0):
|
|
4847
5353
|
dependencies:
|
|
4848
5354
|
pg: 8.18.0
|
|
5355
|
+
optional: true
|
|
4849
5356
|
|
|
4850
|
-
pg-protocol@1.11.0:
|
|
5357
|
+
pg-protocol@1.11.0:
|
|
5358
|
+
optional: true
|
|
4851
5359
|
|
|
4852
5360
|
pg-types@2.2.0:
|
|
4853
5361
|
dependencies:
|
|
@@ -4856,6 +5364,7 @@ snapshots:
|
|
|
4856
5364
|
postgres-bytea: 1.0.1
|
|
4857
5365
|
postgres-date: 1.0.7
|
|
4858
5366
|
postgres-interval: 1.2.0
|
|
5367
|
+
optional: true
|
|
4859
5368
|
|
|
4860
5369
|
pg@8.18.0:
|
|
4861
5370
|
dependencies:
|
|
@@ -4866,41 +5375,87 @@ snapshots:
|
|
|
4866
5375
|
pgpass: 1.0.5
|
|
4867
5376
|
optionalDependencies:
|
|
4868
5377
|
pg-cloudflare: 1.3.0
|
|
5378
|
+
optional: true
|
|
4869
5379
|
|
|
4870
5380
|
pgpass@1.0.5:
|
|
4871
5381
|
dependencies:
|
|
4872
5382
|
split2: 4.2.0
|
|
5383
|
+
optional: true
|
|
4873
5384
|
|
|
4874
5385
|
picocolors@1.1.1: {}
|
|
4875
5386
|
|
|
4876
5387
|
picomatch@4.0.3: {}
|
|
4877
5388
|
|
|
5389
|
+
playwright-core@1.58.2: {}
|
|
5390
|
+
|
|
5391
|
+
playwright@1.58.2:
|
|
5392
|
+
dependencies:
|
|
5393
|
+
playwright-core: 1.58.2
|
|
5394
|
+
optionalDependencies:
|
|
5395
|
+
fsevents: 2.3.2
|
|
5396
|
+
|
|
4878
5397
|
postcss@8.5.6:
|
|
4879
5398
|
dependencies:
|
|
4880
5399
|
nanoid: 3.3.11
|
|
4881
5400
|
picocolors: 1.1.1
|
|
4882
5401
|
source-map-js: 1.2.1
|
|
4883
5402
|
|
|
4884
|
-
postgres-array@2.0.0:
|
|
5403
|
+
postgres-array@2.0.0:
|
|
5404
|
+
optional: true
|
|
4885
5405
|
|
|
4886
|
-
postgres-bytea@1.0.1:
|
|
5406
|
+
postgres-bytea@1.0.1:
|
|
5407
|
+
optional: true
|
|
4887
5408
|
|
|
4888
|
-
postgres-date@1.0.7:
|
|
5409
|
+
postgres-date@1.0.7:
|
|
5410
|
+
optional: true
|
|
4889
5411
|
|
|
4890
5412
|
postgres-interval@1.2.0:
|
|
4891
5413
|
dependencies:
|
|
4892
5414
|
xtend: 4.0.2
|
|
5415
|
+
optional: true
|
|
5416
|
+
|
|
5417
|
+
prebuild-install@7.1.3:
|
|
5418
|
+
dependencies:
|
|
5419
|
+
detect-libc: 2.1.2
|
|
5420
|
+
expand-template: 2.0.3
|
|
5421
|
+
github-from-package: 0.0.0
|
|
5422
|
+
minimist: 1.2.8
|
|
5423
|
+
mkdirp-classic: 0.5.3
|
|
5424
|
+
napi-build-utils: 2.0.0
|
|
5425
|
+
node-abi: 3.89.0
|
|
5426
|
+
pump: 3.0.4
|
|
5427
|
+
rc: 1.2.8
|
|
5428
|
+
simple-get: 4.0.1
|
|
5429
|
+
tar-fs: 2.1.4
|
|
5430
|
+
tunnel-agent: 0.6.0
|
|
5431
|
+
optional: true
|
|
4893
5432
|
|
|
4894
5433
|
prelude-ls@1.2.1: {}
|
|
4895
5434
|
|
|
5435
|
+
promise-limit@2.7.0: {}
|
|
5436
|
+
|
|
4896
5437
|
prop-types@15.8.1:
|
|
4897
5438
|
dependencies:
|
|
4898
5439
|
loose-envify: 1.4.0
|
|
4899
5440
|
object-assign: 4.1.1
|
|
4900
5441
|
react-is: 16.13.1
|
|
4901
5442
|
|
|
5443
|
+
pump@3.0.4:
|
|
5444
|
+
dependencies:
|
|
5445
|
+
end-of-stream: 1.4.5
|
|
5446
|
+
once: 1.4.0
|
|
5447
|
+
optional: true
|
|
5448
|
+
|
|
4902
5449
|
punycode@2.3.1: {}
|
|
4903
5450
|
|
|
5451
|
+
rc@1.2.8:
|
|
5452
|
+
dependencies:
|
|
5453
|
+
deep-extend: 0.6.0
|
|
5454
|
+
ini: 1.3.8
|
|
5455
|
+
minimist: 1.2.8
|
|
5456
|
+
strip-json-comments: 2.0.1
|
|
5457
|
+
optional: true
|
|
5458
|
+
|
|
4904
5459
|
react-day-picker@9.13.0(react@19.2.3):
|
|
4905
5460
|
dependencies:
|
|
4906
5461
|
'@date-fns/tz': 1.4.1
|
|
@@ -4986,6 +5541,13 @@ snapshots:
|
|
|
4986
5541
|
|
|
4987
5542
|
react@19.2.3: {}
|
|
4988
5543
|
|
|
5544
|
+
readable-stream@3.6.2:
|
|
5545
|
+
dependencies:
|
|
5546
|
+
inherits: 2.0.4
|
|
5547
|
+
string_decoder: 1.3.0
|
|
5548
|
+
util-deprecate: 1.0.2
|
|
5549
|
+
optional: true
|
|
5550
|
+
|
|
4989
5551
|
recharts-scale@0.4.5:
|
|
4990
5552
|
dependencies:
|
|
4991
5553
|
decimal.js-light: 2.5.1
|
|
@@ -5038,16 +5600,32 @@ snapshots:
|
|
|
5038
5600
|
'@rollup/rollup-win32-x64-msvc': 4.57.1
|
|
5039
5601
|
fsevents: 2.3.3
|
|
5040
5602
|
|
|
5603
|
+
safe-buffer@5.2.1:
|
|
5604
|
+
optional: true
|
|
5605
|
+
|
|
5041
5606
|
scheduler@0.27.0: {}
|
|
5042
5607
|
|
|
5043
5608
|
semver@6.3.1: {}
|
|
5044
5609
|
|
|
5610
|
+
semver@7.7.4:
|
|
5611
|
+
optional: true
|
|
5612
|
+
|
|
5045
5613
|
shebang-command@2.0.0:
|
|
5046
5614
|
dependencies:
|
|
5047
5615
|
shebang-regex: 3.0.0
|
|
5048
5616
|
|
|
5049
5617
|
shebang-regex@3.0.0: {}
|
|
5050
5618
|
|
|
5619
|
+
simple-concat@1.0.1:
|
|
5620
|
+
optional: true
|
|
5621
|
+
|
|
5622
|
+
simple-get@4.0.1:
|
|
5623
|
+
dependencies:
|
|
5624
|
+
decompress-response: 6.0.0
|
|
5625
|
+
once: 1.4.0
|
|
5626
|
+
simple-concat: 1.0.1
|
|
5627
|
+
optional: true
|
|
5628
|
+
|
|
5051
5629
|
source-map-js@1.2.1: {}
|
|
5052
5630
|
|
|
5053
5631
|
source-map-support@0.5.21:
|
|
@@ -5057,7 +5635,16 @@ snapshots:
|
|
|
5057
5635
|
|
|
5058
5636
|
source-map@0.6.1: {}
|
|
5059
5637
|
|
|
5060
|
-
split2@4.2.0:
|
|
5638
|
+
split2@4.2.0:
|
|
5639
|
+
optional: true
|
|
5640
|
+
|
|
5641
|
+
string_decoder@1.3.0:
|
|
5642
|
+
dependencies:
|
|
5643
|
+
safe-buffer: 5.2.1
|
|
5644
|
+
optional: true
|
|
5645
|
+
|
|
5646
|
+
strip-json-comments@2.0.1:
|
|
5647
|
+
optional: true
|
|
5061
5648
|
|
|
5062
5649
|
strip-json-comments@3.1.1: {}
|
|
5063
5650
|
|
|
@@ -5075,6 +5662,23 @@ snapshots:
|
|
|
5075
5662
|
|
|
5076
5663
|
tapable@2.3.0: {}
|
|
5077
5664
|
|
|
5665
|
+
tar-fs@2.1.4:
|
|
5666
|
+
dependencies:
|
|
5667
|
+
chownr: 1.1.4
|
|
5668
|
+
mkdirp-classic: 0.5.3
|
|
5669
|
+
pump: 3.0.4
|
|
5670
|
+
tar-stream: 2.2.0
|
|
5671
|
+
optional: true
|
|
5672
|
+
|
|
5673
|
+
tar-stream@2.2.0:
|
|
5674
|
+
dependencies:
|
|
5675
|
+
bl: 4.1.0
|
|
5676
|
+
end-of-stream: 1.4.5
|
|
5677
|
+
fs-constants: 1.0.0
|
|
5678
|
+
inherits: 2.0.4
|
|
5679
|
+
readable-stream: 3.6.2
|
|
5680
|
+
optional: true
|
|
5681
|
+
|
|
5078
5682
|
tiny-invariant@1.3.3: {}
|
|
5079
5683
|
|
|
5080
5684
|
tinyglobby@0.2.15:
|
|
@@ -5082,8 +5686,15 @@ snapshots:
|
|
|
5082
5686
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
5083
5687
|
picomatch: 4.0.3
|
|
5084
5688
|
|
|
5689
|
+
tr46@0.0.3: {}
|
|
5690
|
+
|
|
5085
5691
|
tslib@2.8.1: {}
|
|
5086
5692
|
|
|
5693
|
+
tunnel-agent@0.6.0:
|
|
5694
|
+
dependencies:
|
|
5695
|
+
safe-buffer: 5.2.1
|
|
5696
|
+
optional: true
|
|
5697
|
+
|
|
5087
5698
|
type-check@0.4.0:
|
|
5088
5699
|
dependencies:
|
|
5089
5700
|
prelude-ls: 1.2.1
|
|
@@ -5121,6 +5732,9 @@ snapshots:
|
|
|
5121
5732
|
dependencies:
|
|
5122
5733
|
react: 19.2.3
|
|
5123
5734
|
|
|
5735
|
+
util-deprecate@1.0.2:
|
|
5736
|
+
optional: true
|
|
5737
|
+
|
|
5124
5738
|
vaul@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
5125
5739
|
dependencies:
|
|
5126
5740
|
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
@@ -5161,13 +5775,28 @@ snapshots:
|
|
|
5161
5775
|
jiti: 2.6.1
|
|
5162
5776
|
lightningcss: 1.30.2
|
|
5163
5777
|
|
|
5778
|
+
web-streams-polyfill@3.3.3: {}
|
|
5779
|
+
|
|
5780
|
+
webidl-conversions@3.0.1: {}
|
|
5781
|
+
|
|
5782
|
+
whatwg-url@5.0.0:
|
|
5783
|
+
dependencies:
|
|
5784
|
+
tr46: 0.0.3
|
|
5785
|
+
webidl-conversions: 3.0.1
|
|
5786
|
+
|
|
5164
5787
|
which@2.0.2:
|
|
5165
5788
|
dependencies:
|
|
5166
5789
|
isexe: 2.0.0
|
|
5167
5790
|
|
|
5168
5791
|
word-wrap@1.2.5: {}
|
|
5169
5792
|
|
|
5170
|
-
|
|
5793
|
+
wrappy@1.0.2:
|
|
5794
|
+
optional: true
|
|
5795
|
+
|
|
5796
|
+
ws@8.19.0: {}
|
|
5797
|
+
|
|
5798
|
+
xtend@4.0.2:
|
|
5799
|
+
optional: true
|
|
5171
5800
|
|
|
5172
5801
|
yallist@3.1.1: {}
|
|
5173
5802
|
|