@coze-arch/cli 0.0.7 → 0.0.8-alpha.9a0dda

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.
Files changed (36) hide show
  1. package/lib/__templates__/expo/AGENTS.md +194 -17
  2. package/lib/__templates__/expo/README.md +194 -17
  3. package/lib/__templates__/expo/client/app/+not-found.tsx +4 -19
  4. package/lib/__templates__/expo/client/app/_layout.tsx +16 -22
  5. package/lib/__templates__/expo/client/components/ColorSchemeUpdater.tsx +43 -0
  6. package/lib/__templates__/expo/client/components/Provider.tsx +18 -0
  7. package/lib/__templates__/expo/client/components/Screen.tsx +1 -1
  8. package/lib/__templates__/expo/client/eslint.config.mjs +1 -0
  9. package/lib/__templates__/expo/client/global.css +267 -0
  10. package/lib/__templates__/expo/client/metro.config.js +8 -1
  11. package/lib/__templates__/expo/client/package.json +5 -2
  12. package/lib/__templates__/expo/client/screens/demo/index.tsx +7 -13
  13. package/lib/__templates__/expo/client/scripts/formatter.mjs +78 -0
  14. package/lib/__templates__/expo/client/scripts/reporter.mjs +1358 -0
  15. package/lib/__templates__/expo/client/scripts/stylish-formatter.mjs +153 -0
  16. package/lib/__templates__/expo/client/scripts/text-table.mjs +68 -0
  17. package/lib/__templates__/expo/client/uniwind-types.d.ts +10 -0
  18. package/lib/__templates__/expo/package.json +4 -1
  19. package/lib/__templates__/expo/pnpm-lock.yaml +510 -51
  20. package/lib/__templates__/expo/server/package.json +2 -1
  21. package/lib/__templates__/nextjs/scripts/build.sh +2 -2
  22. package/lib/__templates__/nextjs/scripts/dev.sh +1 -1
  23. package/lib/__templates__/nuxt-vue/nuxt.config.ts +13 -0
  24. package/lib/__templates__/nuxt-vue/scripts/build.sh +1 -1
  25. package/lib/__templates__/nuxt-vue/scripts/dev.sh +1 -1
  26. package/lib/__templates__/taro/eslint.config.mjs +132 -123
  27. package/lib/__templates__/vite/scripts/build.sh +2 -2
  28. package/lib/__templates__/vite/scripts/dev.sh +1 -1
  29. package/lib/cli.js +4236 -488
  30. package/package.json +3 -1
  31. package/lib/__templates__/expo/client/components/ThemedText.tsx +0 -33
  32. package/lib/__templates__/expo/client/components/ThemedView.tsx +0 -37
  33. package/lib/__templates__/expo/client/constants/theme.ts +0 -177
  34. package/lib/__templates__/expo/client/hooks/useColorScheme.tsx +0 -48
  35. package/lib/__templates__/expo/client/hooks/useTheme.ts +0 -33
  36. package/lib/__templates__/expo/client/screens/demo/styles.ts +0 -28
@@ -178,6 +178,9 @@ importers:
178
178
  '@types/react-test-renderer':
179
179
  specifier: 19.1.0
180
180
  version: 19.1.0
181
+ axios:
182
+ specifier: ^1.13.6
183
+ version: 1.13.6
181
184
  babel-plugin-module-resolver:
182
185
  specifier: ^5.0.2
183
186
  version: 5.0.2
@@ -198,25 +201,25 @@ importers:
198
201
  version: 0.27.2
199
202
  eslint:
200
203
  specifier: ^9.39.2
201
- version: 9.39.2
204
+ version: 9.39.2(jiti@2.6.1)
202
205
  eslint-formatter-compact:
203
206
  specifier: ^9.0.1
204
207
  version: 9.0.1
205
208
  eslint-import-resolver-typescript:
206
209
  specifier: ^4.4.4
207
- version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2)
210
+ version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1))
208
211
  eslint-plugin-import:
209
212
  specifier: ^2.32.0
210
- version: 2.32.0(@typescript-eslint/parser@8.53.1(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2)
213
+ version: 2.32.0(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@2.6.1))
211
214
  eslint-plugin-react:
212
215
  specifier: ^7.37.5
213
- version: 7.37.5(eslint@9.39.2)
216
+ version: 7.37.5(eslint@9.39.2(jiti@2.6.1))
214
217
  eslint-plugin-react-hooks:
215
218
  specifier: ^7.0.1
216
- version: 7.0.1(eslint@9.39.2)
219
+ version: 7.0.1(eslint@9.39.2(jiti@2.6.1))
217
220
  eslint-plugin-regexp:
218
221
  specifier: ^2.10.0
219
- version: 2.10.0(eslint@9.39.2)
222
+ version: 2.10.0(eslint@9.39.2(jiti@2.6.1))
220
223
  globals:
221
224
  specifier: ^16.1.0
222
225
  version: 16.5.0
@@ -232,6 +235,9 @@ importers:
232
235
  react-test-renderer:
233
236
  specifier: 19.1.0
234
237
  version: 19.1.0(react@19.1.0)
238
+ tailwindcss:
239
+ specifier: ^4.1.18
240
+ version: 4.2.2
235
241
  tsx:
236
242
  specifier: ^4.21.0
237
243
  version: 4.21.0
@@ -240,7 +246,10 @@ importers:
240
246
  version: 5.9.3
241
247
  typescript-eslint:
242
248
  specifier: ^8.32.1
243
- version: 8.53.1(eslint@9.39.2)(typescript@5.9.3)
249
+ version: 8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
250
+ uniwind:
251
+ specifier: ^1.2.7
252
+ version: 1.6.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.2)
244
253
 
245
254
  server:
246
255
  dependencies:
@@ -1704,6 +1713,95 @@ packages:
1704
1713
  resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
1705
1714
  engines: {node: '>=20.0.0'}
