@coze-arch/cli 0.0.1-alpha.e665f4 → 0.0.1-alpha.e70f72

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 (97) hide show
  1. package/README.md +1 -0
  2. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +1 -1
  3. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  4. package/lib/__templates__/expo/client/eslint.config.mjs +4 -0
  5. package/lib/__templates__/expo/client/metro.config.js +3 -0
  6. package/lib/__templates__/expo/client/package.json +35 -35
  7. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
  8. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  9. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  10. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  11. package/lib/__templates__/expo/package.json +1 -1
  12. package/lib/__templates__/expo/pnpm-lock.yaml +394 -221
  13. package/lib/__templates__/expo/server/package.json +9 -7
  14. package/lib/__templates__/expo/server/src/index.ts +1 -0
  15. package/lib/__templates__/expo/template.config.js +1 -1
  16. package/lib/__templates__/native-static/.coze +11 -0
  17. package/lib/__templates__/native-static/index.html +33 -0
  18. package/lib/__templates__/native-static/styles/main.css +136 -0
  19. package/lib/__templates__/native-static/template.config.js +22 -0
  20. package/lib/__templates__/nextjs/README.md +5 -0
  21. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  22. package/lib/__templates__/nextjs/next.config.ts +1 -2
  23. package/lib/__templates__/nextjs/package.json +5 -6
  24. package/lib/__templates__/nextjs/pnpm-lock.yaml +1145 -109
  25. package/lib/__templates__/nextjs/scripts/build.sh +4 -1
  26. package/lib/__templates__/nextjs/scripts/dev.sh +4 -4
  27. package/lib/__templates__/nextjs/scripts/start.sh +1 -1
  28. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  29. package/lib/__templates__/nextjs/src/app/page.tsx +4 -3
  30. package/lib/__templates__/nextjs/src/server.ts +35 -0
  31. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  32. package/lib/__templates__/nuxt-vue/.coze +12 -0
  33. package/lib/__templates__/nuxt-vue/README.md +73 -0
  34. package/lib/__templates__/nuxt-vue/_gitignore +24 -0
  35. package/lib/__templates__/nuxt-vue/_npmrc +23 -0
  36. package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
  37. package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
  38. package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
  39. package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
  40. package/lib/__templates__/nuxt-vue/package.json +35 -0
  41. package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
  42. package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
  43. package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
  44. package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
  45. package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
  46. package/lib/__templates__/nuxt-vue/scripts/dev.sh +32 -0
  47. package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
  48. package/lib/__templates__/nuxt-vue/scripts/start.sh +15 -0
  49. package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
  50. package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
  51. package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
  52. package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
  53. package/lib/__templates__/nuxt-vue/template.config.js +87 -0
  54. package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
  55. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +2 -2
  56. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +4 -3
  57. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +0 -15
  58. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +117 -24
  59. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -1
  60. package/lib/__templates__/taro/README.md +81 -17
  61. package/lib/__templates__/taro/config/index.ts +87 -37
  62. package/lib/__templates__/taro/config/prod.ts +4 -5
  63. package/lib/__templates__/taro/eslint.config.mjs +27 -4
  64. package/lib/__templates__/taro/package.json +16 -4
  65. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  66. package/lib/__templates__/taro/pnpm-lock.yaml +785 -115
  67. package/lib/__templates__/taro/server/package.json +3 -1
  68. package/lib/__templates__/taro/server/src/main.ts +14 -2
  69. package/lib/__templates__/taro/src/app.css +18 -18
  70. package/lib/__templates__/taro/src/app.tsx +9 -0
  71. package/lib/__templates__/taro/src/index.html +20 -1
  72. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  73. package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
  74. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +201 -0
  75. package/lib/__templates__/taro/src/presets/h5-styles.ts +142 -0
  76. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  77. package/lib/__templates__/templates.json +43 -0
  78. package/lib/__templates__/vite/README.md +190 -11
  79. package/lib/__templates__/vite/_gitignore +1 -0
  80. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  81. package/lib/__templates__/vite/package.json +14 -3
  82. package/lib/__templates__/vite/pnpm-lock.yaml +820 -1593
  83. package/lib/__templates__/vite/scripts/build.sh +4 -1
  84. package/lib/__templates__/vite/scripts/dev.sh +5 -4
  85. package/lib/__templates__/vite/scripts/start.sh +3 -3
  86. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  87. package/lib/__templates__/vite/server/server.ts +55 -0
  88. package/lib/__templates__/vite/server/vite.ts +71 -0
  89. package/lib/__templates__/vite/src/main.ts +2 -2
  90. package/lib/__templates__/vite/tsconfig.json +4 -3
  91. package/lib/__templates__/vite/vite.config.ts +1 -0
  92. package/lib/cli.js +123 -156
  93. package/package.json +7 -3
  94. package/lib/__templates__/taro/src/app.ts +0 -14
  95. package/lib/__templates__/taro/src/utils/h5-styles.ts +0 -22
  96. package/lib/__templates__/taro/src/utils/wx-debug.ts +0 -23
  97. /package/lib/__templates__/expo/patches/{expo@54.0.32.patch → expo@54.0.33.patch} +0 -0
@@ -4,6 +4,11 @@ settings:
4
4
  autoInstallPeers: true
5
5
  excludeLinksFromLockfile: false
6
6
 
7
+ patchedDependencies:
8
+ '@tarojs/plugin-mini-ci@4.1.9':
9
+ hash: j6dgmq33tuqqgowk7tjyyinctm
10
+ path: patches/@tarojs__plugin-mini-ci@4.1.9.patch
11
+
7
12
  importers:
8
13
 
9
14
  .:
@@ -23,6 +28,9 @@ importers:
23
28
  '@tarojs/plugin-platform-h5':
24
29
  specifier: 4.1.9
25
30
  version: 4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
31
+ '@tarojs/plugin-platform-tt':
32
+ specifier: 4.1.9
33
+ version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
26
34
  '@tarojs/plugin-platform-weapp':
27
35
  specifier: 4.1.9
28
36
  version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
@@ -41,9 +49,9 @@ importers:
41
49
  drizzle-kit:
42
50
  specifier: ^0.31.8
43
51
  version: 0.31.8
44
- lucide-react:
45
- specifier: ^0.511.0
46
- version: 0.511.0(react@18.3.1)
52
+ lucide-react-taro:
53
+ specifier: ^1.2.0
54
+ version: 1.2.0(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(react@18.3.1)
47
55
  react:
48
56
  specifier: ^18.0.0
49
57
  version: 18.3.1
@@ -77,7 +85,7 @@ importers:
77
85
  version: 4.1.9(@types/node@22.19.6)
78
86
  '@tarojs/plugin-mini-ci':
79
87
  specifier: ^4.1.9
80
- version: 4.1.9(miniprogram-ci@2.1.26(eslint@8.57.1))
88
+ version: 4.1.9(patch_hash=j6dgmq33tuqqgowk7tjyyinctm)(miniprogram-ci@2.1.26(eslint@8.57.1))(tt-ide-cli@0.1.31(@types/node@22.19.6))
81
89
  '@tarojs/vite-runner':
82
90
  specifier: 4.1.9
83
91
  version: 4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))
@@ -141,6 +149,9 @@ importers:
141
149
  terser:
142
150
  specifier: ^5.30.4
143
151
  version: 5.44.1
152
+ tt-ide-cli:
153
+ specifier: ^0.1.31
154
+ version: 0.1.31(@types/node@22.19.6)
144
155
  typescript:
145
156
  specifier: ^5.4.5
146
157
  version: 5.9.3
@@ -168,12 +179,18 @@ importers:
168
179
  '@nestjs/platform-express':
169
180
  specifier: ^10.4.15
