@coze-arch/cli 0.0.1-alpha.f74941 → 0.0.1-beta.6

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 (112) hide show
  1. package/lib/__templates__/expo/.cozeproj/scripts/deploy_run.sh +1 -1
  2. package/lib/__templates__/expo/app.json +1 -1
  3. package/lib/__templates__/expo/client/index.js +2 -1
  4. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +36 -12
  5. package/lib/__templates__/expo/metro.config.js +15 -15
  6. package/lib/__templates__/expo/package.json +14 -5
  7. package/lib/__templates__/expo/pnpm-lock.yaml +335 -4
  8. package/lib/__templates__/nextjs/.babelrc +15 -0
  9. package/lib/__templates__/nextjs/README.md +341 -19
  10. package/lib/__templates__/nextjs/components.json +21 -0
  11. package/lib/__templates__/nextjs/package.json +48 -1
  12. package/lib/__templates__/nextjs/pnpm-lock.yaml +6399 -1356
  13. package/lib/__templates__/nextjs/scripts/dev.sh +2 -1
  14. package/lib/__templates__/nextjs/server.mjs +50 -0
  15. package/lib/__templates__/nextjs/src/app/globals.css +99 -8
  16. package/lib/__templates__/nextjs/src/app/layout.tsx +4 -0
  17. package/lib/__templates__/nextjs/src/components/ui/accordion.tsx +66 -0
  18. package/lib/__templates__/nextjs/src/components/ui/alert-dialog.tsx +157 -0
  19. package/lib/__templates__/nextjs/src/components/ui/alert.tsx +66 -0
  20. package/lib/__templates__/nextjs/src/components/ui/aspect-ratio.tsx +11 -0
  21. package/lib/__templates__/nextjs/src/components/ui/avatar.tsx +53 -0
  22. package/lib/__templates__/nextjs/src/components/ui/badge.tsx +46 -0
  23. package/lib/__templates__/nextjs/src/components/ui/breadcrumb.tsx +109 -0
  24. package/lib/__templates__/nextjs/src/components/ui/button-group.tsx +83 -0
  25. package/lib/__templates__/nextjs/src/components/ui/button.tsx +62 -0
  26. package/lib/__templates__/nextjs/src/components/ui/calendar.tsx +220 -0
  27. package/lib/__templates__/nextjs/src/components/ui/card.tsx +92 -0
  28. package/lib/__templates__/nextjs/src/components/ui/carousel.tsx +241 -0
  29. package/lib/__templates__/nextjs/src/components/ui/chart.tsx +357 -0
  30. package/lib/__templates__/nextjs/src/components/ui/checkbox.tsx +32 -0
  31. package/lib/__templates__/nextjs/src/components/ui/collapsible.tsx +33 -0
  32. package/lib/__templates__/nextjs/src/components/ui/command.tsx +184 -0
  33. package/lib/__templates__/nextjs/src/components/ui/context-menu.tsx +252 -0
  34. package/lib/__templates__/nextjs/src/components/ui/dialog.tsx +143 -0
  35. package/lib/__templates__/nextjs/src/components/ui/drawer.tsx +135 -0
  36. package/lib/__templates__/nextjs/src/components/ui/dropdown-menu.tsx +257 -0
  37. package/lib/__templates__/nextjs/src/components/ui/empty.tsx +104 -0
  38. package/lib/__templates__/nextjs/src/components/ui/field.tsx +248 -0
  39. package/lib/__templates__/nextjs/src/components/ui/form.tsx +167 -0
  40. package/lib/__templates__/nextjs/src/components/ui/hover-card.tsx +44 -0
  41. package/lib/__templates__/nextjs/src/components/ui/input-group.tsx +170 -0
  42. package/lib/__templates__/nextjs/src/components/ui/input-otp.tsx +77 -0
  43. package/lib/__templates__/nextjs/src/components/ui/input.tsx +21 -0
  44. package/lib/__templates__/nextjs/src/components/ui/item.tsx +193 -0
  45. package/lib/__templates__/nextjs/src/components/ui/kbd.tsx +28 -0
  46. package/lib/__templates__/nextjs/src/components/ui/label.tsx +24 -0
  47. package/lib/__templates__/nextjs/src/components/ui/menubar.tsx +276 -0
  48. package/lib/__templates__/nextjs/src/components/ui/navigation-menu.tsx +168 -0
  49. package/lib/__templates__/nextjs/src/components/ui/pagination.tsx +127 -0
  50. package/lib/__templates__/nextjs/src/components/ui/popover.tsx +48 -0
  51. package/lib/__templates__/nextjs/src/components/ui/progress.tsx +31 -0
  52. package/lib/__templates__/nextjs/src/components/ui/radio-group.tsx +45 -0
  53. package/lib/__templates__/nextjs/src/components/ui/resizable.tsx +56 -0
  54. package/lib/__templates__/nextjs/src/components/ui/scroll-area.tsx +58 -0
  55. package/lib/__templates__/nextjs/src/components/ui/select.tsx +190 -0
  56. package/lib/__templates__/nextjs/src/components/ui/separator.tsx +28 -0
  57. package/lib/__templates__/nextjs/src/components/ui/sheet.tsx +139 -0
  58. package/lib/__templates__/nextjs/src/components/ui/sidebar.tsx +726 -0
  59. package/lib/__templates__/nextjs/src/components/ui/skeleton.tsx +13 -0
  60. package/lib/__templates__/nextjs/src/components/ui/slider.tsx +63 -0
  61. package/lib/__templates__/nextjs/src/components/ui/sonner.tsx +40 -0
  62. package/lib/__templates__/nextjs/src/components/ui/spinner.tsx +16 -0
  63. package/lib/__templates__/nextjs/src/components/ui/switch.tsx +31 -0
  64. package/lib/__templates__/nextjs/src/components/ui/table.tsx +116 -0
  65. package/lib/__templates__/nextjs/src/components/ui/tabs.tsx +66 -0
  66. package/lib/__templates__/nextjs/src/components/ui/textarea.tsx +18 -0
  67. package/lib/__templates__/nextjs/src/components/ui/toggle-group.tsx +83 -0
  68. package/lib/__templates__/nextjs/src/components/ui/toggle.tsx +47 -0
  69. package/lib/__templates__/nextjs/src/components/ui/tooltip.tsx +61 -0
  70. package/lib/__templates__/nextjs/src/hooks/use-mobile.ts +19 -0
  71. package/lib/__templates__/nextjs/src/lib/utils.ts +6 -0
  72. package/lib/__templates__/nextjs/template.config.js +1 -1
  73. package/lib/__templates__/templates.json +0 -38
  74. package/lib/__templates__/vite/template.config.js +1 -1
  75. package/lib/cli.js +19 -2
  76. package/package.json +2 -2
  77. package/lib/__templates__/react-rsbuild/.coze +0 -11
  78. package/lib/__templates__/react-rsbuild/.vscode/settings.json +0 -121
  79. package/lib/__templates__/react-rsbuild/README.md +0 -61
  80. package/lib/__templates__/react-rsbuild/_gitignore +0 -97
  81. package/lib/__templates__/react-rsbuild/_npmrc +0 -22
  82. package/lib/__templates__/react-rsbuild/package.json +0 -31
  83. package/lib/__templates__/react-rsbuild/pnpm-lock.yaml +0 -997
  84. package/lib/__templates__/react-rsbuild/rsbuild.config.ts +0 -13
  85. package/lib/__templates__/react-rsbuild/scripts/build.sh +0 -14
  86. package/lib/__templates__/react-rsbuild/scripts/dev.sh +0 -51
  87. package/lib/__templates__/react-rsbuild/scripts/start.sh +0 -15
  88. package/lib/__templates__/react-rsbuild/src/App.tsx +0 -60
  89. package/lib/__templates__/react-rsbuild/src/index.css +0 -21
  90. package/lib/__templates__/react-rsbuild/src/index.html +0 -12
  91. package/lib/__templates__/react-rsbuild/src/index.tsx +0 -16
  92. package/lib/__templates__/react-rsbuild/tailwind.config.js +0 -9
  93. package/lib/__templates__/react-rsbuild/template.config.js +0 -54
  94. package/lib/__templates__/react-rsbuild/tsconfig.json +0 -17
  95. package/lib/__templates__/rsbuild/.coze +0 -11
  96. package/lib/__templates__/rsbuild/.vscode/settings.json +0 -7
  97. package/lib/__templates__/rsbuild/README.md +0 -61
  98. package/lib/__templates__/rsbuild/_gitignore +0 -97
  99. package/lib/__templates__/rsbuild/_npmrc +0 -22
  100. package/lib/__templates__/rsbuild/package.json +0 -24
  101. package/lib/__templates__/rsbuild/pnpm-lock.yaml +0 -888
  102. package/lib/__templates__/rsbuild/rsbuild.config.ts +0 -12
  103. package/lib/__templates__/rsbuild/scripts/build.sh +0 -14
  104. package/lib/__templates__/rsbuild/scripts/dev.sh +0 -51
  105. package/lib/__templates__/rsbuild/scripts/start.sh +0 -15
  106. package/lib/__templates__/rsbuild/src/index.css +0 -21
  107. package/lib/__templates__/rsbuild/src/index.html +0 -12
  108. package/lib/__templates__/rsbuild/src/index.ts +0 -5
  109. package/lib/__templates__/rsbuild/src/main.ts +0 -65
  110. package/lib/__templates__/rsbuild/tailwind.config.js +0 -9
  111. package/lib/__templates__/rsbuild/template.config.js +0 -56
  112. package/lib/__templates__/rsbuild/tsconfig.json +0 -16