1706
1715
 
1716
+ '@tailwindcss/node@4.2.1':
1717
+ resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
1718
+
1719
+ '@tailwindcss/oxide-android-arm64@4.2.1':
1720
+ resolution: {integrity: sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==}
1721
+ engines: {node: '>= 20'}
1722
+ cpu: [arm64]
1723
+ os: [android]
1724
+
1725
+ '@tailwindcss/oxide-darwin-arm64@4.2.1':
1726
+ resolution: {integrity: sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==}
1727
+ engines: {node: '>= 20'}
1728
+ cpu: [arm64]
1729
+ os: [darwin]
1730
+
1731
+ '@tailwindcss/oxide-darwin-x64@4.2.1':
1732
+ resolution: {integrity: sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==}
1733
+ engines: {node: '>= 20'}
1734
+ cpu: [x64]
1735
+ os: [darwin]
1736
+
1737
+ '@tailwindcss/oxide-freebsd-x64@4.2.1':
1738
+ resolution: {integrity: sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==}
1739
+ engines: {node: '>= 20'}
1740
+ cpu: [x64]
1741
+ os: [freebsd]
1742
+
1743
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
1744
+ resolution: {integrity: sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==}
1745
+ engines: {node: '>= 20'}
1746
+ cpu: [arm]
1747
+ os: [linux]
1748
+
1749
+ '@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
1750
+ resolution: {integrity: sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==}
1751
+ engines: {node: '>= 20'}
1752
+ cpu: [arm64]
1753
+ os: [linux]
1754
+ libc: [glibc]
1755
+
1756
+ '@tailwindcss/oxide-linux-arm64-musl@4.2.1':
1757
+ resolution: {integrity: sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==}
1758
+ engines: {node: '>= 20'}
1759
+ cpu: [arm64]
1760
+ os: [linux]
1761
+ libc: [musl]
1762
+
1763
+ '@tailwindcss/oxide-linux-x64-gnu@4.2.1':
1764
+ resolution: {integrity: sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==}
1765
+ engines: {node: '>= 20'}
1766
+ cpu: [x64]
1767
+ os: [linux]
1768
+ libc: [glibc]
1769
+
1770
+ '@tailwindcss/oxide-linux-x64-musl@4.2.1':
1771
+ resolution: {integrity: sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==}
1772
+ engines: {node: '>= 20'}
1773
+ cpu: [x64]
1774
+ os: [linux]
1775
+ libc: [musl]
1776
+
1777
+ '@tailwindcss/oxide-wasm32-wasi@4.2.1':
1778
+ resolution: {integrity: sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==}
1779
+ engines: {node: '>=14.0.0'}
1780
+ cpu: [wasm32]
1781
+ bundledDependencies:
1782
+ - '@napi-rs/wasm-runtime'
1783
+ - '@emnapi/core'
1784
+ - '@emnapi/runtime'
1785
+ - '@tybys/wasm-util'
1786
+ - '@emnapi/wasi-threads'
1787
+ - tslib
1788
+
1789
+ '@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
1790
+ resolution: {integrity: sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==}
1791
+ engines: {node: '>= 20'}
1792
+ cpu: [arm64]
1793
+ os: [win32]
1794
+
1795
+ '@tailwindcss/oxide-win32-x64-msvc@4.2.1':
1796
+ resolution: {integrity: sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==}
1797
+ engines: {node: '>= 20'}
1798
+ cpu: [x64]
1799
+ os: [win32]
1800
+
1801
+ '@tailwindcss/oxide@4.2.1':
1802
+ resolution: {integrity: sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==}
1803
+ engines: {node: '>= 20'}
1804
+
1707
1805
  '@tootallnate/once@2.0.0':
1708
1806
  resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
1709
1807
  engines: {node: '>= 10'}
@@ -2182,8 +2280,8 @@ packages:
2182
2280
  resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
2183
2281
  engines: {node: '>= 0.4'}
2184
2282
 
2185
- axios@1.13.3:
2186
- resolution: {integrity: sha512-ERT8kdX7DZjtUm7IitEyV7InTHAF42iJuMArIiDIV5YtPanJkgw4hw5Dyg9fh0mihdWNn1GKaeIWErfe56UQ1g==}
2283
+ axios@1.13.6:
2284
+ resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
2187
2285
 
2188
2286
  babel-jest@29.7.0:
2189
2287
  resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
@@ -2563,6 +2661,10 @@ packages:
2563
2661
  csstype@3.2.3:
2564
2662
  resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
2565
2663
 
2664
+ culori@4.0.2:
2665
+ resolution: {integrity: sha512-1+BhOB8ahCn4O0cep0Sh2l9KCOfOdY+BXJnKMHFFzDEouSr/el18QwXEMRlOj9UY5nCeA8UN3a/82rUWRBeyBw==}
2666
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
2667
+
2566
2668
  data-urls@3.0.2:
2567
2669
  resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
2568
2670
  engines: {node: '>=12'}
@@ -2852,6 +2954,10 @@ packages:
2852
2954
  resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
2853
2955
  engines: {node: '>= 0.8'}
2854
2956
 
2957
+ enhanced-resolve@5.20.1:
2958
+ resolution: {integrity: sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==}
2959
+ engines: {node: '>=10.13.0'}
2960
+
2855
2961
  entities@4.5.0:
2856
2962
  resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
2857
2963
  engines: {node: '>=0.12'}
@@ -4043,6 +4149,10 @@ packages:
4043
4149
  jimp-compact@0.16.1:
4044
4150
  resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==}
4045
4151
 
4152
+ jiti@2.6.1:
4153
+ resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
4154
+ hasBin: true
4155
+
4046
4156
  js-base64@3.7.8:
4047
4157
  resolution: {integrity: sha512-hNngCeKxIUQiEUN3GPJOkz4wF/YvdUdbNL9hsBcMQTkKzboD7T/q3OYOuuPZLUE6dBxSGpwhk5mwuDud7JVAow==}