170
181
  version: 10.4.20(@nestjs/common@10.4.20(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
182
+ '@supabase/supabase-js':
183
+ specifier: 2.95.3
184
+ version: 2.95.3
171
185
  better-sqlite3:
172
186
  specifier: ^11.9.1
173
187
  version: 11.10.0
174
188
  coze-coding-dev-sdk:
175
- specifier: ^0.7.3
176
- version: 0.7.3(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(openai@6.16.0(zod@4.3.5))
189
+ specifier: ^0.7.16
190
+ version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
191
+ dotenv:
192
+ specifier: ^17.2.3
193
+ version: 17.2.3
177
194
  drizzle-kit:
178
195
  specifier: ^0.31.8
179
196
  version: 0.31.8
@@ -2052,6 +2069,9 @@ packages:
2052
2069
  '@dual-bundle/import-meta-resolve@4.2.1':
2053
2070
  resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==}
2054
2071
 
2072
+ '@emnapi/runtime@1.8.1':
2073
+ resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
2074
+
2055
2075
  '@esbuild-kit/core-utils@3.3.2':
2056
2076
  resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
2057
2077
  deprecated: 'Merged into tsx: https://tsx.is'
@@ -2536,6 +2556,123 @@ packages:
2536
2556
  resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
2537
2557
  deprecated: Use @eslint/object-schema instead
2538
2558
 
2559
+ '@img/sharp-darwin-arm64@0.33.5':
2560
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
2561
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2562
+ cpu: [arm64]
2563
+ os: [darwin]
2564
+
2565
+ '@img/sharp-darwin-x64@0.33.5':
2566
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
2567
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2568
+ cpu: [x64]
2569
+ os: [darwin]
2570
+
2571
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
2572
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
2573
+ cpu: [arm64]
2574
+ os: [darwin]
2575
+
2576
+ '@img/sharp-libvips-darwin-x64@1.0.4':
2577
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
2578
+ cpu: [x64]
2579
+ os: [darwin]
2580
+
2581
+ '@img/sharp-libvips-linux-arm64@1.0.4':
2582
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
2583
+ cpu: [arm64]
2584
+ os: [linux]
2585
+ libc: [glibc]
2586
+
2587
+ '@img/sharp-libvips-linux-arm@1.0.5':
2588
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
2589
+ cpu: [arm]
2590
+ os: [linux]
2591
+ libc: [glibc]
2592
+
2593
+ '@img/sharp-libvips-linux-s390x@1.0.4':
2594
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
2595
+ cpu: [s390x]
2596
+ os: [linux]
2597
+ libc: [glibc]
2598
+
2599
+ '@img/sharp-libvips-linux-x64@1.0.4':
2600
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
2601
+ cpu: [x64]
2602
+ os: [linux]
2603
+ libc: [glibc]
2604
+
2605
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
2606
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
2607
+ cpu: [arm64]
2608
+ os: [linux]
2609
+ libc: [musl]
2610
+
2611
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
2612
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
2613
+ cpu: [x64]
2614
+ os: [linux]
2615
+ libc: [musl]
2616
+
2617
+ '@img/sharp-linux-arm64@0.33.5':
2618
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
2619
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2620
+ cpu: [arm64]
2621
+ os: [linux]
2622
+ libc: [glibc]
2623
+
2624
+ '@img/sharp-linux-arm@0.33.5':
2625
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
2626
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2627
+ cpu: [arm]
2628
+ os: [linux]
2629
+ libc: [glibc]
2630
+
2631
+ '@img/sharp-linux-s390x@0.33.5':
2632
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
2633
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2634
+ cpu: [s390x]
2635
+ os: [linux]
2636
+ libc: [glibc]
2637
+
2638
+ '@img/sharp-linux-x64@0.33.5':
2639
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
2640
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2641
+ cpu: [x64]
2642
+ os: [linux]
2643
+ libc: [glibc]
2644
+
2645
+ '@img/sharp-linuxmusl-arm64@0.33.5':
2646
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
2647
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2648
+ cpu: [arm64]
2649
+ os: [linux]
2650
+ libc: [musl]
2651
+
2652
+ '@img/sharp-linuxmusl-x64@0.33.5':
2653
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
2654
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2655
+ cpu: [x64]
2656
+ os: [linux]
2657
+ libc: [musl]
2658
+
2659
+ '@img/sharp-wasm32@0.33.5':
2660
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
2661
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2662
+ cpu: [wasm32]
2663
+
2664
+ '@img/sharp-win32-ia32@0.33.5':
2665
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
2666
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2667
+ cpu: [ia32]
2668
+ os: [win32]
2669
+
2670
+ '@img/sharp-win32-x64@0.33.5':
2671
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
2672
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2673
+ cpu: [x64]
2674
+ os: [win32]
2675
+
2539
2676
  '@inquirer/external-editor@1.0.3':
2540
2677
  resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
2541
2678
  engines: {node: '>=18'}
@@ -3438,6 +3575,30 @@ packages:
3438
3575
  engines: {node: '>=12.10.0', npm: '>=6.0.0'}
3439
3576
  hasBin: true
3440
3577
 
3578
+ '@supabase/auth-js@2.95.3':
3579
+ resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
3580
+ engines: {node: '>=20.0.0'}
3581
+
3582
+ '@supabase/functions-js@2.95.3':
3583
+ resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
3584
+ engines: {node: '>=20.0.0'}
3585
+
3586
+ '@supabase/postgrest-js@2.95.3':
3587
+ resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
3588
+ engines: {node: '>=20.0.0'}
3589
+
3590
+ '@supabase/realtime-js@2.95.3':
3591
+ resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
3592
+ engines: {node: '>=20.0.0'}
3593
+
3594
+ '@supabase/storage-js@2.95.3':
3595
+ resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
3596
+ engines: {node: '>=20.0.0'}
3597
+
3598
+ '@supabase/supabase-js@2.95.3':
3599
+ resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
3600
+ engines: {node: '>=20.0.0'}
3601
+
3441
3602
  '@swc/core-darwin-arm64@1.3.96':
3442
3603
  resolution: {integrity: sha512-8hzgXYVd85hfPh6mJ9yrG26rhgzCmcLO0h1TIl8U31hwmTbfZLzRitFQ/kqMJNbIBCwmNH1RU2QcJnL3d7f69A==}
3443
3604
  engines: {node: '>=10'}
@@ -3959,6 +4120,13 @@ packages:
3959
4120
  '@tarojs/plugin-platform-h5@4.1.9':
3960
4121
  resolution: {integrity: sha512-qrxJY7fiknzcBWI/bEQxAksi8fB5/ciYIbrF/hFbsH7Zc0VzQGA0IpdeOl8gya/mzmF9ieyr28/hObNjNnMyUw==}
3961
4122
 
4123
+ '@tarojs/plugin-platform-tt@4.1.9':
4124
+ resolution: {integrity: sha512-qkz0VKx7tflj6MHJgR7wrEXxn0oS+ph0S+HdqulJpev7k2bWWSMUcVHiDHL1ZI01PSMVavX/+WCgYcX8CPEcGQ==}
4125
+ engines: {node: '>= 18'}
4126
+ peerDependencies:
4127
+ '@tarojs/service': 4.1.9
4128
+ '@tarojs/shared': 4.1.9
4129
+
3962
4130
  '@tarojs/plugin-platform-weapp@4.1.9':
3963
4131
  resolution: {integrity: sha512-a3pHm2j4dksvuium6rMZwDmLazA/COAnwYNcbU3/vFkMA6MwTbra5JDL8Ari4op7HqeP72RZlEoYB5hp56jsXQ==}
3964
4132
  engines: {node: '>= 18'}
@@ -4053,6 +4221,9 @@ packages:
4053
4221
  '@ts-morph/common@0.27.0':
4054
4222
  resolution: {integrity: sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==}
4055
4223
 
4224
+ '@tt-miniprogram/ext-pack@1.2.4':
4225
+ resolution: {integrity: sha512-pIXzF6YcCtJdlIGNByUIZr8OArdhi15ybS+N5Rr8x2YNQqFg/asacWqOSTnlOAOk2d5K6HA79sjdKodkrql7yQ==}
4226
+
4056
4227
  '@types/archy@0.0.31':
4057
4228
  resolution: {integrity: sha512-v+dxizsFVyXgD3EpFuqT9YjdEjbJmPxNf1QIX9ohZOhxh1ZF2yhqv3vYaeum9lg3VghhxS5S0a6yldN9J9lPEQ==}
4058
4229
 
@@ -4134,6 +4305,9 @@ packages:
4134
4305
  '@types/node@22.19.6':
4135
4306
  resolution: {integrity: sha512-qm+G8HuG6hOHQigsi7VGuLjUVu6TtBo/F05zvX04Mw2uCg9Dv0Qxy3Qw7j41SidlTcl5D/5yg0SEZqOB+EqZnQ==}
4136
4307
 
4308
+ '@types/phoenix@1.6.7':
4309
+ resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
4310
+
4137
4311
  '@types/postcss-url@10.0.4':
4138
4312
  resolution: {integrity: sha512-5QIO9NgbWmAkle65haRqkdgYPCOXheNsaFdbTJJQjT302yK3H49ql4t9a4y0NfpuPtU/UBo15VcV64WCSIMJKg==}
4139
4313
 
@@ -4168,6 +4342,9 @@ packages:
4168
4342
  '@types/uuid@10.0.0':
4169
4343
  resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
4170
4344
 
4345
+ '@types/ws@8.18.1':
4346
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
4347
+
4171
4348
  '@typescript-eslint/eslint-plugin@6.21.0':
4172
4349
  resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==}
4173
4350
  engines: {node: ^16.0.0 || >=18.0.0}
@@ -4484,6 +4661,9 @@ packages:
4484
4661
  append-field@1.0.0:
4485
4662
  resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==}
4486
4663
 
4664
+ arch@2.2.0:
4665
+ resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
4666
+
4487
4667
  archive-type@4.0.0:
4488
4668
  resolution: {integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==}
4489
4669
  engines: {node: '>=4'}
@@ -4548,6 +4728,10 @@ packages:
4548
4728
  resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
4549
4729
  engines: {node: '>= 0.4'}
4550
4730
 
4731
+ array.prototype.reduce@1.0.8:
4732
+ resolution: {integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==}
4733
+ engines: {node: '>= 0.4'}
4734
+
4551
4735
  array.prototype.tosorted@1.1.4:
4552
4736
  resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
4553
4737
  engines: {node: '>= 0.4'}
@@ -4943,6 +5127,9 @@ packages:
4943
5127
  resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
4944
5128
  engines: {node: '>=8'}
4945
5129
 
5130
+ binary@0.3.0:
5131
+ resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
5132
+
4946
5133
  bindings@1.5.0:
4947
5134
  resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
4948
5135
 
@@ -4955,6 +5142,9 @@ packages:
4955
5142
  bl@5.1.0:
4956
5143
  resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
4957
5144
 
5145
+ bluebird@3.4.7:
5146
+ resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
5147
+
4958
5148
  bmp-js@0.1.0:
4959
5149
  resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==}
4960
5150
 
@@ -5013,6 +5203,10 @@ packages:
5013
5203
  buffer-from@1.1.2:
5014
5204
  resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
5015
5205
 
5206
+ buffer-indexof-polyfill@1.0.2:
5207
+ resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
5208
+ engines: {node: '>=0.10'}
5209
+
5016
5210
  buffer@5.6.0:
5017
5211
  resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
5018
5212
 
@@ -5022,6 +5216,10 @@ packages:
5022
5216
  buffer@6.0.3:
5023
5217
  resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
5024
5218
 
5219
+ buffers@0.1.1:
5220
+ resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
5221
+ engines: {node: '>=0.2.0'}
5222
+
5025
5223
  busboy@1.6.0:
5026
5224
  resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
5027
5225
  engines: {node: '>=10.16.0'}
@@ -5101,6 +5299,9 @@ packages:
5101
5299
  centra@2.7.0:
5102
5300
  resolution: {integrity: sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==}
5103
5301
 
5302
+ chainsaw@0.1.0:
5303
+ resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
5304
+
5104
5305
  chalk@1.1.3:
5105
5306
  resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
5106
5307
  engines: {node: '>=0.10.0'}
@@ -5183,10 +5384,6 @@ packages:
5183
5384
  resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
5184
5385
  engines: {node: '>=6'}
5185
5386
 