@@ -1,888 +0,0 @@
1
- lockfileVersion: '9.0'
2
-
3
- settings:
4
- autoInstallPeers: true
5
- excludeLinksFromLockfile: false
6
-
7
- importers:
8
-
9
- .:
10
- devDependencies:
11
- '@rsbuild/core':
12
- specifier: ^1.1.0
13
- version: 1.6.15
14
- only-allow:
15
- specifier: ^1.2.2
16
- version: 1.2.2
17
- rsbuild-plugin-tailwindcss:
18
- specifier: ^0.2.1
19
- version: 0.2.3(@rsbuild/core@1.6.15)(tailwindcss@3.4.19)
20
- tailwindcss:
21
- specifier: ^3.4.17
22
- version: 3.4.19
23
- typescript:
24
- specifier: ^5.6.0
25
- version: 5.9.3
26
-
27
- packages:
28
-
29
- '@alloc/quick-lru@5.2.0':
30
- resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
31
- engines: {node: '>=10'}
32
-
33
- '@emnapi/core@1.7.1':
34
- resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
35
-
36
- '@emnapi/runtime@1.7.1':
37
- resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
38
-
39
- '@emnapi/wasi-threads@1.1.0':
40
- resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
41
-
42
- '@jridgewell/gen-mapping@0.3.13':
43
- resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
44
-
45
- '@jridgewell/resolve-uri@3.1.2':
46
- resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
47
- engines: {node: '>=6.0.0'}
48
-
49
- '@jridgewell/sourcemap-codec@1.5.5':
50
- resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
51
-
52
- '@jridgewell/trace-mapping@0.3.31':
53
- resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
54
-
55
- '@module-federation/error-codes@0.21.6':
56
- resolution: {integrity: sha512-MLJUCQ05KnoVl8xd6xs9a5g2/8U+eWmVxg7xiBMeR0+7OjdWUbHwcwgVFatRIwSZvFgKHfWEiI7wsU1q1XbTRQ==}
57
-
58
- '@module-federation/runtime-core@0.21.6':
59
- resolution: {integrity: sha512-5Hd1Y5qp5lU/aTiK66lidMlM/4ji2gr3EXAtJdreJzkY+bKcI5+21GRcliZ4RAkICmvdxQU5PHPL71XmNc7Lsw==}
60
-
61
- '@module-federation/runtime-tools@0.21.6':
62
- resolution: {integrity: sha512-fnP+ZOZTFeBGiTAnxve+axGmiYn2D60h86nUISXjXClK3LUY1krUfPgf6MaD4YDJ4i51OGXZWPekeMe16pkd8Q==}
63
-
64
- '@module-federation/runtime@0.21.6':
65
- resolution: {integrity: sha512-+caXwaQqwTNh+CQqyb4mZmXq7iEemRDrTZQGD+zyeH454JAYnJ3s/3oDFizdH6245pk+NiqDyOOkHzzFQorKhQ==}
66
-
67
- '@module-federation/sdk@0.21.6':
68
- resolution: {integrity: sha512-x6hARETb8iqHVhEsQBysuWpznNZViUh84qV2yE7AD+g7uIzHKiYdoWqj10posbo5XKf/147qgWDzKZoKoEP2dw==}
69
-
70
- '@module-federation/webpack-bundler-runtime@0.21.6':
71
- resolution: {integrity: sha512-7zIp3LrcWbhGuFDTUMLJ2FJvcwjlddqhWGxi/MW3ur1a+HaO8v5tF2nl+vElKmbG1DFLU/52l3PElVcWf/YcsQ==}
72
-
73
- '@napi-rs/wasm-runtime@1.0.7':
74
- resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==}
75
-
76
- '@nodelib/fs.scandir@2.1.5':
77
- resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
78
- engines: {node: '>= 8'}
79
-
80
- '@nodelib/fs.stat@2.0.5':
81
- resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
82
- engines: {node: '>= 8'}
83
-
84
- '@nodelib/fs.walk@1.2.8':
85
- resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
86
- engines: {node: '>= 8'}
87
-
88
- '@rsbuild/core@1.6.15':
89
- resolution: {integrity: sha512-LvoOF53PL6zXgdzEhgnnP51S4FseDFH1bHrobK4EK6zZX/tN8qgf5tdlmN7h4OkMv/Qs1oUfvj0QcLWSstnnvA==}
90
- engines: {node: '>=18.12.0'}
91
- hasBin: true
92
-
93
- '@rspack/binding-darwin-arm64@1.6.8':
94
- resolution: {integrity: sha512-e8CTQtzaeGnf+BIzR7wRMUwKfIg0jd/sxMRc1Vd0bCMHBhSN9EsGoMuJJaKeRrSmy2nwMCNWHIG+TvT1CEKg+A==}
95
- cpu: [arm64]
96
- os: [darwin]
97
-
98
- '@rspack/binding-darwin-x64@1.6.8':
99
- resolution: {integrity: sha512-ku1XpTEPt6Za11zhpFWhfwrTQogcgi9RJrOUVC4FESiPO9aKyd4hJ+JiPgLY0MZOqsptK6vEAgOip+uDVXrCpg==}
100
- cpu: [x64]
101
- os: [darwin]
102
-
103
- '@rspack/binding-linux-arm64-gnu@1.6.8':
104
- resolution: {integrity: sha512-fvZX6xZPvBT8qipSpvkKMX5M7yd2BSpZNCZXcefw6gA3uC7LI3gu+er0LrDXY1PtPzVuHTyDx+abwWpagV3PiQ==}
105
- cpu: [arm64]
106
- os: [linux]
107
- libc: [glibc]
108
-
109
- '@rspack/binding-linux-arm64-musl@1.6.8':
110
- resolution: {integrity: sha512-++XMKcMNrt59HcFBLnRaJcn70k3X0GwkAegZBVpel8xYIAgvoXT5+L8P1ExId/yTFxqedaz8DbcxQnNmMozviw==}
111
- cpu: [arm64]
112
- os: [linux]
113
- libc: [musl]
114
-
115
- '@rspack/binding-linux-x64-gnu@1.6.8':
116
- resolution: {integrity: sha512-tv3BWkTE1TndfX+DsE1rSTg8fBevCxujNZ3MlfZ22Wfy9x1FMXTJlWG8VIOXmaaJ1wUHzv8S7cE2YUUJ2LuiCg==}
117
- cpu: [x64]
118
- os: [linux]
119
- libc: [glibc]
120
-
121
- '@rspack/binding-linux-x64-musl@1.6.8':
122
- resolution: {integrity: sha512-DCGgZ5/in1O3FjHWqXnDsncRy+48cMhfuUAAUyl0yDj1NpsZu9pP+xfGLvGcQTiYrVl7IH9Aojf1eShP/77WGA==}
123
- cpu: [x64]
124
- os: [linux]
125
- libc: [musl]
126
-
127
- '@rspack/binding-wasm32-wasi@1.6.8':
128
- resolution: {integrity: sha512-VUwdhl/lI4m6o1OGCZ9JwtMjTV/yLY5VZTQdEPKb40JMTlmZ5MBlr5xk7ByaXXYHr6I+qnqEm73iMKQvg6iknw==}
129
- cpu: [wasm32]
130
-
131
- '@rspack/binding-win32-arm64-msvc@1.6.8':
132
- resolution: {integrity: sha512-23YX7zlOZlub+nPGDBUzktb4D5D6ETUAluKjXEeHIZ9m7fSlEYBnGL66YE+3t1DHXGd0OqsdwlvrNGcyo6EXDQ==}
133
- cpu: [arm64]
134
- os: [win32]
135
-
136
- '@rspack/binding-win32-ia32-msvc@1.6.8':
137
- resolution: {integrity: sha512-cFgRE3APxrY4AEdooVk2LtipwNNT/9mrnjdC5lVbsIsz+SxvGbZR231bxDJEqP15+RJOaD07FO1sIjINFqXMEg==}
138
- cpu: [ia32]
139
- os: [win32]
140
-
141
- '@rspack/binding-win32-x64-msvc@1.6.8':
142
- resolution: {integrity: sha512-cIuhVsZYd3o3Neo1JSAhJYw6BDvlxaBoqvgwRkG1rs0ExFmEmgYyG7ip9pFKnKNWph/tmW3rDYypmEfjs1is7g==}
143
- cpu: [x64]
144
- os: [win32]
145
-
146
- '@rspack/binding@1.6.8':
147
- resolution: {integrity: sha512-lUeL4mbwGo+nqRKqFDCm9vH2jv9FNMVt1X8jqayWRcOCPlj/2UVMEFgqjR7Pp2vlvnTKq//31KbDBJmDZq31RQ==}
148
-
149
- '@rspack/core@1.6.8':
150
- resolution: {integrity: sha512-FolcIAH5FW4J2FET+qwjd1kNeFbCkd0VLuIHO0thyolEjaPSxw5qxG67DA7BZGm6PVcoiSgPLks1DL6eZ8c+fA==}
151
- engines: {node: '>=18.12.0'}
152
- peerDependencies:
153
- '@swc/helpers': '>=0.5.1'
154
- peerDependenciesMeta:
155
- '@swc/helpers':
156
- optional: true
157
-
158
- '@rspack/lite-tapable@1.1.0':
159
- resolution: {integrity: sha512-E2B0JhYFmVAwdDiG14+DW0Di4Ze4Jg10Pc4/lILUrd5DRCaklduz2OvJ5HYQ6G+hd+WTzqQb3QnDNfK4yvAFYw==}
160
-
161
- '@swc/helpers@0.5.18':
162
- resolution: {integrity: sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ==}
163
-
164
- '@tybys/wasm-util@0.10.1':
165
- resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
166
-
167
- any-promise@1.3.0:
168
- resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
169
-
170
- anymatch@3.1.3:
171
- resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
172
- engines: {node: '>= 8'}
173
-
174
- arg@5.0.2:
175
- resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
176
-
177
- binary-extensions@2.3.0:
178
- resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
179
- engines: {node: '>=8'}
180
-
181
- braces@3.0.3:
182
- resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
183
- engines: {node: '>=8'}
184
-
185
- camelcase-css@2.0.1:
186
- resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
187
- engines: {node: '>= 6'}
188
-
189
- chokidar@3.6.0:
190
- resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
191
- engines: {node: '>= 8.10.0'}
192
-
193
- commander@4.1.1:
194
- resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
195
- engines: {node: '>= 6'}
196
-
197
- core-js@3.47.0:
198
- resolution: {integrity: sha512-c3Q2VVkGAUyupsjRnaNX6u8Dq2vAdzm9iuPj5FW0fRxzlxgq9Q39MDq10IvmQSpLgHQNyQzQmOo6bgGHmH3NNg==}
199
-
200
- cssesc@3.0.0:
201
- resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
202
- engines: {node: '>=4'}
203
- hasBin: true
204
-
205
- didyoumean@1.2.2:
206
- resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
207
-
208
- dlv@1.1.3:
209
- resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
210
-
211
- fast-glob@3.3.3:
212
- resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
213
- engines: {node: '>=8.6.0'}
214
-
215
- fastq@1.20.1:
216
- resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
217
-
218
- fdir@6.5.0:
219
- resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
220
- engines: {node: '>=12.0.0'}
221
- peerDependencies:
222
- picomatch: ^3 || ^4
223
- peerDependenciesMeta:
224
- picomatch:
225
- optional: true
226
-
227
- fill-range@7.1.1:
228
- resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
229
- engines: {node: '>=8'}
230
-
231
- fsevents@2.3.3:
232
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
233
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
234
- os: [darwin]
235
-
236
- function-bind@1.1.2:
237
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
238
-
239
- glob-parent@5.1.2:
240
- resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
241
- engines: {node: '>= 6'}
242
-
243
- glob-parent@6.0.2:
244
- resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
245
- engines: {node: '>=10.13.0'}
246
-
247
- hasown@2.0.2:
248
- resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
249
- engines: {node: '>= 0.4'}
250
-
251
- is-binary-path@2.1.0:
252
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
253
- engines: {node: '>=8'}
254
-
255
- is-core-module@2.16.1:
256
- resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
257
- engines: {node: '>= 0.4'}
258
-
259
- is-extglob@2.1.1:
260
- resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
261
- engines: {node: '>=0.10.0'}
262
-
263
- is-glob@4.0.3:
264
- resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
265
- engines: {node: '>=0.10.0'}
266
-
267
- is-number@7.0.0:
268
- resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
269
- engines: {node: '>=0.12.0'}
270
-
271
- jiti@1.21.7:
272
- resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
273
- hasBin: true
274
-
275
- jiti@2.6.1:
276
- resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
277
- hasBin: true
278
-
279
- lilconfig@3.1.3:
280
- resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
281
- engines: {node: '>=14'}
282
-
283
- lines-and-columns@1.2.4:
284
- resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
285
-
286
- merge2@1.4.1:
287
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
288
- engines: {node: '>= 8'}
289
-
290
- micromatch@4.0.8:
291
- resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
292
- engines: {node: '>=8.6'}
293
-
294
- mz@2.7.0:
295
- resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
296
-
297
- nanoid@3.3.11:
298
- resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
299
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
300
- hasBin: true
301
-
302
- normalize-path@3.0.0:
303
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
304
- engines: {node: '>=0.10.0'}
305
-
306
- object-assign@4.1.1:
307
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
308
- engines: {node: '>=0.10.0'}
309
-
310
- object-hash@3.0.0:
311
- resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
312
- engines: {node: '>= 6'}
313
-
314
- only-allow@1.2.2:
315
- resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
316
- hasBin: true
317
-
318
- path-parse@1.0.7:
319
- resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
320
-
321
- picocolors@1.1.1:
322
- resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
323
-
324
- picomatch@2.3.1:
325
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
326
- engines: {node: '>=8.6'}
327
-
328
- picomatch@4.0.3:
329
- resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
330
- engines: {node: '>=12'}
331
-
332
- pify@2.3.0:
333
- resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
334
- engines: {node: '>=0.10.0'}
335
-
336
- pirates@4.0.7:
337
- resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
338
- engines: {node: '>= 6'}
339
-
340
- postcss-import@15.1.0:
341
- resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
342
- engines: {node: '>=14.0.0'}
343
- peerDependencies:
344
- postcss: ^8.0.0
345
-
346
- postcss-js@4.1.0:
347
- resolution: {integrity: sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==}
348
- engines: {node: ^12 || ^14 || >= 16}
349
- peerDependencies:
350
- postcss: ^8.4.21
351
-
352
- postcss-load-config@6.0.1:
353
- resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
354
- engines: {node: '>= 18'}
355
- peerDependencies:
356
- jiti: '>=1.21.0'
357
- postcss: '>=8.0.9'
358
- tsx: ^4.8.1
359
- yaml: ^2.4.2
360
- peerDependenciesMeta:
361
- jiti:
362
- optional: true
363
- postcss:
364
- optional: true
365
- tsx:
366
- optional: true
367
- yaml:
368
- optional: true
369
-
370
- postcss-nested@6.2.0:
371
- resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
372
- engines: {node: '>=12.0'}
373
- peerDependencies:
374
- postcss: ^8.2.14
375
-
376
- postcss-selector-parser@6.1.2:
377
- resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
378
- engines: {node: '>=4'}
379
-
380
- postcss-value-parser@4.2.0:
381
- resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
382
-
383
- postcss@8.5.6:
384
- resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
385
- engines: {node: ^10 || ^12 || >=14}
386
-
387
- queue-microtask@1.2.3:
388
- resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
389
-
390
- read-cache@1.0.0:
391
- resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
392
-
393
- readdirp@3.6.0:
394
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
395
- engines: {node: '>=8.10.0'}
396
-
397
- resolve@1.22.11:
398
- resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
399
- engines: {node: '>= 0.4'}
400
- hasBin: true
401
-
402
- reusify@1.1.0:
403
- resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
404
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
405
-
406
- rsbuild-plugin-tailwindcss@0.2.3:
407
- resolution: {integrity: sha512-UUARLNjMHLNQXvZ7JTVXES41KznawRIJKULt+ZLDBvzOV7buE0BrBYOSlP+r+7SYn8kcvtwdM9TANpOlNwHvZQ==}
408
- peerDependencies:
409
- '@rsbuild/core': ^1.1.0
410
- tailwindcss: ^3.1.0
411
- peerDependenciesMeta:
412
- '@rsbuild/core':
413
- optional: true
414
-
415
- run-parallel@1.2.0:
416
- resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
417
-
418
- source-map-js@1.2.1:
419
- resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
420
- engines: {node: '>=0.10.0'}
421
-
422
- sucrase@3.35.1:
423
- resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
424
- engines: {node: '>=16 || 14 >=14.17'}
425
- hasBin: true
426
-
427
- supports-preserve-symlinks-flag@1.0.0:
428
- resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
429
- engines: {node: '>= 0.4'}
430
-
431
- tailwindcss@3.4.19:
432
- resolution: {integrity: sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==}
433
- engines: {node: '>=14.0.0'}
434
- hasBin: true
435
-
436
- thenify-all@1.6.0:
437
- resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
438
- engines: {node: '>=0.8'}
439
-
440
- thenify@3.3.1:
441
- resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
442
-
443
- tinyglobby@0.2.15:
444
- resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
445
- engines: {node: '>=12.0.0'}
446
-
447
- to-regex-range@5.0.1:
448
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
449
- engines: {node: '>=8.0'}
450
-
451
- ts-interface-checker@0.1.13:
452
- resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
453
-
454
- tslib@2.8.1:
455
- resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
456
-
457
- typescript@5.9.3:
458
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
459
- engines: {node: '>=14.17'}
460
- hasBin: true
461
-
462
- util-deprecate@1.0.2:
463
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
464
-
465
- which-pm-runs@1.1.0:
466
- resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
467
- engines: {node: '>=4'}
468
-
469
- snapshots:
470
-
471
- '@alloc/quick-lru@5.2.0': {}
472
-
473
- '@emnapi/core@1.7.1':
474
- dependencies:
475
- '@emnapi/wasi-threads': 1.1.0
476
- tslib: 2.8.1
477
- optional: true
478
-
479
- '@emnapi/runtime@1.7.1':
480
- dependencies:
481
- tslib: 2.8.1
482
- optional: true
483
-
484
- '@emnapi/wasi-threads@1.1.0':
485
- dependencies:
486
- tslib: 2.8.1
487
- optional: true
488
-
489
- '@jridgewell/gen-mapping@0.3.13':
490
- dependencies:
491
- '@jridgewell/sourcemap-codec': 1.5.5
492
- '@jridgewell/trace-mapping': 0.3.31
493
-
494
- '@jridgewell/resolve-uri@3.1.2': {}
495
-
496
- '@jridgewell/sourcemap-codec@1.5.5': {}
497
-
498
- '@jridgewell/trace-mapping@0.3.31':
499
- dependencies:
500
- '@jridgewell/resolve-uri': 3.1.2
501
- '@jridgewell/sourcemap-codec': 1.5.5
502
-
503
- '@module-federation/error-codes@0.21.6': {}
504
-
505
- '@module-federation/runtime-core@0.21.6':
506
- dependencies:
507
- '@module-federation/error-codes': 0.21.6
508
- '@module-federation/sdk': 0.21.6
509
-
510
- '@module-federation/runtime-tools@0.21.6':
511
- dependencies:
512
- '@module-federation/runtime': 0.21.6
513
- '@module-federation/webpack-bundler-runtime': 0.21.6
514
-
515
- '@module-federation/runtime@0.21.6':
516
- dependencies:
517
- '@module-federation/error-codes': 0.21.6
518
- '@module-federation/runtime-core': 0.21.6
519
- '@module-federation/sdk': 0.21.6
520
-
521
- '@module-federation/sdk@0.21.6': {}
522
-
523
- '@module-federation/webpack-bundler-runtime@0.21.6':
524
- dependencies:
525
- '@module-federation/runtime': 0.21.6
526
- '@module-federation/sdk': 0.21.6
527
-
528
- '@napi-rs/wasm-runtime@1.0.7':
529
- dependencies:
530
- '@emnapi/core': 1.7.1
531
- '@emnapi/runtime': 1.7.1
532
- '@tybys/wasm-util': 0.10.1
533
- optional: true
534
-
535
- '@nodelib/fs.scandir@2.1.5':
536
- dependencies:
537
- '@nodelib/fs.stat': 2.0.5
538
- run-parallel: 1.2.0
539
-
540
- '@nodelib/fs.stat@2.0.5': {}
541
-
542
- '@nodelib/fs.walk@1.2.8':
543
- dependencies:
544
- '@nodelib/fs.scandir': 2.1.5
545
- fastq: 1.20.1
546
-
547
- '@rsbuild/core@1.6.15':
548
- dependencies:
549
- '@rspack/core': 1.6.8(@swc/helpers@0.5.18)
550
- '@rspack/lite-tapable': 1.1.0
551
- '@swc/helpers': 0.5.18
552
- core-js: 3.47.0
553
- jiti: 2.6.1
554
-
555
- '@rspack/binding-darwin-arm64@1.6.8':
556
- optional: true
557
-
558
- '@rspack/binding-darwin-x64@1.6.8':
559
- optional: true
560
-
561
- '@rspack/binding-linux-arm64-gnu@1.6.8':
562
- optional: true
563
-
564
- '@rspack/binding-linux-arm64-musl@1.6.8':
565
- optional: true
566
-
567
- '@rspack/binding-linux-x64-gnu@1.6.8':
568
- optional: true
569
-
570
- '@rspack/binding-linux-x64-musl@1.6.8':
571
- optional: true
572
-
573
- '@rspack/binding-wasm32-wasi@1.6.8':
574
- dependencies:
575
- '@napi-rs/wasm-runtime': 1.0.7
576
- optional: true
577
-
578
- '@rspack/binding-win32-arm64-msvc@1.6.8':
579
- optional: true
580
-
581
- '@rspack/binding-win32-ia32-msvc@1.6.8':
582
- optional: true
583
-
584
- '@rspack/binding-win32-x64-msvc@1.6.8':
585
- optional: true
586
-
587
- '@rspack/binding@1.6.8':
588
- optionalDependencies:
589
- '@rspack/binding-darwin-arm64': 1.6.8
590
- '@rspack/binding-darwin-x64': 1.6.8
591
- '@rspack/binding-linux-arm64-gnu': 1.6.8
592
- '@rspack/binding-linux-arm64-musl': 1.6.8
593
- '@rspack/binding-linux-x64-gnu': 1.6.8
594
- '@rspack/binding-linux-x64-musl': 1.6.8
595
- '@rspack/binding-wasm32-wasi': 1.6.8
596
- '@rspack/binding-win32-arm64-msvc': 1.6.8
597
- '@rspack/binding-win32-ia32-msvc': 1.6.8
598
- '@rspack/binding-win32-x64-msvc': 1.6.8
599
-
600
- '@rspack/core@1.6.8(@swc/helpers@0.5.18)':
601
- dependencies:
602
- '@module-federation/runtime-tools': 0.21.6
603
- '@rspack/binding': 1.6.8
604
- '@rspack/lite-tapable': 1.1.0
605
- optionalDependencies:
606
- '@swc/helpers': 0.5.18
607
-
608
- '@rspack/lite-tapable@1.1.0': {}
609
-
610
- '@swc/helpers@0.5.18':
611
- dependencies:
612
- tslib: 2.8.1
613
-
614
- '@tybys/wasm-util@0.10.1':
615
- dependencies:
616
- tslib: 2.8.1
617
- optional: true
618
-
619
- any-promise@1.3.0: {}
620
-
621
- anymatch@3.1.3:
622
- dependencies:
623
- normalize-path: 3.0.0
624
- picomatch: 2.3.1
625
-
626
- arg@5.0.2: {}
627
-
628
- binary-extensions@2.3.0: {}
629
-
630
- braces@3.0.3:
631
- dependencies:
632
- fill-range: 7.1.1
633
-
634
- camelcase-css@2.0.1: {}
635
-
636
- chokidar@3.6.0:
637
- dependencies:
638
- anymatch: 3.1.3
639
- braces: 3.0.3
640
- glob-parent: 5.1.2
641
- is-binary-path: 2.1.0
642
- is-glob: 4.0.3
643
- normalize-path: 3.0.0
644
- readdirp: 3.6.0
645
- optionalDependencies:
646
- fsevents: 2.3.3
647
-
648
- commander@4.1.1: {}
649
-
650
- core-js@3.47.0: {}
651
-
652
- cssesc@3.0.0: {}
653
-
654
- didyoumean@1.2.2: {}
655
-
656
- dlv@1.1.3: {}
657
-
658
- fast-glob@3.3.3:
659
- dependencies:
660
- '@nodelib/fs.stat': 2.0.5
661
- '@nodelib/fs.walk': 1.2.8
662
- glob-parent: 5.1.2
663
- merge2: 1.4.1
664
- micromatch: 4.0.8
665
-
666
- fastq@1.20.1:
667
- dependencies:
668
- reusify: 1.1.0
669
-
670
- fdir@6.5.0(picomatch@4.0.3):
671
- optionalDependencies:
672
- picomatch: 4.0.3
673
-
674
- fill-range@7.1.1:
675
- dependencies:
676
- to-regex-range: 5.0.1
677
-
678
- fsevents@2.3.3:
679
- optional: true
680
-
681
- function-bind@1.1.2: {}
682
-
683
- glob-parent@5.1.2:
684
- dependencies:
685
- is-glob: 4.0.3
686
-
687
- glob-parent@6.0.2:
688
- dependencies:
689
- is-glob: 4.0.3
690
-
691
- hasown@2.0.2:
692
- dependencies:
693
- function-bind: 1.1.2
694
-
695
- is-binary-path@2.1.0:
696
- dependencies:
697
- binary-extensions: 2.3.0
698
-
699
- is-core-module@2.16.1:
700
- dependencies:
701
- hasown: 2.0.2
702
-
703
- is-extglob@2.1.1: {}
704
-
705
- is-glob@4.0.3:
706
- dependencies:
707
- is-extglob: 2.1.1
708
-
709
- is-number@7.0.0: {}
710
-
711
- jiti@1.21.7: {}
712
-
713
- jiti@2.6.1: {}
714
-
715
- lilconfig@3.1.3: {}
716
-
717
- lines-and-columns@1.2.4: {}
718
-
719
- merge2@1.4.1: {}
720
-
721
- micromatch@4.0.8:
722
- dependencies:
723
- braces: 3.0.3
724
- picomatch: 2.3.1
725
-
726
- mz@2.7.0:
727
- dependencies:
728
- any-promise: 1.3.0
729
- object-assign: 4.1.1
730
- thenify-all: 1.6.0
731
-
732
- nanoid@3.3.11: {}
733
-
734
- normalize-path@3.0.0: {}
735
-
736
- object-assign@4.1.1: {}
737
-
738
- object-hash@3.0.0: {}
739
-
740
- only-allow@1.2.2:
741
- dependencies:
742
- which-pm-runs: 1.1.0
743
-
744
- path-parse@1.0.7: {}
745
-
746
- picocolors@1.1.1: {}
747
-
748
- picomatch@2.3.1: {}
749
-
750
- picomatch@4.0.3: {}
751
-
752
- pify@2.3.0: {}
753
-
754
- pirates@4.0.7: {}
755
-
756
- postcss-import@15.1.0(postcss@8.5.6):
757
- dependencies:
758
- postcss: 8.5.6
759
- postcss-value-parser: 4.2.0
760
- read-cache: 1.0.0
761
- resolve: 1.22.11
762
-
763
- postcss-js@4.1.0(postcss@8.5.6):
764
- dependencies:
765
- camelcase-css: 2.0.1
766
- postcss: 8.5.6
767
-
768
- postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6):
769
- dependencies:
770
- lilconfig: 3.1.3
771
- optionalDependencies:
772
- jiti: 1.21.7
773
- postcss: 8.5.6
774
-
775
- postcss-nested@6.2.0(postcss@8.5.6):
776
- dependencies:
777
- postcss: 8.5.6
778
- postcss-selector-parser: 6.1.2
779
-
780
- postcss-selector-parser@6.1.2:
781
- dependencies:
782
- cssesc: 3.0.0
783
- util-deprecate: 1.0.2
784
-
785
- postcss-value-parser@4.2.0: {}
786
-
787
- postcss@8.5.6:
788
- dependencies:
789
- nanoid: 3.3.11
790
- picocolors: 1.1.1
791
- source-map-js: 1.2.1
792
-
793
- queue-microtask@1.2.3: {}
794
-
795
- read-cache@1.0.0:
796
- dependencies:
797
- pify: 2.3.0
798
-
799
- readdirp@3.6.0:
800
- dependencies:
801
- picomatch: 2.3.1
802
-
803
- resolve@1.22.11:
804
- dependencies:
805
- is-core-module: 2.16.1
806
- path-parse: 1.0.7
807
- supports-preserve-symlinks-flag: 1.0.0
808
-
809
- reusify@1.1.0: {}
810
-
811
- rsbuild-plugin-tailwindcss@0.2.3(@rsbuild/core@1.6.15)(tailwindcss@3.4.19):
812
- dependencies:
813
- tailwindcss: 3.4.19
814
- optionalDependencies:
815
- '@rsbuild/core': 1.6.15
816
-
817
- run-parallel@1.2.0:
818
- dependencies:
819
- queue-microtask: 1.2.3
820
-
821
- source-map-js@1.2.1: {}
822
-
823
- sucrase@3.35.1:
824
- dependencies:
825
- '@jridgewell/gen-mapping': 0.3.13
826
- commander: 4.1.1
827
- lines-and-columns: 1.2.4
828
- mz: 2.7.0
829
- pirates: 4.0.7
830
- tinyglobby: 0.2.15
831
- ts-interface-checker: 0.1.13
832
-
833
- supports-preserve-symlinks-flag@1.0.0: {}
834
-
835
- tailwindcss@3.4.19:
836
- dependencies:
837
- '@alloc/quick-lru': 5.2.0
838
- arg: 5.0.2
839
- chokidar: 3.6.0
840
- didyoumean: 1.2.2
841
- dlv: 1.1.3
842
- fast-glob: 3.3.3
843
- glob-parent: 6.0.2
844
- is-glob: 4.0.3
845
- jiti: 1.21.7
846
- lilconfig: 3.1.3
847
- micromatch: 4.0.8
848
- normalize-path: 3.0.0
849
- object-hash: 3.0.0
850
- picocolors: 1.1.1
851
- postcss: 8.5.6
852
- postcss-import: 15.1.0(postcss@8.5.6)
853
- postcss-js: 4.1.0(postcss@8.5.6)
854
- postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)
855
- postcss-nested: 6.2.0(postcss@8.5.6)
856
- postcss-selector-parser: 6.1.2
857
- resolve: 1.22.11
858
- sucrase: 3.35.1
859
- transitivePeerDependencies:
860
- - tsx
861
- - yaml
862
-
863
- thenify-all@1.6.0:
864
- dependencies:
865
- thenify: 3.3.1
866
-
867
- thenify@3.3.1:
868
- dependencies:
869
- any-promise: 1.3.0
870
-
871
- tinyglobby@0.2.15:
872
- dependencies:
873
- fdir: 6.5.0(picomatch@4.0.3)
874
- picomatch: 4.0.3
875
-
876
- to-regex-range@5.0.1:
877
- dependencies:
878
- is-number: 7.0.0
879
-
880
- ts-interface-checker@0.1.13: {}
881
-
882
- tslib@2.8.1: {}
883
-
884
- typescript@5.9.3: {}
885
-
886
- util-deprecate@1.0.2: {}
887
-
888
- which-pm-runs@1.1.0: {}