4048
4158
 
@@ -4151,30 +4261,91 @@ packages:
4151
4261
  cpu: [arm64]
4152
4262
  os: [android]
4153
4263
 
4264
+ lightningcss-android-arm64@1.31.1:
4265
+ resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==}
4266
+ engines: {node: '>= 12.0.0'}
4267
+ cpu: [arm64]
4268
+ os: [android]
4269
+
4270
+ lightningcss-darwin-arm64@1.30.1:
4271
+ resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
4272
+ engines: {node: '>= 12.0.0'}
4273
+ cpu: [arm64]
4274
+ os: [darwin]
4275
+
4154
4276
  lightningcss-darwin-arm64@1.30.2:
4155
4277
  resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
4156
4278
  engines: {node: '>= 12.0.0'}
4157
4279
  cpu: [arm64]
4158
4280
  os: [darwin]
4159
4281
 
4282
+ lightningcss-darwin-arm64@1.31.1:
4283
+ resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==}
4284
+ engines: {node: '>= 12.0.0'}
4285
+ cpu: [arm64]
4286
+ os: [darwin]
4287
+
4288
+ lightningcss-darwin-x64@1.30.1:
4289
+ resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
4290
+ engines: {node: '>= 12.0.0'}
4291
+ cpu: [x64]
4292
+ os: [darwin]
4293
+
4160
4294
  lightningcss-darwin-x64@1.30.2:
4161
4295
  resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
4162
4296
  engines: {node: '>= 12.0.0'}
4163
4297
  cpu: [x64]
4164
4298
  os: [darwin]
4165
4299
 
4300
+ lightningcss-darwin-x64@1.31.1:
4301
+ resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==}
4302
+ engines: {node: '>= 12.0.0'}
4303
+ cpu: [x64]
4304
+ os: [darwin]
4305
+
4306
+ lightningcss-freebsd-x64@1.30.1:
4307
+ resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
4308
+ engines: {node: '>= 12.0.0'}
4309
+ cpu: [x64]
4310
+ os: [freebsd]
4311
+
4166
4312
  lightningcss-freebsd-x64@1.30.2:
4167
4313
  resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
4168
4314
  engines: {node: '>= 12.0.0'}
4169
4315
  cpu: [x64]
4170
4316
  os: [freebsd]
4171
4317
 
4318
+ lightningcss-freebsd-x64@1.31.1:
4319
+ resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==}
4320
+ engines: {node: '>= 12.0.0'}
4321
+ cpu: [x64]
4322
+ os: [freebsd]
4323
+
4324
+ lightningcss-linux-arm-gnueabihf@1.30.1:
4325
+ resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
4326
+ engines: {node: '>= 12.0.0'}
4327
+ cpu: [arm]
4328
+ os: [linux]
4329
+
4172
4330
  lightningcss-linux-arm-gnueabihf@1.30.2:
4173
4331
  resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
4174
4332
  engines: {node: '>= 12.0.0'}
4175
4333
  cpu: [arm]
4176
4334
  os: [linux]
4177
4335
 
4336
+ lightningcss-linux-arm-gnueabihf@1.31.1:
4337
+ resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==}
4338
+ engines: {node: '>= 12.0.0'}
4339
+ cpu: [arm]
4340
+ os: [linux]
4341
+
4342
+ lightningcss-linux-arm64-gnu@1.30.1:
4343
+ resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
4344
+ engines: {node: '>= 12.0.0'}
4345
+ cpu: [arm64]
4346
+ os: [linux]
4347
+ libc: [glibc]
4348
+
4178
4349
  lightningcss-linux-arm64-gnu@1.30.2:
4179
4350
  resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
4180
4351
  engines: {node: '>= 12.0.0'}
@@ -4182,6 +4353,20 @@ packages:
4182
4353
  os: [linux]
4183
4354
  libc: [glibc]
4184
4355
 
4356
+ lightningcss-linux-arm64-gnu@1.31.1:
4357
+ resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==}
4358
+ engines: {node: '>= 12.0.0'}
4359
+ cpu: [arm64]
4360
+ os: [linux]
4361
+ libc: [glibc]
4362
+
4363
+ lightningcss-linux-arm64-musl@1.30.1:
4364
+ resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
4365
+ engines: {node: '>= 12.0.0'}
4366
+ cpu: [arm64]
4367
+ os: [linux]
4368
+ libc: [musl]
4369
+
4185
4370
  lightningcss-linux-arm64-musl@1.30.2:
4186
4371
  resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
4187
4372
  engines: {node: '>= 12.0.0'}
@@ -4189,6 +4374,20 @@ packages:
4189
4374
  os: [linux]
4190
4375
  libc: [musl]
4191
4376
 
4377
+ lightningcss-linux-arm64-musl@1.31.1:
4378
+ resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
4379
+ engines: {node: '>= 12.0.0'}
4380
+ cpu: [arm64]
4381
+ os: [linux]
4382
+ libc: [musl]
4383
+
4384
+ lightningcss-linux-x64-gnu@1.30.1:
4385
+ resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
4386
+ engines: {node: '>= 12.0.0'}
4387
+ cpu: [x64]
4388
+ os: [linux]
4389
+ libc: [glibc]
4390
+
4192
4391
  lightningcss-linux-x64-gnu@1.30.2:
4193
4392
  resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
4194
4393
  engines: {node: '>= 12.0.0'}
@@ -4196,6 +4395,20 @@ packages:
4196
4395
  os: [linux]
4197
4396
  libc: [glibc]
4198
4397
 