5186
- cli-spinners@3.4.0:
5187
- resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
5188
- engines: {node: '>=18.20'}
5189
-
5190
5387
  cli-table3@0.6.5:
5191
5388
  resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
5192
5389
  engines: {node: 10.* || >= 12.*}
@@ -5203,6 +5400,10 @@ packages:
5203
5400
  resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
5204
5401
  engines: {node: '>= 12'}
5205
5402
 
5403
+ clipboardy@2.3.0:
5404
+ resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==}
5405
+ engines: {node: '>=8'}
5406
+
5206
5407
  cliui@6.0.0:
5207
5408
  resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
5208
5409
 
@@ -5246,10 +5447,17 @@ packages:
5246
5447
  color-name@1.1.4:
5247
5448
  resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
5248
5449
 
5450
+ color-string@1.9.1:
5451
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
5452
+
5249
5453
  color-support@1.1.3:
5250
5454
  resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
5251
5455
  hasBin: true
5252
5456
 
5457
+ color@4.2.3:
5458
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
5459
+ engines: {node: '>=12.5.0'}
5460
+
5253
5461
  colord@2.9.3:
5254
5462
  resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
5255
5463
 
@@ -5274,6 +5482,10 @@ packages:
5274
5482
  resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
5275
5483
  engines: {node: '>= 6'}
5276
5484
 
5485
+ commander@5.1.0:
5486
+ resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
5487
+ engines: {node: '>= 6'}
5488
+
5277
5489
  commander@7.2.0:
5278
5490
  resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
5279
5491
  engines: {node: '>= 10'}
@@ -5415,8 +5627,8 @@ packages:
5415
5627
  typescript:
5416
5628
  optional: true
5417
5629
 
5418
- coze-coding-dev-sdk@0.7.3:
5419
- resolution: {integrity: sha512-BLOjwSjAHW/LL6l/KMbsKJt7xJCrFJfEUkGvlafjpYrsZ8w/xlyQMbAv5lwk+9En60quX93wpK6AsX3eMcw/Jw==}
5630
+ coze-coding-dev-sdk@0.7.16:
5631
+ resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
5420
5632
  engines: {node: '>=18.0.0'}
5421
5633
  hasBin: true
5422
5634
 
@@ -5429,6 +5641,10 @@ packages:
5429
5641
  resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
5430
5642
  engines: {node: '>= 10'}
5431
5643
 
5644
+ cross-spawn@6.0.6:
5645
+ resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
5646
+ engines: {node: '>=4.8'}
5647
+
5432
5648
  cross-spawn@7.0.6:
5433
5649
  resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
5434
5650
  engines: {node: '>= 8'}
@@ -5551,6 +5767,15 @@ packages:
5551
5767
  supports-color:
5552
5768
  optional: true
5553
5769
 
5770
+ debug@4.4.0:
5771
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
5772
+ engines: {node: '>=6.0'}
5773
+ peerDependencies:
5774
+ supports-color: '*'
5775
+ peerDependenciesMeta:
5776
+ supports-color:
5777
+ optional: true
5778
+
5554
5779
  debug@4.4.3:
5555
5780
  resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
5556
5781
  engines: {node: '>=6.0'}
@@ -5612,6 +5837,9 @@ packages:
5612
5837
  babel-plugin-macros:
5613
5838
  optional: true
5614
5839
 
5840
+ deep-clone@3.0.3:
5841
+ resolution: {integrity: sha512-6jtXIlCBAwr3GP/7Il52clbIFIKAxg/pnNkL4/sE6+Oqb10MXMtm9LDZV2IAuwdaKV9VBm8hlxAFk9r6pF8XRw==}
5842
+
5615
5843
  deep-extend@0.6.0:
5616
5844
  resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
5617
5845
  engines: {node: '>=4.0.0'}
@@ -5849,12 +6077,18 @@ packages:
5849
6077
  duplexer2@0.0.2:
5850
6078
  resolution: {integrity: sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==}
5851
6079
 
6080
+ duplexer2@0.1.4:
6081
+ resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
6082
+
5852
6083
  duplexer3@0.1.5:
5853
6084
  resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
5854
6085
 
5855
6086
  eastasianwidth@0.2.0:
5856
6087
  resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
5857
6088
 
6089
+ easy-table@1.2.0:
6090
+ resolution: {integrity: sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww==}
6091
+
5858
6092
  ecc-jsbn@0.1.2:
5859
6093
  resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
5860
6094
 
@@ -5931,6 +6165,9 @@ packages:
5931
6165
  resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
5932
6166
  engines: {node: '>= 0.4'}
5933
6167
 
6168
+ es-array-method-boxes-properly@1.0.0:
6169
+ resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
6170
+
5934
6171
  es-define-property@1.0.1:
5935
6172
  resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
5936
6173
  engines: {node: '>= 0.4'}
@@ -6145,6 +6382,10 @@ packages:
6145
6382
  resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
6146
6383
  engines: {node: '>=0.8.x'}
6147
6384
 
6385
+ execa@1.0.0:
6386
+ resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
6387
+ engines: {node: '>=6'}
6388
+
6148
6389
  execa@5.1.1:
6149
6390
  resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
6150
6391
  engines: {node: '>=10'}
@@ -6193,6 +6434,10 @@ packages:
6193
6434
  fast-deep-equal@3.1.3:
6194
6435
  resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
6195
6436
 
6437
+ fast-glob@3.3.2:
6438
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
6439
+ engines: {node: '>=8.6.0'}
6440
+
6196
6441
  fast-glob@3.3.3:
6197
6442
  resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
6198
6443
  engines: {node: '>=8.6.0'}
@@ -6337,6 +6582,11 @@ packages:
6337
6582
  flatted@3.3.3:
6338
6583
  resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
6339
6584
 
6585
+ folder-hash@4.1.1:
6586
+ resolution: {integrity: sha512-1ZSlKJSbET3XpglnEXC9g+QF4QRZhqHIjpFfa4pAMfO4tu/XYPafpeHEX6zOFS2EolOIXr0lPh1eSjmdWItX2w==}
6587
+ engines: {node: '>=10.10.0'}
6588
+ hasBin: true
6589
+
6340
6590
  follow-redirects@1.15.11:
6341
6591
  resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
6342
6592
  engines: {node: '>=4.0'}
@@ -6397,6 +6647,10 @@ packages:
6397
6647
  resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
6398
6648
  engines: {node: '>=12'}
6399
6649
 
6650
+ fs-extra@11.2.0:
6651
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
6652
+ engines: {node: '>=14.14'}
6653
+
6400
6654
  fs-extra@11.3.3:
6401
6655
  resolution: {integrity: sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==}
6402
6656
  engines: {node: '>=14.14'}
@@ -6416,6 +6670,11 @@ packages:
6416
6670
  engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
6417
6671
  os: [darwin]
6418
6672
 
6673
+ fstream@1.0.12:
6674
+ resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
6675
+ engines: {node: '>=0.6'}
6676
+ deprecated: This package is no longer supported.
6677
+
6419
6678
  function-bind@1.1.2:
6420
6679
  resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
6421
6680
 
@@ -6745,6 +7004,10 @@ packages:
6745
7004
  resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
6746
7005
  engines: {node: '>=10.17.0'}
6747
7006
 
7007
+ iceberg-js@0.8.1:
7008
+ resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
7009
+ engines: {node: '>=20.0.0'}
7010
+
6748
7011
  iconv-lite@0.4.24:
6749
7012
  resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
6750
7013
  engines: {node: '>=0.10.0'}
@@ -6859,6 +7122,9 @@ packages:
6859
7122
  is-arrayish@0.2.1:
6860
7123
  resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
6861
7124
 
7125
+ is-arrayish@0.3.4:
7126
+ resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==}
7127
+
6862
7128
  is-async-function@2.1.1:
6863
7129
  resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
6864
7130
  engines: {node: '>= 0.4'}
@@ -6897,6 +7163,11 @@ packages:
6897
7163
  resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
6898
7164
  engines: {node: '>= 0.4'}
6899
7165
 
7166
+ is-docker@2.2.1:
7167
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
7168
+ engines: {node: '>=8'}
7169
+ hasBin: true
7170
+
6900
7171
  is-extglob@2.1.1:
6901
7172
  resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
6902
7173
  engines: {node: '>=0.10.0'}
@@ -7035,10 +7306,6 @@ packages:
7035
7306
  resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
7036
7307
  engines: {node: '>=12'}
7037
7308
 
7038
- is-unicode-supported@2.1.0:
7039
- resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
7040
- engines: {node: '>=18'}
7041
-
7042
7309
  is-weakmap@2.0.2:
7043
7310
  resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
7044
7311
  engines: {node: '>= 0.4'}
@@ -7054,6 +7321,10 @@ packages:
7054
7321
  is-what@3.14.1:
7055
7322
  resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
7056
7323
 
7324
+ is-wsl@2.2.0:
7325
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
7326
+ engines: {node: '>=8'}
7327
+
7057
7328
  isarray@0.0.1:
7058
7329
  resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
7059
7330
 
@@ -7377,6 +7648,9 @@ packages:
7377
7648
  engines: {node: '>=20.17'}
7378
7649
  hasBin: true
7379
7650
 
7651
+ listenercount@1.0.1:
7652
+ resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
7653
+
7380
7654
  listr2@9.0.5:
7381
7655
  resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
7382
7656
  engines: {node: '>=20.0.0'}
@@ -7511,10 +7785,6 @@ packages:
7511
7785
  resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
7512
7786
  engines: {node: '>=12'}
7513
7787
 
7514
- log-symbols@7.0.1:
7515
- resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
7516
- engines: {node: '>=18'}
7517
-
7518
7788
  log-update@6.1.0:
7519
7789
  resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
7520
7790
  engines: {node: '>=18'}
@@ -7557,10 +7827,12 @@ packages:
7557
7827
  lru-cache@5.1.1:
7558
7828
  resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
7559
7829
 