4398
+ lightningcss-linux-x64-gnu@1.31.1:
4399
+ resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
4400
+ engines: {node: '>= 12.0.0'}
4401
+ cpu: [x64]
4402
+ os: [linux]
4403
+ libc: [glibc]
4404
+
4405
+ lightningcss-linux-x64-musl@1.30.1:
4406
+ resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
4407
+ engines: {node: '>= 12.0.0'}
4408
+ cpu: [x64]
4409
+ os: [linux]
4410
+ libc: [musl]
4411
+
4199
4412
  lightningcss-linux-x64-musl@1.30.2:
4200
4413
  resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
4201
4414
  engines: {node: '>= 12.0.0'}
@@ -4203,22 +4416,61 @@ packages:
4203
4416
  os: [linux]
4204
4417
  libc: [musl]
4205
4418
 
4419
+ lightningcss-linux-x64-musl@1.31.1:
4420
+ resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
4421
+ engines: {node: '>= 12.0.0'}
4422
+ cpu: [x64]
4423
+ os: [linux]
4424
+ libc: [musl]
4425
+
4426
+ lightningcss-win32-arm64-msvc@1.30.1:
4427
+ resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
4428
+ engines: {node: '>= 12.0.0'}
4429
+ cpu: [arm64]
4430
+ os: [win32]
4431
+
4206
4432
  lightningcss-win32-arm64-msvc@1.30.2:
4207
4433
  resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
4208
4434
  engines: {node: '>= 12.0.0'}
4209
4435
  cpu: [arm64]
4210
4436
  os: [win32]
4211
4437
 
4438
+ lightningcss-win32-arm64-msvc@1.31.1:
4439
+ resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
4440
+ engines: {node: '>= 12.0.0'}
4441
+ cpu: [arm64]
4442
+ os: [win32]
4443
+
4444
+ lightningcss-win32-x64-msvc@1.30.1:
4445
+ resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
4446
+ engines: {node: '>= 12.0.0'}
4447
+ cpu: [x64]
4448
+ os: [win32]
4449
+
4212
4450
  lightningcss-win32-x64-msvc@1.30.2:
4213
4451
  resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
4214
4452
  engines: {node: '>= 12.0.0'}
4215
4453
  cpu: [x64]
4216
4454
  os: [win32]
4217
4455
 
4456
+ lightningcss-win32-x64-msvc@1.31.1:
4457
+ resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==}
4458
+ engines: {node: '>= 12.0.0'}
4459
+ cpu: [x64]
4460
+ os: [win32]
4461
+
4462
+ lightningcss@1.30.1:
4463
+ resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
4464
+ engines: {node: '>= 12.0.0'}
4465
+
4218
4466
  lightningcss@1.30.2:
4219
4467
  resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
4220
4468
  engines: {node: '>= 12.0.0'}
4221
4469
 
4470
+ lightningcss@1.31.1:
4471
+ resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
4472
+ engines: {node: '>= 12.0.0'}
4473
+
4222
4474
  lines-and-columns@1.2.4:
4223
4475
  resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
4224
4476
 
@@ -4711,6 +4963,9 @@ packages:
4711
4963
  resolution: {integrity: sha512-3mqcLomDBXOo7Fo+UlaenG6f71bk1ZezPQy2JCmYHy2W2k5VKpP+Jbin9H0bjXynelTbglCqdFhSEkeIkKTYUA==}
4712
4964
  engines: {node: '>=0.11.0'}
4713
4965
 
4966
+ pg-cloudflare@1.3.0:
4967
+ resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
4968
+
4714
4969
  pg-connection-string@2.10.1:
4715
4970
  resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
4716
4971
 
@@ -5508,6 +5763,16 @@ packages:
5508
5763
  symbol-tree@3.2.4:
5509
5764
  resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
5510
5765
 
5766
+ tailwindcss@4.2.1:
5767
+ resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
5768
+
5769
+ tailwindcss@4.2.2:
5770
+ resolution: {integrity: sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==}
5771
+
5772
+ tapable@2.3.2:
5773
+ resolution: {integrity: sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==}
5774
+ engines: {node: '>=6'}
5775
+
5511
5776
  tar@7.5.6:
5512
5777
  resolution: {integrity: sha512-xqUeu2JAIJpXyvskvU3uvQW8PAmHrtXp2KDuMJwQqW8Sqq0CaZBAQ+dKS3RBXVhU4wC5NjAdKrmh84241gO9cA==}
5513
5778
  engines: {node: '>=18'}
@@ -5676,6 +5941,13 @@ packages:
5676
5941
  resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
5677
5942
  engines: {node: '>= 4.0.0'}
5678
5943
 
5944
+ uniwind@1.6.1:
5945
+ resolution: {integrity: sha512-aR7vEGccEHDCvjyNM5BE5ZVdbdVTVL6yIffYe65mgjedzOj82TcdWrvae+A3PSHwQTuC1E3/3HbOX/Y5GqMvRQ==}
5946
+ peerDependencies:
5947
+ react: '>=19.0.0'
5948
+ react-native: '>=0.81.0'
5949
+ tailwindcss: '>=4'
5950
+
5679
5951
  unpipe@1.0.0:
5680
5952
  resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
5681
5953
  engines: {node: '>= 0.8'}
@@ -6690,9 +6962,9 @@ snapshots:
6690
6962
  '@esbuild/win32-x64@0.27.2':
6691
6963
  optional: true
6692
6964
 
6693
- '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2)':
6965
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))':
6694
6966
  dependencies:
6695
- eslint: 9.39.2
6967
+ eslint: 9.39.2(jiti@2.6.1)
6696
6968
  eslint-visitor-keys: 3.4.3
6697
6969
 
6698
6970
  '@eslint-community/regexpp@4.12.2': {}
@@ -7746,6 +8018,67 @@ snapshots:
7746
8018
  - bufferutil
7747
8019
  - utf-8-validate
7748
8020
 