7560
- lucide-react@0.511.0:
7561
- resolution: {integrity: sha512-VK5a2ydJ7xm8GvBeKLS9mu1pVK6ucef9780JVUjw6bAjJL/QXnd4Y0p7SPeOUMC27YhzNCZvm5d/QX0Tp3rc0w==}
7830
+ lucide-react-taro@1.2.0:
7831
+ resolution: {integrity: sha512-V5YGKMyOGNIY41nNq1tGgFGsfANAB6ESxO0guw6L+7WVxqM3Ub9nexia/JVTGxcaDllWXCsBTBzC3WKNKJN2Gw==}
7832
+ hasBin: true
7562
7833
  peerDependencies:
7563
- react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
7834
+ '@tarojs/components': '>=3.0.0'
7835
+ react: '>=16.8.0'
7564
7836
 
7565
7837
  magic-string@0.30.21:
7566
7838
  resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
@@ -7694,6 +7966,10 @@ packages:
7694
7966
  resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
7695
7967
  engines: {node: '>=10'}
7696
7968
 
7969
+ minimatch@7.4.6:
7970
+ resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
7971
+ engines: {node: '>=10'}
7972
+
7697
7973
  minimatch@9.0.3:
7698
7974
  resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
7699
7975
  engines: {node: '>=16 || 14 >=14.17'}
@@ -7812,6 +8088,9 @@ packages:
7812
8088
  resolution: {integrity: sha512-P6qw6kenNXP+J9XlKJNi/MNHUQ+Lx5K8FEcSfX7/w8KJdZan5+BB5MKzuNgL2RTjHG1Svg8SehfseVEp8zAqwA==}
7813
8089
  engines: {node: '>=6.0.0'}
7814
8090
 
8091
+ nice-try@1.0.5:
8092
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
8093
+
7815
8094
  no-case@2.3.2:
7816
8095
  resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
7817
8096
 
@@ -7847,6 +8126,9 @@ packages:
7847
8126
  encoding:
7848
8127
  optional: true
7849
8128
 
8129
+ node-machine-id@1.1.12:
8130
+ resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
8131
+
7850
8132
  node-releases@2.0.27:
7851
8133
  resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
7852
8134
 
@@ -7876,6 +8158,10 @@ packages:
7876
8158
  npm-normalize-package-bin@1.0.1:
7877
8159
  resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
7878
8160
 
8161
+ npm-run-path@2.0.2:
8162
+ resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
8163
+ engines: {node: '>=4'}
8164
+
7879
8165
  npm-run-path@4.0.1:
7880
8166
  resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
7881
8167
  engines: {node: '>=8'}
@@ -7919,6 +8205,10 @@ packages:
7919
8205
  resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
7920
8206
  engines: {node: '>= 0.4'}
7921
8207
 
8208
+ object.getownpropertydescriptors@2.1.9:
8209
+ resolution: {integrity: sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g==}
8210
+ engines: {node: '>= 0.4'}
8211
+
7922
8212
  object.groupby@1.0.3:
7923
8213
  resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
7924
8214
  engines: {node: '>= 0.4'}
@@ -7976,10 +8266,6 @@ packages:
7976
8266
  resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==}
7977
8267
  engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
7978
8268
 
7979
- ora@9.1.0:
7980
- resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
7981
- engines: {node: '>=20'}
7982
-
7983
8269
  os-homedir@1.0.2:
7984
8270
  resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
7985
8271
  engines: {node: '>=0.10.0'}
@@ -8122,6 +8408,10 @@ packages:
8122
8408
  resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
8123
8409
  engines: {node: '>=0.10.0'}
8124
8410
 
8411
+ path-key@2.0.1:
8412
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
8413
+ engines: {node: '>=4'}
8414
+
8125
8415
  path-key@3.1.1:
8126
8416
  resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
8127
8417
  engines: {node: '>=8'}
@@ -8909,6 +9199,10 @@ packages:
8909
9199
  resolution: {integrity: sha512-2CNoRoh95LxY47LvqrehIAfUVda2JbuFE/HaGYs42bNrGG+ojbw1h3zOcPcQ+1GQ3+rkzNndZn85u1XyZ3UsIA==}
8910
9200
  deprecated: The functionality that this package provided is now in @npmcli/arborist
8911
9201
 
9202
+ read-package-tree@5.3.1:
9203
+ resolution: {integrity: sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw==}
9204
+ deprecated: The functionality that this package provided is now in @npmcli/arborist
9205
+
8912
9206
  readable-stream@1.1.14:
8913
9207
  resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
8914
9208
 
@@ -9094,6 +9388,11 @@ packages:
9094
9388
  rfdc@1.4.1:
9095
9389
  resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
9096
9390
 
9391
+ rimraf@2.7.1:
9392
+ resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
9393
+ deprecated: Rimraf versions prior to v4 are no longer supported
9394
+ hasBin: true
9395
+
9097
9396
  rimraf@3.0.2:
9098
9397
  resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
9099
9398
  deprecated: Rimraf versions prior to v4 are no longer supported
@@ -9179,6 +9478,9 @@ packages:
9179
9478
  resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
9180
9479
  hasBin: true
9181
9480
 
9481
+ semver-compare@1.0.0:
9482
+ resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
9483
+
9182
9484
  semver@5.7.2:
9183
9485
  resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
9184
9486
  hasBin: true
@@ -9253,10 +9555,22 @@ packages:
9253
9555
  resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
9254
9556
  engines: {node: '>=8'}
9255
9557
 
9558
+ sharp@0.33.5:
9559
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
9560
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
9561
+
9562
+ shebang-command@1.2.0:
9563
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
9564
+ engines: {node: '>=0.10.0'}
9565
+
9256
9566
  shebang-command@2.0.0:
9257
9567
  resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
9258
9568
  engines: {node: '>=8'}
9259
9569
 
9570
+ shebang-regex@1.0.0:
9571
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
9572
+ engines: {node: '>=0.10.0'}
9573
+
9260
9574
  shebang-regex@3.0.0:
9261
9575
  resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
9262
9576
  engines: {node: '>=8'}
@@ -9302,6 +9616,9 @@ packages:
9302
9616
  simple-plist@1.3.1:
9303
9617
  resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
9304
9618
 
9619
+ simple-swizzle@0.2.4:
9620
+ resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
9621
+
9305
9622
  simple-wcswidth@1.1.2:
9306
9623
  resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
9307
9624
 
@@ -9409,10 +9726,6 @@ packages:
9409
9726
  resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==}
9410
9727
  engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
9411
9728
 
9412
- stdin-discarder@0.2.2:
9413
- resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
9414
- engines: {node: '>=18'}
9415
-
9416
9729
  stop-iteration-iterator@1.1.0:
9417
9730
  resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
9418
9731
  engines: {node: '>= 0.4'}
@@ -9509,6 +9822,10 @@ packages:
9509
9822
  strip-dirs@2.1.0:
9510
9823
  resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==}
9511
9824
 
9825
+ strip-eof@1.0.0:
9826
+ resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
9827
+ engines: {node: '>=0.10.0'}
9828
+
9512
9829
  strip-final-newline@2.0.0:
9513
9830
  resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
9514
9831
  engines: {node: '>=6'}
@@ -9667,6 +9984,11 @@ packages:
9667
9984
  engines: {node: '>=6.0.0'}
9668
9985
  hasBin: true
9669
9986
 
9987
+ terser@5.26.0:
9988
+ resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
9989
+ engines: {node: '>=10'}
9990
+ hasBin: true
9991
+
9670
9992
  terser@5.44.1:
9671
9993
  resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==}
9672
9994
  engines: {node: '>=10'}
@@ -9762,10 +10084,8 @@ packages:
9762
10084
  tr46@0.0.3:
9763
10085
  resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
9764
10086
 
9765
- transliteration@2.6.1:
9766
- resolution: {integrity: sha512-hJ9BhrQAOnNTbpOr1MxsNjZISkn7ppvF5TKUeFmTE1mG4ZPD/XVxF0L0LUoIUCWmQyxH0gJpVtfYLAWf298U9w==}
9767
- engines: {node: '>=20.0.0'}
9768
- hasBin: true
10087
+ traverse@0.3.9:
10088
+ resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
9769
10089
 
9770
10090
  tree-kill@1.2.2:
9771
10091
  resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
@@ -9808,6 +10128,10 @@ packages:
9808
10128
  tslib@2.8.1:
9809
10129
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
9810
10130
 
10131
+ tt-ide-cli@0.1.31:
10132
+ resolution: {integrity: sha512-1MTL9cG2EYwPWzv6JY+quNHhcjbtV/gfp760zsKWsZZ/19qGGu0eJI6jBrO/rlzr8BWf3QPzGjLsH3oA2WJrdQ==}
10133
+ hasBin: true
10134
+
9811
10135
  tunnel-agent@0.6.0:
9812
10136
  resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
9813
10137
 
@@ -9932,6 +10256,9 @@ packages:
9932
10256
  resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
9933
10257
  engines: {node: '>= 0.8'}
9934
10258
 
10259
+ unzipper@0.10.14:
10260
+ resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
10261
+
9935
10262
  update-browserslist-db@1.2.3:
9936
10263
  resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
9937
10264
  hasBin: true
@@ -9967,6 +10294,9 @@ packages:
9967
10294
  util-deprecate@1.0.2:
9968
10295
  resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
9969
10296
 
10297
+ util-promisify@2.1.0:
10298
+ resolution: {integrity: sha512-K+5eQPYs14b3+E+hmE2J6gCZ4JmMl9DbYS6BeP2CHq6WMuNxErxf5B/n0fz85L8zUuoO6rIzNNmIQDu/j+1OcA==}
10299
+
9970
10300
  utils-merge@1.0.1:
9971
10301
  resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
9972
10302
  engines: {node: '>= 0.4.0'}
@@ -10141,6 +10471,18 @@ packages:
10141
10471
  resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
10142
10472
  engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
10143
10473
 
10474
+ ws@8.19.0:
10475
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
10476
+ engines: {node: '>=10.0.0'}
10477
+ peerDependencies:
10478
+ bufferutil: ^4.0.1
10479
+ utf-8-validate: '>=5.0.2'
10480
+ peerDependenciesMeta:
10481
+ bufferutil:
10482
+ optional: true
10483
+ utf-8-validate:
10484
+ optional: true
10485
+
10144
10486
  wxml-minifier@0.0.1:
10145
10487
  resolution: {integrity: sha512-g8ZS4fyLdyRIcExnevKTnAFxbtYlAPKBGFO1DXOcsJfmppQWjH2xe2Ff6rRQ2ubYAWalaNjMYpkAl6hurhqkHg==}
10146
10488
 
@@ -10216,10 +10558,6 @@ packages:
10216
10558
  resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
10217
10559
  engines: {node: '>=10'}
10218
10560
 
10219
- yoctocolors@2.1.2:
10220
- resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
10221
- engines: {node: '>=18'}
10222
-
10223
10561
  yup@1.7.1:
10224
10562
  resolution: {integrity: sha512-GKHFX2nXul2/4Dtfxhozv701jLQHdf6J34YDh2cEkpqoo8le5Mg6/LrdseVLrFarmFygZTlfIhHx/QKfb/QWXw==}
10225
10563
 
@@ -12777,6 +13115,11 @@ snapshots:
12777
13115
 
12778
13116
  '@dual-bundle/import-meta-resolve@4.2.1': {}
12779
13117
 
13118
+ '@emnapi/runtime@1.8.1':
13119
+ dependencies:
13120
+ tslib: 2.8.1
13121
+ optional: true
13122
+
12780
13123
  '@esbuild-kit/core-utils@3.3.2':
12781
13124
  dependencies:
12782
13125
  esbuild: 0.18.20
@@ -13070,6 +13413,81 @@ snapshots:
13070
13413
 
13071
13414
  '@humanwhocodes/object-schema@2.0.3': {}
13072
13415
 
13416
+ '@img/sharp-darwin-arm64@0.33.5':
13417
+ optionalDependencies:
13418
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
13419
+ optional: true
13420
+
13421
+ '@img/sharp-darwin-x64@0.33.5':
13422
+ optionalDependencies:
13423
+ '@img/sharp-libvips-darwin-x64': 1.0.4
13424
+ optional: true
13425
+
13426
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
13427
+ optional: true
13428
+
13429
+ '@img/sharp-libvips-darwin-x64@1.0.4':
13430
+ optional: true
13431
+
13432
+ '@img/sharp-libvips-linux-arm64@1.0.4':
13433
+ optional: true
13434
+
13435
+ '@img/sharp-libvips-linux-arm@1.0.5':
13436
+ optional: true
13437
+
13438
+ '@img/sharp-libvips-linux-s390x@1.0.4':
13439
+ optional: true
13440
+
13441
+ '@img/sharp-libvips-linux-x64@1.0.4':
13442
+ optional: true
13443
+
13444
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
13445
+ optional: true
13446
+
13447
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
13448
+ optional: true
13449
+
13450
+ '@img/sharp-linux-arm64@0.33.5':
13451
+ optionalDependencies:
13452
+ '@img/sharp-libvips-linux-arm64': 1.0.4
13453
+ optional: true
13454
+
13455
+ '@img/sharp-linux-arm@0.33.5':
13456
+ optionalDependencies:
13457
+ '@img/sharp-libvips-linux-arm': 1.0.5
13458
+ optional: true
13459
+
13460
+ '@img/sharp-linux-s390x@0.33.5':
13461
+ optionalDependencies:
13462
+ '@img/sharp-libvips-linux-s390x': 1.0.4
13463
+ optional: true
13464
+
13465
+ '@img/sharp-linux-x64@0.33.5':
13466
+ optionalDependencies:
13467
+ '@img/sharp-libvips-linux-x64': 1.0.4
13468
+ optional: true
13469
+
13470
+ '@img/sharp-linuxmusl-arm64@0.33.5':
13471
+ optionalDependencies:
13472
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
13473
+ optional: true
13474
+
13475
+ '@img/sharp-linuxmusl-x64@0.33.5':
13476
+ optionalDependencies:
13477
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
13478
+ optional: true
13479
+
13480
+ '@img/sharp-wasm32@0.33.5':
13481
+ dependencies:
13482
+ '@emnapi/runtime': 1.8.1
13483
+ optional: true
13484
+
13485
+ '@img/sharp-win32-ia32@0.33.5':
13486
+ optional: true
13487
+
13488
+ '@img/sharp-win32-x64@0.33.5':
13489
+ optional: true
13490
+
13073
13491
  '@inquirer/external-editor@1.0.3(@types/node@22.19.6)':
13074
13492
  dependencies:
13075
13493
  chardet: 2.1.1
@@ -13589,14 +14007,14 @@ snapshots:
13589
14007
 
13590
14008
  '@keyv/serialize@1.1.1': {}
13591
14009
 
13592
- '@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5))':
14010
+ '@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
13593
14011
  dependencies:
13594
14012
  '@cfworker/json-schema': 4.1.1
13595
14013
  ansi-styles: 5.2.0
13596
14014
  camelcase: 6.3.0
13597
14015
  decamelize: 1.2.0
13598
14016
  js-tiktoken: 1.0.21
13599
- langsmith: 0.4.7(openai@6.16.0(zod@4.3.5))
14017
+ langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
13600
14018
  mustache: 4.2.0
13601
14019
  p-queue: 6.6.2
13602
14020
  uuid: 10.0.0
@@ -13607,11 +14025,11 @@ snapshots:
13607
14025
  - '@opentelemetry/sdk-trace-base'
13608
14026
  - openai
13609
14027
 
13610
- '@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5)))':
14028
+ '@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)':
13611
14029
  dependencies:
13612
- '@langchain/core': 1.1.16(openai@6.16.0(zod@4.3.5))
14030
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
13613
14031
  js-tiktoken: 1.0.21
13614
- openai: 6.16.0(zod@4.3.5)
14032
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
13615
14033
  zod: 4.3.5
13616
14034
  transitivePeerDependencies:
13617
14035
  - ws
@@ -14230,6 +14648,44 @@ snapshots:
14230
14648
 
14231
14649
  '@stencil/core@2.22.3': {}
14232
14650
 
14651
+ '@supabase/auth-js@2.95.3':
14652
+ dependencies:
14653
+ tslib: 2.8.1
14654
+
14655
+ '@supabase/functions-js@2.95.3':
14656
+ dependencies:
14657
+ tslib: 2.8.1
14658
+
14659
+ '@supabase/postgrest-js@2.95.3':
14660
+ dependencies:
14661
+ tslib: 2.8.1
14662
+
14663
+ '@supabase/realtime-js@2.95.3':
14664
+ dependencies:
14665
+ '@types/phoenix': 1.6.7
14666
+ '@types/ws': 8.18.1
14667
+ tslib: 2.8.1
14668
+ ws: 8.19.0
14669
+ transitivePeerDependencies:
14670
+ - bufferutil
14671
+ - utf-8-validate
14672
+
14673
+ '@supabase/storage-js@2.95.3':
14674
+ dependencies:
14675
+ iceberg-js: 0.8.1
14676
+ tslib: 2.8.1
14677
+
14678
+ '@supabase/supabase-js@2.95.3':
14679
+ dependencies:
14680
+ '@supabase/auth-js': 2.95.3
14681
+ '@supabase/functions-js': 2.95.3
14682
+ '@supabase/postgrest-js': 2.95.3
14683
+ '@supabase/realtime-js': 2.95.3
14684
+ '@supabase/storage-js': 2.95.3
14685
+ transitivePeerDependencies:
14686
+ - bufferutil
14687
+ - utf-8-validate
14688
+
14233
14689
  '@swc/core-darwin-arm64@1.3.96':
14234
14690
  optional: true
14235
14691
 
@@ -14670,7 +15126,7 @@ snapshots:
14670
15126
  - babel-plugin-macros
14671
15127
  - supports-color
14672
15128
 
14673
- '@tarojs/plugin-mini-ci@4.1.9(miniprogram-ci@2.1.26(eslint@8.57.1))':
15129
+ '@tarojs/plugin-mini-ci@4.1.9(patch_hash=j6dgmq33tuqqgowk7tjyyinctm)(miniprogram-ci@2.1.26(eslint@8.57.1))(tt-ide-cli@0.1.31(@types/node@22.19.6))':
14674
15130
  dependencies:
14675
15131
  axios: 1.13.2
14676
15132
  jimp: 0.22.12
@@ -14680,6 +15136,8 @@ snapshots:
14680
15136
  qrcode: 1.5.4
14681
15137
  resolve: 1.22.11
14682
15138
  shelljs: 0.8.5
15139
+ optionalDependencies:
15140
+ tt-ide-cli: 0.1.31(@types/node@22.19.6)
14683
15141
  transitivePeerDependencies:
14684
15142
  - debug
14685
15143
  - encoding
@@ -14713,6 +15171,12 @@ snapshots:
14713
15171
  - webpack-chain
14714
15172
  - webpack-dev-server
14715
15173
 
15174
+ '@tarojs/plugin-platform-tt@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
15175
+ dependencies:
15176
+ '@tarojs/service': 4.1.9
15177
+ '@tarojs/shared': 4.1.9
15178
+ webpack-sources: 3.3.3
15179
+
14716
15180
  '@tarojs/plugin-platform-weapp@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
14717
15181
  dependencies:
14718
15182
  '@tarojs/service': 4.1.9
@@ -14868,6 +15332,14 @@ snapshots:
14868
15332
  minimatch: 10.1.1
14869
15333
  path-browserify: 1.0.1
14870
15334
 
15335
+ '@tt-miniprogram/ext-pack@1.2.4':
15336
+ dependencies:
15337
+ convert-source-map: 2.0.0
15338
+ fast-glob: 3.3.2
15339
+ fs-extra: 11.2.0
15340
+ read-package-tree: 5.3.1
15341
+ terser: 5.26.0
15342
+
14871
15343
  '@types/archy@0.0.31': {}
14872
15344
 
14873
15345
  '@types/babel__core@7.20.5':
@@ -14970,6 +15442,8 @@ snapshots:
14970
15442
  dependencies:
14971
15443
  undici-types: 6.21.0
14972
15444
 