8021
+ '@tailwindcss/node@4.2.1':
8022
+ dependencies:
8023
+ '@jridgewell/remapping': 2.3.5
8024
+ enhanced-resolve: 5.20.1
8025
+ jiti: 2.6.1
8026
+ lightningcss: 1.31.1
8027
+ magic-string: 0.30.21
8028
+ source-map-js: 1.2.1
8029
+ tailwindcss: 4.2.1
8030
+
8031
+ '@tailwindcss/oxide-android-arm64@4.2.1':
8032
+ optional: true
8033
+
8034
+ '@tailwindcss/oxide-darwin-arm64@4.2.1':
8035
+ optional: true
8036
+
8037
+ '@tailwindcss/oxide-darwin-x64@4.2.1':
8038
+ optional: true
8039
+
8040
+ '@tailwindcss/oxide-freebsd-x64@4.2.1':
8041
+ optional: true
8042
+
8043
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
8044
+ optional: true
8045
+
8046
+ '@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
8047
+ optional: true
8048
+
8049
+ '@tailwindcss/oxide-linux-arm64-musl@4.2.1':
8050
+ optional: true
8051
+
8052
+ '@tailwindcss/oxide-linux-x64-gnu@4.2.1':
8053
+ optional: true
8054
+
8055
+ '@tailwindcss/oxide-linux-x64-musl@4.2.1':
8056
+ optional: true
8057
+
8058
+ '@tailwindcss/oxide-wasm32-wasi@4.2.1':
8059
+ optional: true
8060
+
8061
+ '@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
8062
+ optional: true
8063
+
8064
+ '@tailwindcss/oxide-win32-x64-msvc@4.2.1':
8065
+ optional: true
8066
+
8067
+ '@tailwindcss/oxide@4.2.1':
8068
+ optionalDependencies:
8069
+ '@tailwindcss/oxide-android-arm64': 4.2.1
8070
+ '@tailwindcss/oxide-darwin-arm64': 4.2.1
8071
+ '@tailwindcss/oxide-darwin-x64': 4.2.1
8072
+ '@tailwindcss/oxide-freebsd-x64': 4.2.1
8073
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.2.1
8074
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.2.1
8075
+ '@tailwindcss/oxide-linux-arm64-musl': 4.2.1
8076
+ '@tailwindcss/oxide-linux-x64-gnu': 4.2.1
8077
+ '@tailwindcss/oxide-linux-x64-musl': 4.2.1
8078
+ '@tailwindcss/oxide-wasm32-wasi': 4.2.1
8079
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.2.1
8080
+ '@tailwindcss/oxide-win32-x64-msvc': 4.2.1
8081
+
7749
8082
  '@tootallnate/once@2.0.0': {}
7750
8083
 
7751
8084
  '@tybys/wasm-util@0.10.1':
@@ -7896,15 +8229,15 @@ snapshots:
7896
8229
  dependencies:
7897
8230
  '@types/yargs-parser': 21.0.3
7898
8231
 
7899
- '@typescript-eslint/eslint-plugin@8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)':
8232
+ '@typescript-eslint/eslint-plugin@8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
7900
8233
  dependencies:
7901
8234
  '@eslint-community/regexpp': 4.12.2
7902
- '@typescript-eslint/parser': 8.53.1(eslint@9.39.2)(typescript@5.9.3)
8235
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
7903
8236
  '@typescript-eslint/scope-manager': 8.53.1
7904
- '@typescript-eslint/type-utils': 8.53.1(eslint@9.39.2)(typescript@5.9.3)
7905
- '@typescript-eslint/utils': 8.53.1(eslint@9.39.2)(typescript@5.9.3)
8237
+ '@typescript-eslint/type-utils': 8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
8238
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
7906
8239
  '@typescript-eslint/visitor-keys': 8.53.1
7907
- eslint: 9.39.2
8240
+ eslint: 9.39.2(jiti@2.6.1)
7908
8241
  ignore: 7.0.5
7909
8242
  natural-compare: 1.4.0
7910
8243
  ts-api-utils: 2.4.0(typescript@5.9.3)
@@ -7912,14 +8245,14 @@ snapshots:
7912
8245
  transitivePeerDependencies:
7913
8246
  - supports-color
7914
8247
 
7915
- '@typescript-eslint/parser@8.53.1(eslint@9.39.2)(typescript@5.9.3)':
8248
+ '@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
7916
8249
  dependencies:
7917
8250
  '@typescript-eslint/scope-manager': 8.53.1
7918
8251
  '@typescript-eslint/types': 8.53.1
7919
8252
  '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
7920
8253
  '@typescript-eslint/visitor-keys': 8.53.1
7921
8254
  debug: 4.4.3
7922
- eslint: 9.39.2
8255
+ eslint: 9.39.2(jiti@2.6.1)
7923
8256
  typescript: 5.9.3
7924
8257
  transitivePeerDependencies:
7925
8258
  - supports-color
@@ -7942,13 +8275,13 @@ snapshots:
7942
8275
  dependencies:
7943
8276
  typescript: 5.9.3
7944
8277
 
7945
- '@typescript-eslint/type-utils@8.53.1(eslint@9.39.2)(typescript@5.9.3)':
8278
+ '@typescript-eslint/type-utils@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
7946
8279
  dependencies:
7947
8280
  '@typescript-eslint/types': 8.53.1
7948
8281
  '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
7949
- '@typescript-eslint/utils': 8.53.1(eslint@9.39.2)(typescript@5.9.3)
8282
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
7950
8283
  debug: 4.4.3
7951
- eslint: 9.39.2
8284
+ eslint: 9.39.2(jiti@2.6.1)
7952
8285
  ts-api-utils: 2.4.0(typescript@5.9.3)
7953
8286
  typescript: 5.9.3
7954
8287
  transitivePeerDependencies:
@@ -7971,13 +8304,13 @@ snapshots:
7971
8304
  transitivePeerDependencies:
7972
8305
  - supports-color
7973
8306
 
7974
- '@typescript-eslint/utils@8.53.1(eslint@9.39.2)(typescript@5.9.3)':
8307
+ '@typescript-eslint/utils@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
7975
8308
  dependencies:
7976
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2)
8309
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
7977
8310
  '@typescript-eslint/scope-manager': 8.53.1
7978
8311
  '@typescript-eslint/types': 8.53.1
7979
8312
  '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
7980
- eslint: 9.39.2
8313
+ eslint: 9.39.2(jiti@2.6.1)
7981
8314
  typescript: 5.9.3
7982
8315
  transitivePeerDependencies:
7983
8316
  - supports-color
@@ -8267,7 +8600,7 @@ snapshots:
8267
8600
  dependencies:
8268
8601
  possible-typed-array-names: 1.1.0
8269
8602
 
8270
- axios@1.13.3:
8603
+ axios@1.13.6:
8271
8604
  dependencies:
8272
8605
  follow-redirects: 1.15.11(debug@4.4.3)
8273
8606
  form-data: 4.0.5
@@ -8700,7 +9033,7 @@ snapshots:
8700
9033
  '@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
8701
9034
  '@langchain/openai': 1.2.3(@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6)))(ws@8.19.0)
8702
9035
  '@supabase/supabase-js': 2.95.3
8703
- axios: 1.13.3
9036
+ axios: 1.13.6
8704
9037
  pg: 8.17.2
8705
9038
  transitivePeerDependencies:
8706
9039
  - '@opentelemetry/api'
@@ -8771,6 +9104,8 @@ snapshots:
8771
9104
 
8772
9105
  csstype@3.2.3: {}
8773
9106
 
9107
+ culori@4.0.2: {}
9108
+
8774
9109
  data-urls@3.0.2:
8775
9110
  dependencies:
8776
9111
  abab: 2.0.6
@@ -8958,6 +9293,11 @@ snapshots:
8958
9293
 
8959
9294
  encodeurl@2.0.0: {}
8960
9295
 
9296
+ enhanced-resolve@5.20.1:
9297
+ dependencies:
9298
+ graceful-fs: 4.2.11
9299
+ tapable: 2.3.2
9300
+
8961
9301
  entities@4.5.0: {}
8962
9302
 
8963
9303
  entities@6.0.1: {}
@@ -9146,10 +9486,10 @@ snapshots:
9146
9486
  transitivePeerDependencies:
9147
9487
  - supports-color
9148
9488
 
9149
- eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2):
9489
+ eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)):
9150
9490
  dependencies:
9151
9491
  debug: 4.4.3
9152
- eslint: 9.39.2
9492
+ eslint: 9.39.2(jiti@2.6.1)
9153
9493
  eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
9154
9494
  get-tsconfig: 4.13.0
9155
9495
  is-bun-module: 2.0.0
@@ -9157,22 +9497,22 @@ snapshots:
9157
9497
  tinyglobby: 0.2.15
9158
9498
  unrs-resolver: 1.11.1
9159
9499
  optionalDependencies:
9160
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.53.1(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2)
9500
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@2.6.1))
9161
9501
  transitivePeerDependencies:
9162
9502
  - supports-color
9163
9503
 
9164
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2))(eslint@9.39.2):
9504
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)):
9165
9505
  dependencies:
9166
9506
  debug: 3.2.7
9167
9507
  optionalDependencies:
9168
- '@typescript-eslint/parser': 8.53.1(eslint@9.39.2)(typescript@5.9.3)
9169
- eslint: 9.39.2
9508
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
9509
+ eslint: 9.39.2(jiti@2.6.1)
9170
9510
  eslint-import-resolver-node: 0.3.9
9171
- eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2)
9511
+ eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1))
9172
9512
  transitivePeerDependencies:
9173
9513
  - supports-color
9174
9514
 
9175
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.1(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2):
9515
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@2.6.1)):
9176
9516
  dependencies:
9177
9517
  '@rtsao/scc': 1.1.0
9178
9518
  array-includes: 3.1.9
@@ -9181,9 +9521,9 @@ snapshots:
9181
9521
  array.prototype.flatmap: 1.3.3
9182
9522
  debug: 3.2.7
9183
9523
  doctrine: 2.1.0
9184
- eslint: 9.39.2
9524
+ eslint: 9.39.2(jiti@2.6.1)
9185
9525
  eslint-import-resolver-node: 0.3.9
9186
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2))(eslint@9.39.2)
9526
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))
9187
9527
  hasown: 2.0.2
9188
9528
  is-core-module: 2.16.1
9189
9529
  is-glob: 4.0.3
@@ -9195,24 +9535,24 @@ snapshots:
9195
9535
  string.prototype.trimend: 1.0.9
9196
9536
  tsconfig-paths: 3.15.0
9197
9537
  optionalDependencies:
9198
- '@typescript-eslint/parser': 8.53.1(eslint@9.39.2)(typescript@5.9.3)
9538
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
9199
9539
  transitivePeerDependencies:
9200
9540
  - eslint-import-resolver-typescript
9201
9541
  - eslint-import-resolver-webpack
9202
9542
  - supports-color
9203
9543
 
9204
- eslint-plugin-react-hooks@7.0.1(eslint@9.39.2):
9544
+ eslint-plugin-react-hooks@7.0.1(eslint@9.39.2(jiti@2.6.1)):
9205
9545
  dependencies:
9206
9546
  '@babel/core': 7.28.6
9207
9547
  '@babel/parser': 7.28.6
9208
- eslint: 9.39.2
9548
+ eslint: 9.39.2(jiti@2.6.1)
9209
9549
  hermes-parser: 0.25.1
9210
9550
  zod: 4.3.6
9211
9551
  zod-validation-error: 4.0.2(zod@4.3.6)
9212
9552
  transitivePeerDependencies:
9213
9553
  - supports-color
9214
9554
 