15445
+ '@types/phoenix@1.6.7': {}
15446
+
14973
15447
  '@types/postcss-url@10.0.4':
14974
15448
  dependencies:
14975
15449
  '@types/node': 22.19.6
@@ -15007,6 +15481,10 @@ snapshots:
15007
15481
 
15008
15482
  '@types/uuid@10.0.0': {}
15009
15483
 
15484
+ '@types/ws@8.18.1':
15485
+ dependencies:
15486
+ '@types/node': 22.19.6
15487
+
15010
15488
  '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
15011
15489
  dependencies:
15012
15490
  '@eslint-community/regexpp': 4.12.2
@@ -15400,6 +15878,8 @@ snapshots:
15400
15878
 
15401
15879
  append-field@1.0.0: {}
15402
15880
 
15881
+ arch@2.2.0: {}
15882
+
15403
15883
  archive-type@4.0.0:
15404
15884
  dependencies:
15405
15885
  file-type: 4.4.0
@@ -15503,6 +15983,17 @@ snapshots:
15503
15983
  es-abstract: 1.24.1
15504
15984
  es-shim-unscopables: 1.1.0
15505
15985
 
15986
+ array.prototype.reduce@1.0.8:
15987
+ dependencies:
15988
+ call-bind: 1.0.8
15989
+ call-bound: 1.0.4
15990
+ define-properties: 1.2.1
15991
+ es-abstract: 1.24.1
15992
+ es-array-method-boxes-properly: 1.0.0
15993
+ es-errors: 1.3.0
15994
+ es-object-atoms: 1.1.1
15995
+ is-string: 1.1.1
15996
+
15506
15997
  array.prototype.tosorted@1.1.4:
15507
15998
  dependencies:
15508
15999
  call-bind: 1.0.8
@@ -16216,6 +16707,11 @@ snapshots:
16216
16707
 
16217
16708
  binary-extensions@2.3.0: {}
16218
16709
 
16710
+ binary@0.3.0:
16711
+ dependencies:
16712
+ buffers: 0.1.1
16713
+ chainsaw: 0.1.0
16714
+
16219
16715
  bindings@1.5.0:
16220
16716
  dependencies:
16221
16717
  file-uri-to-path: 1.0.0
@@ -16237,6 +16733,8 @@ snapshots:
16237
16733
  inherits: 2.0.4
16238
16734
  readable-stream: 3.6.2
16239
16735
 
16736
+ bluebird@3.4.7: {}
16737
+
16240
16738
  bmp-js@0.1.0: {}
16241
16739
 
16242
16740
  body-parser@1.20.3:
@@ -16318,6 +16816,8 @@ snapshots:
16318
16816
 
16319
16817
  buffer-from@1.1.2: {}
16320
16818
 
16819
+ buffer-indexof-polyfill@1.0.2: {}
16820
+
16321
16821
  buffer@5.6.0:
16322
16822
  dependencies:
16323
16823
  base64-js: 1.5.1
@@ -16333,6 +16833,8 @@ snapshots:
16333
16833
  base64-js: 1.5.1
16334
16834
  ieee754: 1.2.1
16335
16835
 
16836
+ buffers@0.1.1: {}
16837
+
16336
16838
  busboy@1.6.0:
16337
16839
  dependencies:
16338
16840
  streamsearch: 1.1.0
@@ -16447,6 +16949,10 @@ snapshots:
16447
16949
  transitivePeerDependencies:
16448
16950
  - debug
16449
16951
 
16952
+ chainsaw@0.1.0:
16953
+ dependencies:
16954
+ traverse: 0.3.9
16955
+
16450
16956
  chalk@1.1.3:
16451
16957
  dependencies:
16452
16958
  ansi-styles: 2.2.1
@@ -16551,8 +17057,6 @@ snapshots:
16551
17057
 
16552
17058
  cli-spinners@2.9.2: {}
16553
17059
 
16554
- cli-spinners@3.4.0: {}
16555
-
16556
17060
  cli-table3@0.6.5:
16557
17061
  dependencies:
16558
17062
  string-width: 4.2.3
@@ -16568,6 +17072,12 @@ snapshots:
16568
17072
 
16569
17073
  cli-width@4.1.0: {}
16570
17074
 
17075
+ clipboardy@2.3.0:
17076
+ dependencies:
17077
+ arch: 2.2.0
17078
+ execa: 1.0.0
17079
+ is-wsl: 2.2.0
17080
+
16571
17081
  cliui@6.0.0:
16572
17082
  dependencies:
16573
17083
  string-width: 4.2.3
@@ -16618,8 +17128,18 @@ snapshots:
16618
17128
 
16619
17129
  color-name@1.1.4: {}
16620
17130
 
17131
+ color-string@1.9.1:
17132
+ dependencies:
17133
+ color-name: 1.1.4
17134
+ simple-swizzle: 0.2.4
17135
+
16621
17136
  color-support@1.1.3: {}
16622
17137
 
17138
+ color@4.2.3:
17139
+ dependencies:
17140
+ color-convert: 2.0.1
17141
+ color-string: 1.9.1
17142
+
16623
17143
  colord@2.9.3: {}
16624
17144
 
16625
17145
  colorette@2.0.20: {}
@@ -16636,6 +17156,8 @@ snapshots:
16636
17156
 
16637
17157
  commander@4.1.1: {}
16638
17158
 
17159
+ commander@5.1.0: {}
17160
+
16639
17161
  commander@7.2.0: {}
16640
17162
 
16641
17163
  commander@9.5.0: {}
@@ -16786,56 +17308,22 @@ snapshots:
16786
17308
  optionalDependencies:
16787
17309
  typescript: 5.9.3
16788
17310
 
16789
- coze-coding-dev-sdk@0.7.3(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(openai@6.16.0(zod@4.3.5)):
17311
+ coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
16790
17312
  dependencies:
16791
- '@aws-sdk/client-s3': 3.972.0
16792
- '@aws-sdk/lib-storage': 3.972.0(@aws-sdk/client-s3@3.972.0)
16793
- '@langchain/core': 1.1.16(openai@6.16.0(zod@4.3.5))
16794
- '@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5)))
17313
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
17314
+ '@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)
17315
+ '@supabase/supabase-js': 2.95.3
16795
17316
  axios: 1.13.2
16796
- chalk: 5.6.2
16797
- commander: 14.0.2
16798
- drizzle-kit: 0.31.8
16799
- drizzle-orm: 0.45.1(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(pg@8.17.2)
16800
- ora: 9.1.0
16801
17317
  pg: 8.17.2
16802
- transliteration: 2.6.1
16803
17318
  transitivePeerDependencies:
16804
- - '@aws-sdk/client-rds-data'
16805
- - '@cloudflare/workers-types'
16806
- - '@electric-sql/pglite'
16807
- - '@libsql/client'
16808
- - '@libsql/client-wasm'
16809
- - '@neondatabase/serverless'
16810
- - '@op-engineering/op-sqlite'
16811
17319
  - '@opentelemetry/api'
16812
17320
  - '@opentelemetry/exporter-trace-otlp-proto'
16813
17321
  - '@opentelemetry/sdk-trace-base'
16814
- - '@planetscale/database'
16815
- - '@prisma/client'
16816
- - '@tidbcloud/serverless'
16817
- - '@types/better-sqlite3'
16818
- - '@types/pg'
16819
- - '@types/sql.js'
16820
- - '@upstash/redis'
16821
- - '@vercel/postgres'
16822
- - '@xata.io/client'
16823
- - aws-crt
16824
- - better-sqlite3
16825
- - bun-types
17322
+ - bufferutil
16826
17323
  - debug
16827
- - expo-sqlite
16828
- - gel
16829
- - knex
16830
- - kysely
16831
- - mysql2
16832
17324
  - openai
16833
17325
  - pg-native
16834
- - postgres
16835
- - prisma
16836
- - sql.js
16837
- - sqlite3
16838
- - supports-color
17326
+ - utf-8-validate
16839
17327
  - ws
16840
17328
 
16841
17329
  crc-32@1.2.2: {}
@@ -16845,6 +17333,14 @@ snapshots:
16845
17333
  crc-32: 1.2.2
16846
17334
  readable-stream: 3.6.2
16847
17335
 
17336
+ cross-spawn@6.0.6:
17337
+ dependencies:
17338
+ nice-try: 1.0.5
17339
+ path-key: 2.0.1
17340
+ semver: 5.7.2
17341
+ shebang-command: 1.2.0
17342
+ which: 1.3.1
17343
+
16848
17344
  cross-spawn@7.0.6:
16849
17345
  dependencies:
16850
17346
  path-key: 3.1.1
@@ -16987,6 +17483,10 @@ snapshots:
16987
17483
  dependencies:
16988
17484
  ms: 2.1.3
16989
17485
 
17486
+ debug@4.4.0:
17487
+ dependencies:
17488
+ ms: 2.1.3
17489
+
16990
17490
  debug@4.4.3:
16991
17491
  dependencies:
16992
17492
  ms: 2.1.3
@@ -17047,6 +17547,8 @@ snapshots:
17047
17547
 
17048
17548
  dedent@1.7.1: {}
17049
17549
 
17550
+ deep-clone@3.0.3: {}
17551
+
17050
17552
  deep-extend@0.6.0: {}
17051
17553
 
17052
17554
  deep-is@0.1.4: {}
@@ -17228,10 +17730,20 @@ snapshots:
17228
17730
  dependencies:
17229
17731
  readable-stream: 1.1.14
17230
17732
 
17733
+ duplexer2@0.1.4:
17734
+ dependencies:
17735
+ readable-stream: 2.3.8
17736
+
17231
17737
  duplexer3@0.1.5: {}
17232
17738
 
17233
17739
  eastasianwidth@0.2.0: {}
17234
17740
 
17741
+ easy-table@1.2.0:
17742
+ dependencies:
17743
+ ansi-regex: 5.0.1
17744
+ optionalDependencies:
17745
+ wcwidth: 1.0.1
17746
+
17235
17747
  ecc-jsbn@0.1.2:
17236
17748
  dependencies:
17237
17749
  jsbn: 0.1.1
@@ -17341,6 +17853,8 @@ snapshots:
17341
17853
  unbox-primitive: 1.1.0
17342
17854
  which-typed-array: 1.1.19
17343
17855
 
17856
+ es-array-method-boxes-properly@1.0.0: {}
17857
+
17344
17858
  es-define-property@1.0.1: {}
17345
17859
 
17346
17860
  es-errors@1.3.0: {}
@@ -17715,6 +18229,16 @@ snapshots:
17715
18229
 
17716
18230
  events@3.3.0: {}
17717
18231
 
18232
+ execa@1.0.0:
18233
+ dependencies:
18234
+ cross-spawn: 6.0.6
18235
+ get-stream: 4.1.0
18236
+ is-stream: 1.1.0
18237
+ npm-run-path: 2.0.2
18238
+ p-finally: 1.0.0
18239
+ signal-exit: 3.0.7
18240
+ strip-eof: 1.0.0
18241
+
17718
18242
  execa@5.1.1:
17719
18243
  dependencies:
17720
18244
  cross-spawn: 7.0.6
@@ -17830,6 +18354,14 @@ snapshots:
17830
18354
 
17831
18355
  fast-deep-equal@3.1.3: {}
17832
18356
 
18357
+ fast-glob@3.3.2:
18358
+ dependencies:
18359
+ '@nodelib/fs.stat': 2.0.5
18360
+ '@nodelib/fs.walk': 1.2.8
18361
+ glob-parent: 5.1.2
18362
+ merge2: 1.4.1
18363
+ micromatch: 4.0.8
18364
+
17833
18365
  fast-glob@3.3.3:
17834
18366
  dependencies:
17835
18367
  '@nodelib/fs.stat': 2.0.5
@@ -17988,6 +18520,13 @@ snapshots:
17988
18520
 
17989
18521
  flatted@3.3.3: {}
17990
18522
 
18523
+ folder-hash@4.1.1:
18524
+ dependencies:
18525
+ debug: 4.4.0
18526
+ minimatch: 7.4.6
18527
+ transitivePeerDependencies:
18528
+ - supports-color
18529
+
17991
18530
  follow-redirects@1.15.11: {}
17992
18531
 
17993
18532
  for-each@0.3.5:
@@ -18053,6 +18592,12 @@ snapshots:
18053
18592
  jsonfile: 6.2.0
18054
18593
  universalify: 2.0.1
18055
18594
 
18595
+ fs-extra@11.2.0:
18596
+ dependencies:
18597
+ graceful-fs: 4.2.11
18598
+ jsonfile: 6.2.0
18599
+ universalify: 2.0.1
18600
+
18056
18601
  fs-extra@11.3.3:
18057
18602
  dependencies:
18058
18603
  graceful-fs: 4.2.11
@@ -18072,6 +18617,13 @@ snapshots:
18072
18617
  fsevents@2.3.3:
18073
18618
  optional: true
18074
18619
 
18620
+ fstream@1.0.12:
18621
+ dependencies:
18622
+ graceful-fs: 4.2.11
18623
+ inherits: 2.0.4
18624
+ mkdirp: 0.5.6
18625
+ rimraf: 2.7.1
18626
+
18075
18627
  function-bind@1.1.2: {}
18076
18628
 
18077
18629
  function.prototype.name@1.1.8:
@@ -18478,6 +19030,8 @@ snapshots:
18478
19030
 
18479
19031
  human-signals@2.1.0: {}
18480
19032
 
19033
+ iceberg-js@0.8.1: {}
19034
+
18481
19035
  iconv-lite@0.4.24:
18482
19036
  dependencies:
18483
19037
  safer-buffer: 2.1.2
@@ -18627,6 +19181,8 @@ snapshots:
18627
19181
 
18628
19182
  is-arrayish@0.2.1: {}
18629
19183
 
19184
+ is-arrayish@0.3.4: {}
19185
+
18630
19186
  is-async-function@2.1.1:
18631
19187
  dependencies:
18632
19188
  async-function: 1.0.0
@@ -18669,6 +19225,8 @@ snapshots:
18669
19225
  call-bound: 1.0.4
18670
19226
  has-tostringtag: 1.0.2
18671
19227
 
19228
+ is-docker@2.2.1: {}
19229
+
18672
19230
  is-extglob@2.1.1: {}
18673
19231
 
18674
19232
  is-finalizationregistry@1.1.1:
@@ -18774,8 +19332,6 @@ snapshots:
18774
19332
 
18775
19333
  is-unicode-supported@1.3.0: {}
18776
19334
 
18777
- is-unicode-supported@2.1.0: {}
18778
-
18779
19335
  is-weakmap@2.0.2: {}
18780
19336
 
18781
19337
  is-weakref@1.1.1:
@@ -18789,6 +19345,10 @@ snapshots:
18789
19345
 
18790
19346
  is-what@3.14.1: {}
18791
19347
 
19348
+ is-wsl@2.2.0:
19349
+ dependencies:
19350
+ is-docker: 2.2.1
19351
+
18792
19352
  isarray@0.0.1: {}
18793
19353
 
18794
19354
  isarray@1.0.0: {}
@@ -18987,7 +19547,7 @@ snapshots:
18987
19547
 
18988
19548
  known-css-properties@0.37.0: {}
18989
19549
 
18990
- langsmith@0.4.7(openai@6.16.0(zod@4.3.5)):
19550
+ langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
18991
19551
  dependencies:
18992
19552
  '@types/uuid': 10.0.0
18993
19553
  chalk: 4.1.2
@@ -18996,7 +19556,7 @@ snapshots:
18996
19556
  semver: 7.7.3
18997
19557
  uuid: 10.0.0
18998
19558
  optionalDependencies:
18999
- openai: 6.16.0(zod@4.3.5)
19559
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
19000
19560
 
19001
19561
  latest-version@5.1.0:
19002
19562
  dependencies:
@@ -19098,6 +19658,8 @@ snapshots:
19098
19658
  string-argv: 0.3.2
19099
19659
  yaml: 2.8.2
19100
19660
 
19661
+ listenercount@1.0.1: {}
19662
+
19101
19663
  listr2@9.0.5:
19102
19664
  dependencies:
19103
19665
  cli-truncate: 5.1.1
@@ -19238,11 +19800,6 @@ snapshots:
19238
19800
  chalk: 5.6.2
19239
19801
  is-unicode-supported: 1.3.0
19240
19802
 
19241
- log-symbols@7.0.1:
19242
- dependencies:
19243
- is-unicode-supported: 2.1.0
19244
- yoctocolors: 2.1.2
19245
-
19246
19803
  log-update@6.1.0:
19247
19804
  dependencies:
19248
19805
  ansi-escapes: 7.2.0
@@ -19279,9 +19836,12 @@ snapshots:
19279
19836
  dependencies:
19280
19837
  yallist: 3.1.1
19281
19838
 
19282
- lucide-react@0.511.0(react@18.3.1):
19839
+ lucide-react-taro@1.2.0(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(react@18.3.1):
19283
19840
  dependencies:
19841
+ '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
19842
+ commander: 14.0.2
19284
19843
  react: 18.3.1
19844
+ sharp: 0.33.5
19285
19845
 
19286
19846
  magic-string@0.30.21:
19287
19847
  dependencies:
@@ -19386,6 +19946,10 @@ snapshots:
19386
19946
  dependencies:
19387
19947
  brace-expansion: 2.0.2
19388
19948
 
19949
+ minimatch@7.4.6:
19950
+ dependencies:
19951
+ brace-expansion: 2.0.2
19952
+
19389
19953
  minimatch@9.0.3:
19390
19954
  dependencies:
19391
19955
  brace-expansion: 2.0.2
@@ -19677,6 +20241,8 @@ snapshots:
19677
20241
 
19678
20242
  nextgen-events@1.5.3: {}
19679
20243
 
20244
+ nice-try@1.0.5: {}
20245
+
19680
20246
  no-case@2.3.2:
19681
20247
  dependencies:
19682
20248
  lower-case: 1.1.4
@@ -19707,6 +20273,8 @@ snapshots:
19707
20273
  dependencies:
19708
20274
  whatwg-url: 5.0.0
19709
20275
 
20276
+ node-machine-id@1.1.12: {}
20277
+
19710
20278
  node-releases@2.0.27: {}
19711
20279
 
19712
20280
  normalize-package-data@2.5.0:
@@ -19735,6 +20303,10 @@ snapshots:
19735
20303
 
19736
20304
  npm-normalize-package-bin@1.0.1: {}
19737
20305
 
20306
+ npm-run-path@2.0.2:
20307
+ dependencies:
20308
+ path-key: 2.0.1
20309
+
19738
20310
  npm-run-path@4.0.1:
19739
20311
  dependencies:
19740
20312
  path-key: 3.1.1
@@ -19784,6 +20356,16 @@ snapshots:
19784
20356
  es-abstract: 1.24.1
19785
20357
  es-object-atoms: 1.1.1
19786
20358
 
20359
+ object.getownpropertydescriptors@2.1.9:
20360
+ dependencies:
20361
+ array.prototype.reduce: 1.0.8
20362
+ call-bind: 1.0.8
20363
+ define-properties: 1.2.1
20364
+ es-abstract: 1.24.1
20365
+ es-object-atoms: 1.1.1
20366
+ gopd: 1.2.0
20367
+ safe-array-concat: 1.1.3
20368
+
19787
20369
  object.groupby@1.0.3:
19788
20370
  dependencies:
19789
20371
  call-bind: 1.0.8
@@ -19821,8 +20403,9 @@ snapshots:
19821
20403
  dependencies:
19822
20404
  which-pm-runs: 1.1.0
19823
20405
 
19824
- openai@6.16.0(zod@4.3.5):
20406
+ openai@6.16.0(ws@8.19.0)(zod@4.3.5):
19825
20407
  optionalDependencies:
20408
+ ws: 8.19.0
19826
20409
  zod: 4.3.5
19827
20410
 
19828
20411
  optionator@0.9.4:
@@ -19858,17 +20441,6 @@ snapshots:
19858
20441
  strip-ansi: 7.1.2
19859
20442
  wcwidth: 1.0.1
19860
20443
 
19861
- ora@9.1.0:
19862
- dependencies:
19863
- chalk: 5.6.2
19864
- cli-cursor: 5.0.0
19865
- cli-spinners: 3.4.0
19866
- is-interactive: 2.0.0
19867
- is-unicode-supported: 2.1.0
19868
- log-symbols: 7.0.1
19869
- stdin-discarder: 0.2.2
19870
- string-width: 8.1.0
19871
-
19872
20444
  os-homedir@1.0.2: {}
19873
20445
 
19874
20446
  os-tmpdir@1.0.2: {}
@@ -19998,6 +20570,8 @@ snapshots:
19998
20570
 
19999
20571
  path-is-absolute@1.0.1: {}
20000
20572
 
20573
+ path-key@2.0.1: {}
20574
+
20001
20575
  path-key@3.1.1: {}
20002
20576
 
20003
20577
  path-parse@1.0.7: {}
@@ -20797,7 +21371,7 @@ snapshots:
20797
21371
 
20798
21372
  read-package-json@2.1.2:
20799
21373
  dependencies:
20800
- glob: 7.1.2
21374
+ glob: 7.2.3
20801
21375
  json-parse-even-better-errors: 2.3.1
20802
21376
  normalize-package-data: 2.5.0
20803
21377
  npm-normalize-package-bin: 1.0.1
@@ -20810,6 +21384,12 @@ snapshots:
20810
21384
  read-package-json: 2.1.2
20811
21385
  readdir-scoped-modules: 1.1.0
20812
21386
 
21387
+ read-package-tree@5.3.1:
21388
+ dependencies:
21389
+ read-package-json: 2.1.2
21390
+ readdir-scoped-modules: 1.1.0
21391
+ util-promisify: 2.1.0
21392
+
20813
21393
  readable-stream@1.1.14:
20814
21394
  dependencies:
20815
21395
  core-util-is: 1.0.3
@@ -21040,6 +21620,10 @@ snapshots:
21040
21620
 
21041
21621
  rfdc@1.4.1: {}
21042
21622
 
21623
+ rimraf@2.7.1:
21624
+ dependencies:
21625
+ glob: 7.2.3
21626
+
21043
21627
  rimraf@3.0.2:
21044
21628
  dependencies:
21045
21629
  glob: 7.2.3
@@ -21155,6 +21739,8 @@ snapshots:
21155
21739
  dependencies:
21156
21740
  commander: 2.20.3
21157
21741
 
21742
+ semver-compare@1.0.0: {}
21743
+
21158
21744
  semver@5.7.2: {}
21159
21745
 
21160
21746
  semver@6.3.1: {}
@@ -21265,10 +21851,42 @@ snapshots:
21265
21851
  dependencies:
21266
21852
  kind-of: 6.0.3
21267
21853
 
21854
+ sharp@0.33.5:
21855
+ dependencies:
21856
+ color: 4.2.3
21857
+ detect-libc: 2.1.2
21858
+ semver: 7.7.3
21859
+ optionalDependencies:
21860
+ '@img/sharp-darwin-arm64': 0.33.5
21861
+ '@img/sharp-darwin-x64': 0.33.5
21862
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
21863
+ '@img/sharp-libvips-darwin-x64': 1.0.4
21864
+ '@img/sharp-libvips-linux-arm': 1.0.5
21865
+ '@img/sharp-libvips-linux-arm64': 1.0.4
21866
+ '@img/sharp-libvips-linux-s390x': 1.0.4
21867
+ '@img/sharp-libvips-linux-x64': 1.0.4
21868
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
21869
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
21870
+ '@img/sharp-linux-arm': 0.33.5
21871
+ '@img/sharp-linux-arm64': 0.33.5
21872
+ '@img/sharp-linux-s390x': 0.33.5
21873
+ '@img/sharp-linux-x64': 0.33.5
21874
+ '@img/sharp-linuxmusl-arm64': 0.33.5
21875
+ '@img/sharp-linuxmusl-x64': 0.33.5
21876
+ '@img/sharp-wasm32': 0.33.5
21877
+ '@img/sharp-win32-ia32': 0.33.5
21878
+ '@img/sharp-win32-x64': 0.33.5
21879
+
21880
+ shebang-command@1.2.0:
21881
+ dependencies:
21882
+ shebang-regex: 1.0.0
21883
+
21268
21884
  shebang-command@2.0.0:
21269
21885
  dependencies:
21270
21886
  shebang-regex: 3.0.0
21271
21887
 
21888
+ shebang-regex@1.0.0: {}
21889
+
21272
21890
  shebang-regex@3.0.0: {}
21273
21891
 
21274
21892
  shell-quote@1.8.3: {}
@@ -21325,6 +21943,10 @@ snapshots:
21325
21943
  bplist-parser: 0.3.1
21326
21944
  plist: 3.1.0
21327
21945
 
21946
+ simple-swizzle@0.2.4:
21947
+ dependencies:
21948
+ is-arrayish: 0.3.4
21949
+
21328
21950
  simple-wcswidth@1.1.2: {}
21329
21951
 
21330
21952
  slash@1.0.0: {}
@@ -21426,8 +22048,6 @@ snapshots:
21426
22048
  dependencies:
21427
22049
  bl: 5.1.0
21428
22050
 
21429
- stdin-discarder@0.2.2: {}
21430
-
21431
22051
  stop-iteration-iterator@1.1.0:
21432
22052
  dependencies:
21433
22053
  es-errors: 1.3.0
@@ -21547,6 +22167,8 @@ snapshots:
21547
22167
  dependencies:
21548
22168
  is-natural-number: 4.0.1
21549
22169
 
22170
+ strip-eof@1.0.0: {}
22171
+
21550
22172
  strip-final-newline@2.0.0: {}
21551
22173
 
21552
22174
  strip-json-comments@2.0.1: {}
@@ -21779,6 +22401,13 @@ snapshots:
21779
22401
  source-map: 0.6.1
21780
22402
  source-map-support: 0.5.21
21781
22403
 
22404
+ terser@5.26.0:
22405
+ dependencies:
22406
+ '@jridgewell/source-map': 0.3.11
22407
+ acorn: 8.15.0
22408
+ commander: 2.20.3
22409
+ source-map-support: 0.5.21
22410
+
21782
22411
  terser@5.44.1:
21783
22412
  dependencies:
21784
22413
  '@jridgewell/source-map': 0.3.11
@@ -21866,7 +22495,7 @@ snapshots:
21866
22495
 
21867
22496
  tr46@0.0.3: {}
21868
22497
 
21869
- transliteration@2.6.1: {}
22498
+ traverse@0.3.9: {}
21870
22499
 
21871
22500
  tree-kill@1.2.2: {}
21872
22501
 
@@ -21911,6 +22540,30 @@ snapshots:
21911
22540
 
21912
22541
  tslib@2.8.1: {}
21913
22542
 
22543
+ tt-ide-cli@0.1.31(@types/node@22.19.6):
22544
+ dependencies:
22545
+ '@tt-miniprogram/ext-pack': 1.2.4
22546
+ archiver: 5.3.2
22547
+ chalk: 4.1.2
22548
+ clipboardy: 2.3.0
22549
+ commander: 5.1.0
22550
+ deep-clone: 3.0.3
22551
+ easy-table: 1.2.0
22552
+ fast-glob: 3.3.2
22553
+ folder-hash: 4.1.1
22554
+ form-data: 4.0.5
22555
+ fs-extra: 10.1.0
22556
+ inquirer: 8.2.7(@types/node@22.19.6)
22557
+ node-machine-id: 1.1.12
22558
+ ora: 5.4.1
22559
+ qrcode: 1.5.4
22560
+ qrcode-terminal: 0.12.0
22561
+ semver-compare: 1.0.0
22562
+ unzipper: 0.10.14
22563
+ transitivePeerDependencies:
22564
+ - '@types/node'
22565
+ - supports-color
22566
+
21914
22567
  tunnel-agent@0.6.0:
21915
22568
  dependencies:
21916
22569
  safe-buffer: 5.2.1
@@ -22029,6 +22682,19 @@ snapshots:
22029
22682
 
22030
22683
  unpipe@1.0.0: {}
22031
22684
 
22685
+ unzipper@0.10.14:
22686
+ dependencies:
22687
+ big-integer: 1.6.52
22688
+ binary: 0.3.0
22689
+ bluebird: 3.4.7
22690
+ buffer-indexof-polyfill: 1.0.2
22691
+ duplexer2: 0.1.4
22692
+ fstream: 1.0.12
22693
+ graceful-fs: 4.2.11
22694
+ listenercount: 1.0.1
22695
+ readable-stream: 2.3.8
22696
+ setimmediate: 1.0.5
22697
+
22032
22698
  update-browserslist-db@1.2.3(browserslist@4.28.1):
22033
22699
  dependencies:
22034
22700
  browserslist: 4.28.1
@@ -22065,6 +22731,10 @@ snapshots:
22065
22731
 
22066
22732
  util-deprecate@1.0.2: {}
22067
22733
 
22734
+ util-promisify@2.1.0:
22735
+ dependencies:
22736
+ object.getownpropertydescriptors: 2.1.9
22737
+
22068
22738
  utils-merge@1.0.1: {}
22069
22739
 
22070
22740
  uuid@10.0.0: {}
@@ -22323,6 +22993,8 @@ snapshots:
22323
22993
  imurmurhash: 0.1.4
22324
22994
  signal-exit: 4.1.0
22325
22995
 
22996
+ ws@8.19.0: {}
22997
+
22326
22998
  wxml-minifier@0.0.1:
22327
22999
  dependencies:
22328
23000
  '@leejim/wxml-parser': 0.1.6
@@ -22407,8 +23079,6 @@ snapshots:
22407
23079
 
22408
23080
  yocto-queue@0.1.0: {}
22409
23081
 
22410
- yoctocolors@2.1.2: {}
22411
-
22412
23082
  yup@1.7.1:
22413
23083
  dependencies:
22414
23084
  property-expr: 2.0.6