9215
- eslint-plugin-react@7.37.5(eslint@9.39.2):
9555
+ eslint-plugin-react@7.37.5(eslint@9.39.2(jiti@2.6.1)):
9216
9556
  dependencies:
9217
9557
  array-includes: 3.1.9
9218
9558
  array.prototype.findlast: 1.2.5
@@ -9220,7 +9560,7 @@ snapshots:
9220
9560
  array.prototype.tosorted: 1.1.4
9221
9561
  doctrine: 2.1.0
9222
9562
  es-iterator-helpers: 1.2.2
9223
- eslint: 9.39.2
9563
+ eslint: 9.39.2(jiti@2.6.1)
9224
9564
  estraverse: 5.3.0
9225
9565
  hasown: 2.0.2
9226
9566
  jsx-ast-utils: 3.3.5
@@ -9234,12 +9574,12 @@ snapshots:
9234
9574
  string.prototype.matchall: 4.0.12
9235
9575
  string.prototype.repeat: 1.0.0
9236
9576
 
9237
- eslint-plugin-regexp@2.10.0(eslint@9.39.2):
9577
+ eslint-plugin-regexp@2.10.0(eslint@9.39.2(jiti@2.6.1)):
9238
9578
  dependencies:
9239
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2)
9579
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
9240
9580
  '@eslint-community/regexpp': 4.12.2
9241
9581
  comment-parser: 1.4.5
9242
- eslint: 9.39.2
9582
+ eslint: 9.39.2(jiti@2.6.1)
9243
9583
  jsdoc-type-pratt-parser: 4.8.0
9244
9584
  refa: 0.12.1
9245
9585
  regexp-ast-analysis: 0.7.1
@@ -9254,9 +9594,9 @@ snapshots:
9254
9594
 
9255
9595
  eslint-visitor-keys@4.2.1: {}
9256
9596
 
9257
- eslint@9.39.2:
9597
+ eslint@9.39.2(jiti@2.6.1):
9258
9598
  dependencies:
9259
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2)
9599
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
9260
9600
  '@eslint-community/regexpp': 4.12.2
9261
9601
  '@eslint/config-array': 0.21.1
9262
9602
  '@eslint/config-helpers': 0.4.2
@@ -9290,6 +9630,8 @@ snapshots:
9290
9630
  minimatch: 3.1.2
9291
9631
  natural-compare: 1.4.0
9292
9632
  optionator: 0.9.4
9633
+ optionalDependencies:
9634
+ jiti: 2.6.1
9293
9635
  transitivePeerDependencies:
9294
9636
  - supports-color
9295
9637
 
@@ -10606,6 +10948,8 @@ snapshots:
10606
10948
 
10607
10949
  jimp-compact@0.16.1: {}
10608
10950
 
10951
+ jiti@2.6.1: {}
10952
+
10609
10953
  js-base64@3.7.8: {}
10610
10954
 
10611
10955
  js-tiktoken@1.0.21:
@@ -10719,36 +11063,114 @@ snapshots:
10719
11063
  lightningcss-android-arm64@1.30.2:
10720
11064
  optional: true
10721
11065
 
11066
+ lightningcss-android-arm64@1.31.1:
11067
+ optional: true
11068
+
11069
+ lightningcss-darwin-arm64@1.30.1:
11070
+ optional: true
11071
+
10722
11072
  lightningcss-darwin-arm64@1.30.2:
10723
11073
  optional: true
10724
11074
 
11075
+ lightningcss-darwin-arm64@1.31.1:
11076
+ optional: true
11077
+
11078
+ lightningcss-darwin-x64@1.30.1:
11079
+ optional: true
11080
+
10725
11081
  lightningcss-darwin-x64@1.30.2:
10726
11082
  optional: true
10727
11083
 
11084
+ lightningcss-darwin-x64@1.31.1:
11085
+ optional: true
11086
+
11087
+ lightningcss-freebsd-x64@1.30.1:
11088
+ optional: true
11089
+
10728
11090
  lightningcss-freebsd-x64@1.30.2:
10729
11091
  optional: true
10730
11092
 
11093
+ lightningcss-freebsd-x64@1.31.1:
11094
+ optional: true
11095
+
11096
+ lightningcss-linux-arm-gnueabihf@1.30.1:
11097
+ optional: true
11098
+
10731
11099
  lightningcss-linux-arm-gnueabihf@1.30.2:
10732
11100
  optional: true
10733
11101
 
11102
+ lightningcss-linux-arm-gnueabihf@1.31.1:
11103
+ optional: true
11104
+
11105
+ lightningcss-linux-arm64-gnu@1.30.1:
11106
+ optional: true
11107
+
10734
11108
  lightningcss-linux-arm64-gnu@1.30.2:
10735
11109
  optional: true
10736
11110
 
11111
+ lightningcss-linux-arm64-gnu@1.31.1:
11112
+ optional: true
11113
+
11114
+ lightningcss-linux-arm64-musl@1.30.1:
11115
+ optional: true
11116
+
10737
11117
  lightningcss-linux-arm64-musl@1.30.2:
10738
11118
  optional: true
10739
11119
 
11120
+ lightningcss-linux-arm64-musl@1.31.1:
11121
+ optional: true
11122
+
11123
+ lightningcss-linux-x64-gnu@1.30.1:
11124
+ optional: true
11125
+
10740
11126
  lightningcss-linux-x64-gnu@1.30.2:
10741
11127
  optional: true
10742
11128
 
11129
+ lightningcss-linux-x64-gnu@1.31.1:
11130
+ optional: true
11131
+
11132
+ lightningcss-linux-x64-musl@1.30.1:
11133
+ optional: true
11134
+
10743
11135
  lightningcss-linux-x64-musl@1.30.2:
10744
11136
  optional: true
10745
11137
 
11138
+ lightningcss-linux-x64-musl@1.31.1:
11139
+ optional: true
11140
+
11141
+ lightningcss-win32-arm64-msvc@1.30.1:
11142
+ optional: true
11143
+
10746
11144
  lightningcss-win32-arm64-msvc@1.30.2:
10747
11145
  optional: true
10748
11146
 
11147
+ lightningcss-win32-arm64-msvc@1.31.1:
11148
+ optional: true
11149
+
11150
+ lightningcss-win32-x64-msvc@1.30.1:
11151
+ optional: true
11152
+
10749
11153
  lightningcss-win32-x64-msvc@1.30.2:
10750
11154
  optional: true
10751
11155
 
11156
+ lightningcss-win32-x64-msvc@1.31.1:
11157
+ optional: true
11158
+
11159
+ lightningcss@1.30.1:
11160
+ dependencies:
11161
+ detect-libc: 2.1.2
11162
+ optionalDependencies:
11163
+ lightningcss-darwin-arm64: 1.30.1
11164
+ lightningcss-darwin-x64: 1.30.1
11165
+ lightningcss-freebsd-x64: 1.30.1
11166
+ lightningcss-linux-arm-gnueabihf: 1.30.1
11167
+ lightningcss-linux-arm64-gnu: 1.30.1
11168
+ lightningcss-linux-arm64-musl: 1.30.1
11169
+ lightningcss-linux-x64-gnu: 1.30.1
11170
+ lightningcss-linux-x64-musl: 1.30.1
11171
+ lightningcss-win32-arm64-msvc: 1.30.1
11172
+ lightningcss-win32-x64-msvc: 1.30.1
11173
+
10752
11174
  lightningcss@1.30.2:
10753
11175
  dependencies:
10754
11176
  detect-libc: 2.1.2
@@ -10765,6 +11187,22 @@ snapshots:
10765
11187
  lightningcss-win32-arm64-msvc: 1.30.2
10766
11188
  lightningcss-win32-x64-msvc: 1.30.2
10767
11189
 
11190
+ lightningcss@1.31.1:
11191
+ dependencies:
11192
+ detect-libc: 2.1.2
11193
+ optionalDependencies:
11194
+ lightningcss-android-arm64: 1.31.1
11195
+ lightningcss-darwin-arm64: 1.31.1
11196
+ lightningcss-darwin-x64: 1.31.1
11197
+ lightningcss-freebsd-x64: 1.31.1
11198
+ lightningcss-linux-arm-gnueabihf: 1.31.1
11199
+ lightningcss-linux-arm64-gnu: 1.31.1
11200
+ lightningcss-linux-arm64-musl: 1.31.1
11201
+ lightningcss-linux-x64-gnu: 1.31.1
11202
+ lightningcss-linux-x64-musl: 1.31.1
11203
+ lightningcss-win32-arm64-msvc: 1.31.1
11204
+ lightningcss-win32-x64-msvc: 1.31.1
11205
+
10768
11206
  lines-and-columns@1.2.4: {}
10769
11207
 
10770
11208
  locate-path@3.0.0:
@@ -11331,6 +11769,9 @@ snapshots:
11331
11769
 
11332
11770
  paths-js@0.4.11: {}
11333
11771
 
11772
+ pg-cloudflare@1.3.0:
11773
+ optional: true
11774
+
11334
11775
  pg-connection-string@2.10.1: {}
11335
11776
 
11336
11777
  pg-int8@1.0.1: {}
@@ -11356,6 +11797,8 @@ snapshots:
11356
11797
  pg-protocol: 1.11.0
11357
11798
  pg-types: 2.2.0
11358
11799
  pgpass: 1.0.5
11800
+ optionalDependencies:
11801
+ pg-cloudflare: 1.3.0
11359
11802
 
11360
11803
  pgpass@1.0.5:
11361
11804
  dependencies:
@@ -12204,6 +12647,12 @@ snapshots:
12204
12647
 
12205
12648
  symbol-tree@3.2.4: {}
12206
12649
 
12650
+ tailwindcss@4.2.1: {}
12651
+
12652
+ tailwindcss@4.2.2: {}
12653
+
12654
+ tapable@2.3.2: {}
12655
+
12207
12656
  tar@7.5.6:
12208
12657
  dependencies:
12209
12658
  '@isaacs/fs-minipass': 4.0.1
@@ -12340,13 +12789,13 @@ snapshots:
12340
12789
 
12341
12790
  typedarray@0.0.6: {}
12342
12791
 
12343
- typescript-eslint@8.53.1(eslint@9.39.2)(typescript@5.9.3):
12792
+ typescript-eslint@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3):
12344
12793
  dependencies:
12345
- '@typescript-eslint/eslint-plugin': 8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)
12346
- '@typescript-eslint/parser': 8.53.1(eslint@9.39.2)(typescript@5.9.3)
12794
+ '@typescript-eslint/eslint-plugin': 8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
12795
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
12347
12796
  '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
12348
- '@typescript-eslint/utils': 8.53.1(eslint@9.39.2)(typescript@5.9.3)
12349
- eslint: 9.39.2
12797
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
12798
+ eslint: 9.39.2(jiti@2.6.1)
12350
12799
  typescript: 5.9.3
12351
12800
  transitivePeerDependencies:
12352
12801
  - supports-color
@@ -12383,6 +12832,16 @@ snapshots:
12383
12832
 
12384
12833
  universalify@0.2.0: {}
12385
12834
 
12835
+ uniwind@1.6.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.2):
12836
+ dependencies:
12837
+ '@tailwindcss/node': 4.2.1
12838
+ '@tailwindcss/oxide': 4.2.1
12839
+ culori: 4.0.2
12840
+ lightningcss: 1.30.1
12841
+ react: 19.1.0
12842
+ react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
12843
+ tailwindcss: 4.2.2
12844
+
12386
12845
  unpipe@1.0.0: {}
12387
12846
 
12388
12847
  unrs-resolver@1.11.1: