create-croissant 0.1.28 → 0.1.30

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 (834) hide show
  1. package/dist/index.js +7 -7
  2. package/package.json +4 -1
  3. package/template/apps/desktop/.editorconfig +9 -0
  4. package/template/apps/desktop/.prettierignore +6 -0
  5. package/template/apps/desktop/.vscode/extensions.json +3 -0
  6. package/template/apps/desktop/.vscode/launch.json +39 -0
  7. package/template/apps/desktop/.vscode/settings.json +11 -0
  8. package/template/apps/desktop/README.md +34 -0
  9. package/template/apps/desktop/build/entitlements.mac.plist +12 -0
  10. package/template/apps/desktop/build/icon.icns +0 -0
  11. package/template/apps/desktop/build/icon.ico +0 -0
  12. package/template/apps/desktop/build/icon.png +0 -0
  13. package/template/apps/desktop/dev-app-update.yml +3 -0
  14. package/template/apps/desktop/electron-builder.yml +45 -0
  15. package/template/apps/desktop/electron.vite.config.ts +16 -0
  16. package/template/apps/desktop/eslint.config.ts +8 -0
  17. package/template/apps/desktop/package.json +49 -0
  18. package/template/apps/desktop/prettier.config.ts +3 -0
  19. package/template/apps/desktop/resources/icon.png +0 -0
  20. package/template/apps/desktop/src/main/index.ts +74 -0
  21. package/template/apps/desktop/src/preload/index.d.ts +8 -0
  22. package/template/apps/desktop/src/preload/index.ts +22 -0
  23. package/template/apps/desktop/src/renderer/index.html +17 -0
  24. package/template/apps/desktop/src/renderer/src/App.tsx +35 -0
  25. package/template/apps/desktop/src/renderer/src/assets/base.css +67 -0
  26. package/template/apps/desktop/src/renderer/src/assets/electron.svg +10 -0
  27. package/template/apps/desktop/src/renderer/src/assets/main.css +171 -0
  28. package/template/apps/desktop/src/renderer/src/assets/wavy-lines.svg +25 -0
  29. package/template/apps/desktop/src/renderer/src/components/Versions.tsx +15 -0
  30. package/template/apps/desktop/src/renderer/src/env.d.ts +1 -0
  31. package/template/apps/desktop/src/renderer/src/main.tsx +11 -0
  32. package/template/apps/desktop/tsconfig.json +9 -0
  33. package/template/apps/desktop/tsconfig.node.json +8 -0
  34. package/template/apps/desktop/tsconfig.web.json +21 -0
  35. package/template/apps/mobile/.vscode/extensions.json +1 -0
  36. package/template/apps/mobile/.vscode/settings.json +7 -0
  37. package/template/apps/mobile/README.md +50 -0
  38. package/template/apps/mobile/app/(tabs)/_layout.tsx +35 -0
  39. package/template/apps/mobile/app/(tabs)/explore.tsx +112 -0
  40. package/template/apps/mobile/app/(tabs)/index.tsx +98 -0
  41. package/template/apps/mobile/app/_layout.tsx +24 -0
  42. package/template/apps/mobile/app/modal.tsx +29 -0
  43. package/template/apps/mobile/app.json +48 -0
  44. package/template/apps/mobile/assets/images/android-icon-background.png +0 -0
  45. package/template/apps/mobile/assets/images/android-icon-foreground.png +0 -0
  46. package/template/apps/mobile/assets/images/android-icon-monochrome.png +0 -0
  47. package/template/apps/mobile/assets/images/favicon.png +0 -0
  48. package/template/apps/mobile/assets/images/icon.png +0 -0
  49. package/template/apps/mobile/assets/images/partial-react-logo.png +0 -0
  50. package/template/apps/mobile/assets/images/react-logo.png +0 -0
  51. package/template/apps/mobile/assets/images/react-logo@2x.png +0 -0
  52. package/template/apps/mobile/assets/images/react-logo@3x.png +0 -0
  53. package/template/apps/mobile/assets/images/splash-icon.png +0 -0
  54. package/template/apps/mobile/components/external-link.tsx +26 -0
  55. package/template/apps/mobile/components/haptic-tab.tsx +18 -0
  56. package/template/apps/mobile/components/hello-wave.tsx +19 -0
  57. package/template/apps/mobile/components/parallax-scroll-view.tsx +79 -0
  58. package/template/apps/mobile/components/themed-text.tsx +61 -0
  59. package/template/apps/mobile/components/themed-view.tsx +15 -0
  60. package/template/apps/mobile/components/ui/collapsible.tsx +46 -0
  61. package/template/apps/mobile/components/ui/icon-symbol.ios.tsx +33 -0
  62. package/template/apps/mobile/components/ui/icon-symbol.tsx +41 -0
  63. package/template/apps/mobile/constants/theme.ts +53 -0
  64. package/template/apps/mobile/eslint.config.ts +8 -0
  65. package/template/apps/mobile/hooks/use-color-scheme.ts +1 -0
  66. package/template/apps/mobile/hooks/use-color-scheme.web.ts +21 -0
  67. package/template/apps/mobile/hooks/use-theme-color.ts +21 -0
  68. package/template/apps/mobile/package.json +52 -0
  69. package/template/apps/mobile/prettier.config.ts +3 -0
  70. package/template/apps/mobile/scripts/reset-project.js +112 -0
  71. package/template/apps/mobile/tsconfig.json +11 -0
  72. package/template/apps/platform/eslint.config.ts +8 -0
  73. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/LICENSE +21 -0
  74. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/cjs/index.cjs +7 -0
  75. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/cjs/index.cjs.map +1 -0
  76. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/cjs/index.d.cts +2 -0
  77. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/cjs/types.d.cts +5 -0
  78. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/cjs/validator.cjs +44 -0
  79. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/cjs/validator.cjs.map +1 -0
  80. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/cjs/validator.d.cts +15 -0
  81. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/esm/index.d.ts +2 -0
  82. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/esm/index.js +7 -0
  83. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/esm/index.js.map +1 -0
  84. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/esm/types.d.ts +5 -0
  85. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/esm/validator.d.ts +15 -0
  86. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/esm/validator.js +44 -0
  87. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/dist/esm/validator.js.map +1 -0
  88. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/package.json +50 -0
  89. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/src/index.ts +2 -0
  90. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/src/types.ts +6 -0
  91. package/template/apps/platform/node_modules/@tanstack/zod-form-adapter/src/validator.ts +77 -0
  92. package/template/apps/platform/node_modules/zod/LICENSE +21 -0
  93. package/template/apps/platform/node_modules/zod/README.md +208 -0
  94. package/template/apps/platform/node_modules/zod/index.cjs +33 -0
  95. package/template/apps/platform/node_modules/zod/index.d.cts +4 -0
  96. package/template/apps/platform/node_modules/zod/index.d.ts +4 -0
  97. package/template/apps/platform/node_modules/zod/index.js +4 -0
  98. package/template/apps/platform/node_modules/zod/package.json +118 -0
  99. package/template/apps/platform/node_modules/zod/src/index.ts +4 -0
  100. package/template/apps/platform/node_modules/zod/src/v3/ZodError.ts +330 -0
  101. package/template/apps/platform/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  102. package/template/apps/platform/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  103. package/template/apps/platform/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  104. package/template/apps/platform/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  105. package/template/apps/platform/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  106. package/template/apps/platform/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  107. package/template/apps/platform/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  108. package/template/apps/platform/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  109. package/template/apps/platform/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  110. package/template/apps/platform/node_modules/zod/src/v3/errors.ts +13 -0
  111. package/template/apps/platform/node_modules/zod/src/v3/external.ts +6 -0
  112. package/template/apps/platform/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  113. package/template/apps/platform/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  114. package/template/apps/platform/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  115. package/template/apps/platform/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  116. package/template/apps/platform/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  117. package/template/apps/platform/node_modules/zod/src/v3/helpers/util.ts +224 -0
  118. package/template/apps/platform/node_modules/zod/src/v3/index.ts +4 -0
  119. package/template/apps/platform/node_modules/zod/src/v3/locales/en.ts +124 -0
  120. package/template/apps/platform/node_modules/zod/src/v3/standard-schema.ts +113 -0
  121. package/template/apps/platform/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  122. package/template/apps/platform/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  123. package/template/apps/platform/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  124. package/template/apps/platform/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  125. package/template/apps/platform/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  126. package/template/apps/platform/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  127. package/template/apps/platform/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  128. package/template/apps/platform/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  129. package/template/apps/platform/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  130. package/template/apps/platform/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  131. package/template/apps/platform/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  132. package/template/apps/platform/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  133. package/template/apps/platform/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  134. package/template/apps/platform/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  135. package/template/apps/platform/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  136. package/template/apps/platform/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  137. package/template/apps/platform/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  138. package/template/apps/platform/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  139. package/template/apps/platform/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  140. package/template/apps/platform/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  141. package/template/apps/platform/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  142. package/template/apps/platform/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  143. package/template/apps/platform/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  144. package/template/apps/platform/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  145. package/template/apps/platform/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  146. package/template/apps/platform/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  147. package/template/apps/platform/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  148. package/template/apps/platform/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  149. package/template/apps/platform/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  150. package/template/apps/platform/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  151. package/template/apps/platform/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  152. package/template/apps/platform/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  153. package/template/apps/platform/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  154. package/template/apps/platform/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  155. package/template/apps/platform/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  156. package/template/apps/platform/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  157. package/template/apps/platform/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  158. package/template/apps/platform/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  159. package/template/apps/platform/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  160. package/template/apps/platform/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  161. package/template/apps/platform/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  162. package/template/apps/platform/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  163. package/template/apps/platform/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  164. package/template/apps/platform/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  165. package/template/apps/platform/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  166. package/template/apps/platform/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  167. package/template/apps/platform/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  168. package/template/apps/platform/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  169. package/template/apps/platform/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  170. package/template/apps/platform/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  171. package/template/apps/platform/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  172. package/template/apps/platform/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  173. package/template/apps/platform/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  174. package/template/apps/platform/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  175. package/template/apps/platform/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  176. package/template/apps/platform/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  177. package/template/apps/platform/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  178. package/template/apps/platform/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  179. package/template/apps/platform/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  180. package/template/apps/platform/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  181. package/template/apps/platform/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  182. package/template/apps/platform/node_modules/zod/src/v3/types.ts +5136 -0
  183. package/template/apps/platform/node_modules/zod/src/v4/classic/checks.ts +30 -0
  184. package/template/apps/platform/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  185. package/template/apps/platform/node_modules/zod/src/v4/classic/compat.ts +66 -0
  186. package/template/apps/platform/node_modules/zod/src/v4/classic/errors.ts +75 -0
  187. package/template/apps/platform/node_modules/zod/src/v4/classic/external.ts +50 -0
  188. package/template/apps/platform/node_modules/zod/src/v4/classic/index.ts +5 -0
  189. package/template/apps/platform/node_modules/zod/src/v4/classic/iso.ts +90 -0
  190. package/template/apps/platform/node_modules/zod/src/v4/classic/parse.ts +33 -0
  191. package/template/apps/platform/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
  192. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  193. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  194. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  195. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  196. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  197. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  198. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  199. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  200. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
  201. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  202. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  203. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  204. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  205. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  206. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
  207. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
  208. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  209. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
  210. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  211. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
  212. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  213. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
  214. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
  215. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
  216. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  217. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
  218. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  219. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  220. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  221. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  222. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
  223. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  224. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  225. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  226. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
  227. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  228. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
  229. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
  230. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
  231. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
  232. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  233. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
  234. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
  235. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
  236. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  237. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  238. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  239. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  240. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
  241. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
  242. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
  243. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  244. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
  245. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  246. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
  247. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
  248. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
  249. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
  250. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
  251. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
  252. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  253. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
  254. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  255. package/template/apps/platform/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  256. package/template/apps/platform/node_modules/zod/src/v4/core/api.ts +1594 -0
  257. package/template/apps/platform/node_modules/zod/src/v4/core/checks.ts +1283 -0
  258. package/template/apps/platform/node_modules/zod/src/v4/core/config.ts +15 -0
  259. package/template/apps/platform/node_modules/zod/src/v4/core/core.ts +134 -0
  260. package/template/apps/platform/node_modules/zod/src/v4/core/doc.ts +44 -0
  261. package/template/apps/platform/node_modules/zod/src/v4/core/errors.ts +424 -0
  262. package/template/apps/platform/node_modules/zod/src/v4/core/function.ts +176 -0
  263. package/template/apps/platform/node_modules/zod/src/v4/core/index.ts +15 -0
  264. package/template/apps/platform/node_modules/zod/src/v4/core/json-schema.ts +143 -0
  265. package/template/apps/platform/node_modules/zod/src/v4/core/parse.ts +94 -0
  266. package/template/apps/platform/node_modules/zod/src/v4/core/regexes.ts +135 -0
  267. package/template/apps/platform/node_modules/zod/src/v4/core/registries.ts +96 -0
  268. package/template/apps/platform/node_modules/zod/src/v4/core/schemas.ts +3842 -0
  269. package/template/apps/platform/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  270. package/template/apps/platform/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  271. package/template/apps/platform/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  272. package/template/apps/platform/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  273. package/template/apps/platform/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  274. package/template/apps/platform/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  275. package/template/apps/platform/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
  276. package/template/apps/platform/node_modules/zod/src/v4/core/util.ts +775 -0
  277. package/template/apps/platform/node_modules/zod/src/v4/core/versions.ts +5 -0
  278. package/template/apps/platform/node_modules/zod/src/v4/core/zsf.ts +323 -0
  279. package/template/apps/platform/node_modules/zod/src/v4/index.ts +4 -0
  280. package/template/apps/platform/node_modules/zod/src/v4/locales/ar.ts +125 -0
  281. package/template/apps/platform/node_modules/zod/src/v4/locales/az.ts +121 -0
  282. package/template/apps/platform/node_modules/zod/src/v4/locales/be.ts +184 -0
  283. package/template/apps/platform/node_modules/zod/src/v4/locales/ca.ts +127 -0
  284. package/template/apps/platform/node_modules/zod/src/v4/locales/cs.ts +142 -0
  285. package/template/apps/platform/node_modules/zod/src/v4/locales/de.ts +124 -0
  286. package/template/apps/platform/node_modules/zod/src/v4/locales/en.ts +127 -0
  287. package/template/apps/platform/node_modules/zod/src/v4/locales/eo.ts +125 -0
  288. package/template/apps/platform/node_modules/zod/src/v4/locales/es.ts +125 -0
  289. package/template/apps/platform/node_modules/zod/src/v4/locales/fa.ts +134 -0
  290. package/template/apps/platform/node_modules/zod/src/v4/locales/fi.ts +131 -0
  291. package/template/apps/platform/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  292. package/template/apps/platform/node_modules/zod/src/v4/locales/fr.ts +124 -0
  293. package/template/apps/platform/node_modules/zod/src/v4/locales/he.ts +125 -0
  294. package/template/apps/platform/node_modules/zod/src/v4/locales/hu.ts +126 -0
  295. package/template/apps/platform/node_modules/zod/src/v4/locales/id.ts +125 -0
  296. package/template/apps/platform/node_modules/zod/src/v4/locales/index.ts +39 -0
  297. package/template/apps/platform/node_modules/zod/src/v4/locales/it.ts +125 -0
  298. package/template/apps/platform/node_modules/zod/src/v4/locales/ja.ts +122 -0
  299. package/template/apps/platform/node_modules/zod/src/v4/locales/kh.ts +126 -0
  300. package/template/apps/platform/node_modules/zod/src/v4/locales/ko.ts +131 -0
  301. package/template/apps/platform/node_modules/zod/src/v4/locales/mk.ts +127 -0
  302. package/template/apps/platform/node_modules/zod/src/v4/locales/ms.ts +124 -0
  303. package/template/apps/platform/node_modules/zod/src/v4/locales/nl.ts +126 -0
  304. package/template/apps/platform/node_modules/zod/src/v4/locales/no.ts +124 -0
  305. package/template/apps/platform/node_modules/zod/src/v4/locales/ota.ts +125 -0
  306. package/template/apps/platform/node_modules/zod/src/v4/locales/pl.ts +126 -0
  307. package/template/apps/platform/node_modules/zod/src/v4/locales/ps.ts +133 -0
  308. package/template/apps/platform/node_modules/zod/src/v4/locales/pt.ts +123 -0
  309. package/template/apps/platform/node_modules/zod/src/v4/locales/ru.ts +184 -0
  310. package/template/apps/platform/node_modules/zod/src/v4/locales/sl.ts +126 -0
  311. package/template/apps/platform/node_modules/zod/src/v4/locales/sv.ts +127 -0
  312. package/template/apps/platform/node_modules/zod/src/v4/locales/ta.ts +125 -0
  313. package/template/apps/platform/node_modules/zod/src/v4/locales/th.ts +126 -0
  314. package/template/apps/platform/node_modules/zod/src/v4/locales/tr.ts +121 -0
  315. package/template/apps/platform/node_modules/zod/src/v4/locales/ua.ts +126 -0
  316. package/template/apps/platform/node_modules/zod/src/v4/locales/ur.ts +126 -0
  317. package/template/apps/platform/node_modules/zod/src/v4/locales/vi.ts +125 -0
  318. package/template/apps/platform/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  319. package/template/apps/platform/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  320. package/template/apps/platform/node_modules/zod/src/v4/mini/checks.ts +32 -0
  321. package/template/apps/platform/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  322. package/template/apps/platform/node_modules/zod/src/v4/mini/external.ts +40 -0
  323. package/template/apps/platform/node_modules/zod/src/v4/mini/index.ts +3 -0
  324. package/template/apps/platform/node_modules/zod/src/v4/mini/iso.ts +62 -0
  325. package/template/apps/platform/node_modules/zod/src/v4/mini/parse.ts +1 -0
  326. package/template/apps/platform/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
  327. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  328. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  329. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  330. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  331. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  332. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  333. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
  334. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  335. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
  336. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  337. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  338. package/template/apps/platform/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
  339. package/template/apps/platform/node_modules/zod/src/v4-mini/index.ts +1 -0
  340. package/template/apps/platform/node_modules/zod/v3/ZodError.cjs +138 -0
  341. package/template/apps/platform/node_modules/zod/v3/ZodError.d.cts +164 -0
  342. package/template/apps/platform/node_modules/zod/v3/ZodError.d.ts +164 -0
  343. package/template/apps/platform/node_modules/zod/v3/ZodError.js +133 -0
  344. package/template/apps/platform/node_modules/zod/v3/errors.cjs +17 -0
  345. package/template/apps/platform/node_modules/zod/v3/errors.d.cts +5 -0
  346. package/template/apps/platform/node_modules/zod/v3/errors.d.ts +5 -0
  347. package/template/apps/platform/node_modules/zod/v3/errors.js +9 -0
  348. package/template/apps/platform/node_modules/zod/v3/external.cjs +22 -0
  349. package/template/apps/platform/node_modules/zod/v3/external.d.cts +6 -0
  350. package/template/apps/platform/node_modules/zod/v3/external.d.ts +6 -0
  351. package/template/apps/platform/node_modules/zod/v3/external.js +6 -0
  352. package/template/apps/platform/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  353. package/template/apps/platform/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  354. package/template/apps/platform/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  355. package/template/apps/platform/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  356. package/template/apps/platform/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  357. package/template/apps/platform/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  358. package/template/apps/platform/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  359. package/template/apps/platform/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  360. package/template/apps/platform/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  361. package/template/apps/platform/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  362. package/template/apps/platform/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  363. package/template/apps/platform/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  364. package/template/apps/platform/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  365. package/template/apps/platform/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  366. package/template/apps/platform/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  367. package/template/apps/platform/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  368. package/template/apps/platform/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  369. package/template/apps/platform/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  370. package/template/apps/platform/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  371. package/template/apps/platform/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  372. package/template/apps/platform/node_modules/zod/v3/helpers/util.cjs +137 -0
  373. package/template/apps/platform/node_modules/zod/v3/helpers/util.d.cts +85 -0
  374. package/template/apps/platform/node_modules/zod/v3/helpers/util.d.ts +85 -0
  375. package/template/apps/platform/node_modules/zod/v3/helpers/util.js +133 -0
  376. package/template/apps/platform/node_modules/zod/v3/index.cjs +33 -0
  377. package/template/apps/platform/node_modules/zod/v3/index.d.cts +4 -0
  378. package/template/apps/platform/node_modules/zod/v3/index.d.ts +4 -0
  379. package/template/apps/platform/node_modules/zod/v3/index.js +4 -0
  380. package/template/apps/platform/node_modules/zod/v3/locales/en.cjs +111 -0
  381. package/template/apps/platform/node_modules/zod/v3/locales/en.d.cts +3 -0
  382. package/template/apps/platform/node_modules/zod/v3/locales/en.d.ts +3 -0
  383. package/template/apps/platform/node_modules/zod/v3/locales/en.js +109 -0
  384. package/template/apps/platform/node_modules/zod/v3/standard-schema.cjs +2 -0
  385. package/template/apps/platform/node_modules/zod/v3/standard-schema.d.cts +102 -0
  386. package/template/apps/platform/node_modules/zod/v3/standard-schema.d.ts +102 -0
  387. package/template/apps/platform/node_modules/zod/v3/standard-schema.js +1 -0
  388. package/template/apps/platform/node_modules/zod/v3/types.cjs +3775 -0
  389. package/template/apps/platform/node_modules/zod/v3/types.d.cts +1031 -0
  390. package/template/apps/platform/node_modules/zod/v3/types.d.ts +1031 -0
  391. package/template/apps/platform/node_modules/zod/v3/types.js +3693 -0
  392. package/template/apps/platform/node_modules/zod/v4/classic/checks.cjs +32 -0
  393. package/template/apps/platform/node_modules/zod/v4/classic/checks.d.cts +1 -0
  394. package/template/apps/platform/node_modules/zod/v4/classic/checks.d.ts +1 -0
  395. package/template/apps/platform/node_modules/zod/v4/classic/checks.js +1 -0
  396. package/template/apps/platform/node_modules/zod/v4/classic/coerce.cjs +47 -0
  397. package/template/apps/platform/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  398. package/template/apps/platform/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  399. package/template/apps/platform/node_modules/zod/v4/classic/coerce.js +17 -0
  400. package/template/apps/platform/node_modules/zod/v4/classic/compat.cjs +57 -0
  401. package/template/apps/platform/node_modules/zod/v4/classic/compat.d.cts +46 -0
  402. package/template/apps/platform/node_modules/zod/v4/classic/compat.d.ts +46 -0
  403. package/template/apps/platform/node_modules/zod/v4/classic/compat.js +27 -0
  404. package/template/apps/platform/node_modules/zod/v4/classic/errors.cjs +67 -0
  405. package/template/apps/platform/node_modules/zod/v4/classic/errors.d.cts +30 -0
  406. package/template/apps/platform/node_modules/zod/v4/classic/errors.d.ts +30 -0
  407. package/template/apps/platform/node_modules/zod/v4/classic/errors.js +41 -0
  408. package/template/apps/platform/node_modules/zod/v4/classic/external.cjs +70 -0
  409. package/template/apps/platform/node_modules/zod/v4/classic/external.d.cts +13 -0
  410. package/template/apps/platform/node_modules/zod/v4/classic/external.d.ts +13 -0
  411. package/template/apps/platform/node_modules/zod/v4/classic/external.js +18 -0
  412. package/template/apps/platform/node_modules/zod/v4/classic/index.cjs +33 -0
  413. package/template/apps/platform/node_modules/zod/v4/classic/index.d.cts +4 -0
  414. package/template/apps/platform/node_modules/zod/v4/classic/index.d.ts +4 -0
  415. package/template/apps/platform/node_modules/zod/v4/classic/index.js +4 -0
  416. package/template/apps/platform/node_modules/zod/v4/classic/iso.cjs +60 -0
  417. package/template/apps/platform/node_modules/zod/v4/classic/iso.d.cts +22 -0
  418. package/template/apps/platform/node_modules/zod/v4/classic/iso.d.ts +22 -0
  419. package/template/apps/platform/node_modules/zod/v4/classic/iso.js +30 -0
  420. package/template/apps/platform/node_modules/zod/v4/classic/parse.cjs +32 -0
  421. package/template/apps/platform/node_modules/zod/v4/classic/parse.d.cts +23 -0
  422. package/template/apps/platform/node_modules/zod/v4/classic/parse.d.ts +23 -0
  423. package/template/apps/platform/node_modules/zod/v4/classic/parse.js +6 -0
  424. package/template/apps/platform/node_modules/zod/v4/classic/schemas.cjs +1109 -0
  425. package/template/apps/platform/node_modules/zod/v4/classic/schemas.d.cts +630 -0
  426. package/template/apps/platform/node_modules/zod/v4/classic/schemas.d.ts +630 -0
  427. package/template/apps/platform/node_modules/zod/v4/classic/schemas.js +1006 -0
  428. package/template/apps/platform/node_modules/zod/v4/core/api.cjs +1039 -0
  429. package/template/apps/platform/node_modules/zod/v4/core/api.d.cts +284 -0
  430. package/template/apps/platform/node_modules/zod/v4/core/api.d.ts +284 -0
  431. package/template/apps/platform/node_modules/zod/v4/core/api.js +906 -0
  432. package/template/apps/platform/node_modules/zod/v4/core/checks.cjs +591 -0
  433. package/template/apps/platform/node_modules/zod/v4/core/checks.d.cts +278 -0
  434. package/template/apps/platform/node_modules/zod/v4/core/checks.d.ts +278 -0
  435. package/template/apps/platform/node_modules/zod/v4/core/checks.js +565 -0
  436. package/template/apps/platform/node_modules/zod/v4/core/core.cjs +67 -0
  437. package/template/apps/platform/node_modules/zod/v4/core/core.d.cts +49 -0
  438. package/template/apps/platform/node_modules/zod/v4/core/core.d.ts +49 -0
  439. package/template/apps/platform/node_modules/zod/v4/core/core.js +61 -0
  440. package/template/apps/platform/node_modules/zod/v4/core/doc.cjs +39 -0
  441. package/template/apps/platform/node_modules/zod/v4/core/doc.d.cts +14 -0
  442. package/template/apps/platform/node_modules/zod/v4/core/doc.d.ts +14 -0
  443. package/template/apps/platform/node_modules/zod/v4/core/doc.js +35 -0
  444. package/template/apps/platform/node_modules/zod/v4/core/errors.cjs +226 -0
  445. package/template/apps/platform/node_modules/zod/v4/core/errors.d.cts +208 -0
  446. package/template/apps/platform/node_modules/zod/v4/core/errors.d.ts +208 -0
  447. package/template/apps/platform/node_modules/zod/v4/core/errors.js +195 -0
  448. package/template/apps/platform/node_modules/zod/v4/core/function.cjs +102 -0
  449. package/template/apps/platform/node_modules/zod/v4/core/function.d.cts +52 -0
  450. package/template/apps/platform/node_modules/zod/v4/core/function.d.ts +52 -0
  451. package/template/apps/platform/node_modules/zod/v4/core/function.js +75 -0
  452. package/template/apps/platform/node_modules/zod/v4/core/index.cjs +44 -0
  453. package/template/apps/platform/node_modules/zod/v4/core/index.d.cts +15 -0
  454. package/template/apps/platform/node_modules/zod/v4/core/index.d.ts +15 -0
  455. package/template/apps/platform/node_modules/zod/v4/core/index.js +15 -0
  456. package/template/apps/platform/node_modules/zod/v4/core/json-schema.cjs +2 -0
  457. package/template/apps/platform/node_modules/zod/v4/core/json-schema.d.cts +87 -0
  458. package/template/apps/platform/node_modules/zod/v4/core/json-schema.d.ts +87 -0
  459. package/template/apps/platform/node_modules/zod/v4/core/json-schema.js +1 -0
  460. package/template/apps/platform/node_modules/zod/v4/core/parse.cjs +87 -0
  461. package/template/apps/platform/node_modules/zod/v4/core/parse.d.cts +25 -0
  462. package/template/apps/platform/node_modules/zod/v4/core/parse.d.ts +25 -0
  463. package/template/apps/platform/node_modules/zod/v4/core/parse.js +57 -0
  464. package/template/apps/platform/node_modules/zod/v4/core/regexes.cjs +103 -0
  465. package/template/apps/platform/node_modules/zod/v4/core/regexes.d.cts +62 -0
  466. package/template/apps/platform/node_modules/zod/v4/core/regexes.d.ts +62 -0
  467. package/template/apps/platform/node_modules/zod/v4/core/regexes.js +95 -0
  468. package/template/apps/platform/node_modules/zod/v4/core/registries.cjs +56 -0
  469. package/template/apps/platform/node_modules/zod/v4/core/registries.d.cts +35 -0
  470. package/template/apps/platform/node_modules/zod/v4/core/registries.d.ts +35 -0
  471. package/template/apps/platform/node_modules/zod/v4/core/registries.js +51 -0
  472. package/template/apps/platform/node_modules/zod/v4/core/schemas.cjs +1748 -0
  473. package/template/apps/platform/node_modules/zod/v4/core/schemas.d.cts +1041 -0
  474. package/template/apps/platform/node_modules/zod/v4/core/schemas.d.ts +1041 -0
  475. package/template/apps/platform/node_modules/zod/v4/core/schemas.js +1717 -0
  476. package/template/apps/platform/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  477. package/template/apps/platform/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  478. package/template/apps/platform/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  479. package/template/apps/platform/node_modules/zod/v4/core/standard-schema.js +1 -0
  480. package/template/apps/platform/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
  481. package/template/apps/platform/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
  482. package/template/apps/platform/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
  483. package/template/apps/platform/node_modules/zod/v4/core/to-json-schema.js +849 -0
  484. package/template/apps/platform/node_modules/zod/v4/core/util.cjs +539 -0
  485. package/template/apps/platform/node_modules/zod/v4/core/util.d.cts +183 -0
  486. package/template/apps/platform/node_modules/zod/v4/core/util.d.ts +183 -0
  487. package/template/apps/platform/node_modules/zod/v4/core/util.js +493 -0
  488. package/template/apps/platform/node_modules/zod/v4/core/versions.cjs +8 -0
  489. package/template/apps/platform/node_modules/zod/v4/core/versions.d.cts +5 -0
  490. package/template/apps/platform/node_modules/zod/v4/core/versions.d.ts +5 -0
  491. package/template/apps/platform/node_modules/zod/v4/core/versions.js +5 -0
  492. package/template/apps/platform/node_modules/zod/v4/index.cjs +22 -0
  493. package/template/apps/platform/node_modules/zod/v4/index.d.cts +3 -0
  494. package/template/apps/platform/node_modules/zod/v4/index.d.ts +3 -0
  495. package/template/apps/platform/node_modules/zod/v4/index.js +3 -0
  496. package/template/apps/platform/node_modules/zod/v4/locales/ar.cjs +142 -0
  497. package/template/apps/platform/node_modules/zod/v4/locales/ar.d.cts +4 -0
  498. package/template/apps/platform/node_modules/zod/v4/locales/ar.d.ts +4 -0
  499. package/template/apps/platform/node_modules/zod/v4/locales/ar.js +116 -0
  500. package/template/apps/platform/node_modules/zod/v4/locales/az.cjs +141 -0
  501. package/template/apps/platform/node_modules/zod/v4/locales/az.d.cts +4 -0
  502. package/template/apps/platform/node_modules/zod/v4/locales/az.d.ts +4 -0
  503. package/template/apps/platform/node_modules/zod/v4/locales/az.js +115 -0
  504. package/template/apps/platform/node_modules/zod/v4/locales/be.cjs +190 -0
  505. package/template/apps/platform/node_modules/zod/v4/locales/be.d.cts +4 -0
  506. package/template/apps/platform/node_modules/zod/v4/locales/be.d.ts +4 -0
  507. package/template/apps/platform/node_modules/zod/v4/locales/be.js +164 -0
  508. package/template/apps/platform/node_modules/zod/v4/locales/ca.cjs +144 -0
  509. package/template/apps/platform/node_modules/zod/v4/locales/ca.d.cts +4 -0
  510. package/template/apps/platform/node_modules/zod/v4/locales/ca.d.ts +4 -0
  511. package/template/apps/platform/node_modules/zod/v4/locales/ca.js +118 -0
  512. package/template/apps/platform/node_modules/zod/v4/locales/cs.cjs +161 -0
  513. package/template/apps/platform/node_modules/zod/v4/locales/cs.d.cts +4 -0
  514. package/template/apps/platform/node_modules/zod/v4/locales/cs.d.ts +4 -0
  515. package/template/apps/platform/node_modules/zod/v4/locales/cs.js +135 -0
  516. package/template/apps/platform/node_modules/zod/v4/locales/de.cjs +142 -0
  517. package/template/apps/platform/node_modules/zod/v4/locales/de.d.cts +4 -0
  518. package/template/apps/platform/node_modules/zod/v4/locales/de.d.ts +4 -0
  519. package/template/apps/platform/node_modules/zod/v4/locales/de.js +116 -0
  520. package/template/apps/platform/node_modules/zod/v4/locales/en.cjs +145 -0
  521. package/template/apps/platform/node_modules/zod/v4/locales/en.d.cts +5 -0
  522. package/template/apps/platform/node_modules/zod/v4/locales/en.d.ts +5 -0
  523. package/template/apps/platform/node_modules/zod/v4/locales/en.js +117 -0
  524. package/template/apps/platform/node_modules/zod/v4/locales/eo.cjs +144 -0
  525. package/template/apps/platform/node_modules/zod/v4/locales/eo.d.cts +5 -0
  526. package/template/apps/platform/node_modules/zod/v4/locales/eo.d.ts +5 -0
  527. package/template/apps/platform/node_modules/zod/v4/locales/eo.js +116 -0
  528. package/template/apps/platform/node_modules/zod/v4/locales/es.cjs +143 -0
  529. package/template/apps/platform/node_modules/zod/v4/locales/es.d.cts +4 -0
  530. package/template/apps/platform/node_modules/zod/v4/locales/es.d.ts +4 -0
  531. package/template/apps/platform/node_modules/zod/v4/locales/es.js +117 -0
  532. package/template/apps/platform/node_modules/zod/v4/locales/fa.cjs +148 -0
  533. package/template/apps/platform/node_modules/zod/v4/locales/fa.d.cts +4 -0
  534. package/template/apps/platform/node_modules/zod/v4/locales/fa.d.ts +4 -0
  535. package/template/apps/platform/node_modules/zod/v4/locales/fa.js +122 -0
  536. package/template/apps/platform/node_modules/zod/v4/locales/fi.cjs +148 -0
  537. package/template/apps/platform/node_modules/zod/v4/locales/fi.d.cts +4 -0
  538. package/template/apps/platform/node_modules/zod/v4/locales/fi.d.ts +4 -0
  539. package/template/apps/platform/node_modules/zod/v4/locales/fi.js +122 -0
  540. package/template/apps/platform/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
  541. package/template/apps/platform/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
  542. package/template/apps/platform/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  543. package/template/apps/platform/node_modules/zod/v4/locales/fr-CA.js +117 -0
  544. package/template/apps/platform/node_modules/zod/v4/locales/fr.cjs +142 -0
  545. package/template/apps/platform/node_modules/zod/v4/locales/fr.d.cts +4 -0
  546. package/template/apps/platform/node_modules/zod/v4/locales/fr.d.ts +4 -0
  547. package/template/apps/platform/node_modules/zod/v4/locales/fr.js +116 -0
  548. package/template/apps/platform/node_modules/zod/v4/locales/he.cjs +143 -0
  549. package/template/apps/platform/node_modules/zod/v4/locales/he.d.cts +4 -0
  550. package/template/apps/platform/node_modules/zod/v4/locales/he.d.ts +4 -0
  551. package/template/apps/platform/node_modules/zod/v4/locales/he.js +117 -0
  552. package/template/apps/platform/node_modules/zod/v4/locales/hu.cjs +143 -0
  553. package/template/apps/platform/node_modules/zod/v4/locales/hu.d.cts +4 -0
  554. package/template/apps/platform/node_modules/zod/v4/locales/hu.d.ts +4 -0
  555. package/template/apps/platform/node_modules/zod/v4/locales/hu.js +117 -0
  556. package/template/apps/platform/node_modules/zod/v4/locales/id.cjs +142 -0
  557. package/template/apps/platform/node_modules/zod/v4/locales/id.d.cts +4 -0
  558. package/template/apps/platform/node_modules/zod/v4/locales/id.d.ts +4 -0
  559. package/template/apps/platform/node_modules/zod/v4/locales/id.js +116 -0
  560. package/template/apps/platform/node_modules/zod/v4/locales/index.cjs +84 -0
  561. package/template/apps/platform/node_modules/zod/v4/locales/index.d.cts +39 -0
  562. package/template/apps/platform/node_modules/zod/v4/locales/index.d.ts +39 -0
  563. package/template/apps/platform/node_modules/zod/v4/locales/index.js +39 -0
  564. package/template/apps/platform/node_modules/zod/v4/locales/it.cjs +143 -0
  565. package/template/apps/platform/node_modules/zod/v4/locales/it.d.cts +4 -0
  566. package/template/apps/platform/node_modules/zod/v4/locales/it.d.ts +4 -0
  567. package/template/apps/platform/node_modules/zod/v4/locales/it.js +117 -0
  568. package/template/apps/platform/node_modules/zod/v4/locales/ja.cjs +141 -0
  569. package/template/apps/platform/node_modules/zod/v4/locales/ja.d.cts +4 -0
  570. package/template/apps/platform/node_modules/zod/v4/locales/ja.d.ts +4 -0
  571. package/template/apps/platform/node_modules/zod/v4/locales/ja.js +115 -0
  572. package/template/apps/platform/node_modules/zod/v4/locales/kh.cjs +143 -0
  573. package/template/apps/platform/node_modules/zod/v4/locales/kh.d.cts +4 -0
  574. package/template/apps/platform/node_modules/zod/v4/locales/kh.d.ts +4 -0
  575. package/template/apps/platform/node_modules/zod/v4/locales/kh.js +117 -0
  576. package/template/apps/platform/node_modules/zod/v4/locales/ko.cjs +147 -0
  577. package/template/apps/platform/node_modules/zod/v4/locales/ko.d.cts +4 -0
  578. package/template/apps/platform/node_modules/zod/v4/locales/ko.d.ts +4 -0
  579. package/template/apps/platform/node_modules/zod/v4/locales/ko.js +121 -0
  580. package/template/apps/platform/node_modules/zod/v4/locales/mk.cjs +144 -0
  581. package/template/apps/platform/node_modules/zod/v4/locales/mk.d.cts +4 -0
  582. package/template/apps/platform/node_modules/zod/v4/locales/mk.d.ts +4 -0
  583. package/template/apps/platform/node_modules/zod/v4/locales/mk.js +118 -0
  584. package/template/apps/platform/node_modules/zod/v4/locales/ms.cjs +142 -0
  585. package/template/apps/platform/node_modules/zod/v4/locales/ms.d.cts +4 -0
  586. package/template/apps/platform/node_modules/zod/v4/locales/ms.d.ts +4 -0
  587. package/template/apps/platform/node_modules/zod/v4/locales/ms.js +116 -0
  588. package/template/apps/platform/node_modules/zod/v4/locales/nl.cjs +143 -0
  589. package/template/apps/platform/node_modules/zod/v4/locales/nl.d.cts +4 -0
  590. package/template/apps/platform/node_modules/zod/v4/locales/nl.d.ts +4 -0
  591. package/template/apps/platform/node_modules/zod/v4/locales/nl.js +117 -0
  592. package/template/apps/platform/node_modules/zod/v4/locales/no.cjs +142 -0
  593. package/template/apps/platform/node_modules/zod/v4/locales/no.d.cts +4 -0
  594. package/template/apps/platform/node_modules/zod/v4/locales/no.d.ts +4 -0
  595. package/template/apps/platform/node_modules/zod/v4/locales/no.js +116 -0
  596. package/template/apps/platform/node_modules/zod/v4/locales/ota.cjs +143 -0
  597. package/template/apps/platform/node_modules/zod/v4/locales/ota.d.cts +4 -0
  598. package/template/apps/platform/node_modules/zod/v4/locales/ota.d.ts +4 -0
  599. package/template/apps/platform/node_modules/zod/v4/locales/ota.js +117 -0
  600. package/template/apps/platform/node_modules/zod/v4/locales/pl.cjs +143 -0
  601. package/template/apps/platform/node_modules/zod/v4/locales/pl.d.cts +4 -0
  602. package/template/apps/platform/node_modules/zod/v4/locales/pl.d.ts +4 -0
  603. package/template/apps/platform/node_modules/zod/v4/locales/pl.js +117 -0
  604. package/template/apps/platform/node_modules/zod/v4/locales/ps.cjs +148 -0
  605. package/template/apps/platform/node_modules/zod/v4/locales/ps.d.cts +4 -0
  606. package/template/apps/platform/node_modules/zod/v4/locales/ps.d.ts +4 -0
  607. package/template/apps/platform/node_modules/zod/v4/locales/ps.js +122 -0
  608. package/template/apps/platform/node_modules/zod/v4/locales/pt.cjs +142 -0
  609. package/template/apps/platform/node_modules/zod/v4/locales/pt.d.cts +4 -0
  610. package/template/apps/platform/node_modules/zod/v4/locales/pt.d.ts +4 -0
  611. package/template/apps/platform/node_modules/zod/v4/locales/pt.js +116 -0
  612. package/template/apps/platform/node_modules/zod/v4/locales/ru.cjs +190 -0
  613. package/template/apps/platform/node_modules/zod/v4/locales/ru.d.cts +4 -0
  614. package/template/apps/platform/node_modules/zod/v4/locales/ru.d.ts +4 -0
  615. package/template/apps/platform/node_modules/zod/v4/locales/ru.js +164 -0
  616. package/template/apps/platform/node_modules/zod/v4/locales/sl.cjs +143 -0
  617. package/template/apps/platform/node_modules/zod/v4/locales/sl.d.cts +4 -0
  618. package/template/apps/platform/node_modules/zod/v4/locales/sl.d.ts +4 -0
  619. package/template/apps/platform/node_modules/zod/v4/locales/sl.js +117 -0
  620. package/template/apps/platform/node_modules/zod/v4/locales/sv.cjs +144 -0
  621. package/template/apps/platform/node_modules/zod/v4/locales/sv.d.cts +4 -0
  622. package/template/apps/platform/node_modules/zod/v4/locales/sv.d.ts +4 -0
  623. package/template/apps/platform/node_modules/zod/v4/locales/sv.js +118 -0
  624. package/template/apps/platform/node_modules/zod/v4/locales/ta.cjs +143 -0
  625. package/template/apps/platform/node_modules/zod/v4/locales/ta.d.cts +4 -0
  626. package/template/apps/platform/node_modules/zod/v4/locales/ta.d.ts +4 -0
  627. package/template/apps/platform/node_modules/zod/v4/locales/ta.js +117 -0
  628. package/template/apps/platform/node_modules/zod/v4/locales/th.cjs +143 -0
  629. package/template/apps/platform/node_modules/zod/v4/locales/th.d.cts +4 -0
  630. package/template/apps/platform/node_modules/zod/v4/locales/th.d.ts +4 -0
  631. package/template/apps/platform/node_modules/zod/v4/locales/th.js +117 -0
  632. package/template/apps/platform/node_modules/zod/v4/locales/tr.cjs +143 -0
  633. package/template/apps/platform/node_modules/zod/v4/locales/tr.d.cts +5 -0
  634. package/template/apps/platform/node_modules/zod/v4/locales/tr.d.ts +5 -0
  635. package/template/apps/platform/node_modules/zod/v4/locales/tr.js +115 -0
  636. package/template/apps/platform/node_modules/zod/v4/locales/ua.cjs +143 -0
  637. package/template/apps/platform/node_modules/zod/v4/locales/ua.d.cts +4 -0
  638. package/template/apps/platform/node_modules/zod/v4/locales/ua.d.ts +4 -0
  639. package/template/apps/platform/node_modules/zod/v4/locales/ua.js +117 -0
  640. package/template/apps/platform/node_modules/zod/v4/locales/ur.cjs +143 -0
  641. package/template/apps/platform/node_modules/zod/v4/locales/ur.d.cts +4 -0
  642. package/template/apps/platform/node_modules/zod/v4/locales/ur.d.ts +4 -0
  643. package/template/apps/platform/node_modules/zod/v4/locales/ur.js +117 -0
  644. package/template/apps/platform/node_modules/zod/v4/locales/vi.cjs +142 -0
  645. package/template/apps/platform/node_modules/zod/v4/locales/vi.d.cts +4 -0
  646. package/template/apps/platform/node_modules/zod/v4/locales/vi.d.ts +4 -0
  647. package/template/apps/platform/node_modules/zod/v4/locales/vi.js +116 -0
  648. package/template/apps/platform/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
  649. package/template/apps/platform/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
  650. package/template/apps/platform/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  651. package/template/apps/platform/node_modules/zod/v4/locales/zh-CN.js +116 -0
  652. package/template/apps/platform/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
  653. package/template/apps/platform/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
  654. package/template/apps/platform/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  655. package/template/apps/platform/node_modules/zod/v4/locales/zh-TW.js +117 -0
  656. package/template/apps/platform/node_modules/zod/v4/mini/checks.cjs +34 -0
  657. package/template/apps/platform/node_modules/zod/v4/mini/checks.d.cts +1 -0
  658. package/template/apps/platform/node_modules/zod/v4/mini/checks.d.ts +1 -0
  659. package/template/apps/platform/node_modules/zod/v4/mini/checks.js +1 -0
  660. package/template/apps/platform/node_modules/zod/v4/mini/coerce.cjs +47 -0
  661. package/template/apps/platform/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  662. package/template/apps/platform/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  663. package/template/apps/platform/node_modules/zod/v4/mini/coerce.js +17 -0
  664. package/template/apps/platform/node_modules/zod/v4/mini/external.cjs +62 -0
  665. package/template/apps/platform/node_modules/zod/v4/mini/external.d.cts +11 -0
  666. package/template/apps/platform/node_modules/zod/v4/mini/external.d.ts +11 -0
  667. package/template/apps/platform/node_modules/zod/v4/mini/external.js +13 -0
  668. package/template/apps/platform/node_modules/zod/v4/mini/index.cjs +32 -0
  669. package/template/apps/platform/node_modules/zod/v4/mini/index.d.cts +3 -0
  670. package/template/apps/platform/node_modules/zod/v4/mini/index.d.ts +3 -0
  671. package/template/apps/platform/node_modules/zod/v4/mini/index.js +3 -0
  672. package/template/apps/platform/node_modules/zod/v4/mini/iso.cjs +60 -0
  673. package/template/apps/platform/node_modules/zod/v4/mini/iso.d.cts +22 -0
  674. package/template/apps/platform/node_modules/zod/v4/mini/iso.d.ts +22 -0
  675. package/template/apps/platform/node_modules/zod/v4/mini/iso.js +30 -0
  676. package/template/apps/platform/node_modules/zod/v4/mini/parse.cjs +8 -0
  677. package/template/apps/platform/node_modules/zod/v4/mini/parse.d.cts +1 -0
  678. package/template/apps/platform/node_modules/zod/v4/mini/parse.d.ts +1 -0
  679. package/template/apps/platform/node_modules/zod/v4/mini/parse.js +1 -0
  680. package/template/apps/platform/node_modules/zod/v4/mini/schemas.cjs +839 -0
  681. package/template/apps/platform/node_modules/zod/v4/mini/schemas.d.cts +356 -0
  682. package/template/apps/platform/node_modules/zod/v4/mini/schemas.d.ts +356 -0
  683. package/template/apps/platform/node_modules/zod/v4/mini/schemas.js +732 -0
  684. package/template/apps/platform/node_modules/zod/v4-mini/index.cjs +17 -0
  685. package/template/apps/platform/node_modules/zod/v4-mini/index.d.cts +1 -0
  686. package/template/apps/platform/node_modules/zod/v4-mini/index.d.ts +1 -0
  687. package/template/apps/platform/node_modules/zod/v4-mini/index.js +1 -0
  688. package/template/apps/platform/package.json +4 -1
  689. package/template/apps/platform/prettier.config.ts +3 -0
  690. package/template/apps/platform/tsconfig.json +2 -15
  691. package/template/package.json +5 -3
  692. package/template/packages/auth/eslint.config.ts +2 -2
  693. package/template/packages/auth/package.json +5 -1
  694. package/template/packages/auth/prettier.config.ts +3 -0
  695. package/template/packages/auth/tsconfig.json +2 -9
  696. package/template/packages/config-eslint/index.ts +24 -0
  697. package/template/packages/config-eslint/package.json +11 -0
  698. package/template/packages/config-prettier/index.ts +14 -0
  699. package/template/packages/config-prettier/package.json +7 -0
  700. package/template/packages/{ui/tsconfig.lint.json → config-typescript/base.json} +3 -5
  701. package/template/packages/config-typescript/package.json +9 -0
  702. package/template/packages/config-typescript/react.json +6 -0
  703. package/template/packages/db/eslint.config.ts +2 -2
  704. package/template/packages/db/package.json +3 -0
  705. package/template/packages/db/prettier.config.ts +3 -0
  706. package/template/packages/db/tsconfig.json +2 -9
  707. package/template/packages/orpc/eslint.config.ts +2 -2
  708. package/template/packages/orpc/node_modules/@types/node/LICENSE +21 -0
  709. package/template/packages/orpc/node_modules/@types/node/README.md +15 -0
  710. package/template/packages/orpc/node_modules/@types/node/assert/strict.d.ts +111 -0
  711. package/template/packages/orpc/node_modules/@types/node/assert.d.ts +1078 -0
  712. package/template/packages/orpc/node_modules/@types/node/async_hooks.d.ts +603 -0
  713. package/template/packages/orpc/node_modules/@types/node/buffer.buffer.d.ts +472 -0
  714. package/template/packages/orpc/node_modules/@types/node/buffer.d.ts +1934 -0
  715. package/template/packages/orpc/node_modules/@types/node/child_process.d.ts +1476 -0
  716. package/template/packages/orpc/node_modules/@types/node/cluster.d.ts +578 -0
  717. package/template/packages/orpc/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
  718. package/template/packages/orpc/node_modules/@types/node/compatibility/index.d.ts +9 -0
  719. package/template/packages/orpc/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  720. package/template/packages/orpc/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
  721. package/template/packages/orpc/node_modules/@types/node/console.d.ts +452 -0
  722. package/template/packages/orpc/node_modules/@types/node/constants.d.ts +21 -0
  723. package/template/packages/orpc/node_modules/@types/node/crypto.d.ts +4545 -0
  724. package/template/packages/orpc/node_modules/@types/node/dgram.d.ts +600 -0
  725. package/template/packages/orpc/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  726. package/template/packages/orpc/node_modules/@types/node/dns/promises.d.ts +503 -0
  727. package/template/packages/orpc/node_modules/@types/node/dns.d.ts +923 -0
  728. package/template/packages/orpc/node_modules/@types/node/domain.d.ts +170 -0
  729. package/template/packages/orpc/node_modules/@types/node/events.d.ts +976 -0
  730. package/template/packages/orpc/node_modules/@types/node/fs/promises.d.ts +1295 -0
  731. package/template/packages/orpc/node_modules/@types/node/fs.d.ts +4461 -0
  732. package/template/packages/orpc/node_modules/@types/node/globals.d.ts +172 -0
  733. package/template/packages/orpc/node_modules/@types/node/globals.typedarray.d.ts +38 -0
  734. package/template/packages/orpc/node_modules/@types/node/http.d.ts +2089 -0
  735. package/template/packages/orpc/node_modules/@types/node/http2.d.ts +2644 -0
  736. package/template/packages/orpc/node_modules/@types/node/https.d.ts +579 -0
  737. package/template/packages/orpc/node_modules/@types/node/index.d.ts +97 -0
  738. package/template/packages/orpc/node_modules/@types/node/inspector.d.ts +253 -0
  739. package/template/packages/orpc/node_modules/@types/node/inspector.generated.d.ts +4052 -0
  740. package/template/packages/orpc/node_modules/@types/node/module.d.ts +891 -0
  741. package/template/packages/orpc/node_modules/@types/node/net.d.ts +1076 -0
  742. package/template/packages/orpc/node_modules/@types/node/os.d.ts +506 -0
  743. package/template/packages/orpc/node_modules/@types/node/package.json +145 -0
  744. package/template/packages/orpc/node_modules/@types/node/path.d.ts +200 -0
  745. package/template/packages/orpc/node_modules/@types/node/perf_hooks.d.ts +968 -0
  746. package/template/packages/orpc/node_modules/@types/node/process.d.ts +2084 -0
  747. package/template/packages/orpc/node_modules/@types/node/punycode.d.ts +117 -0
  748. package/template/packages/orpc/node_modules/@types/node/querystring.d.ts +152 -0
  749. package/template/packages/orpc/node_modules/@types/node/readline/promises.d.ts +161 -0
  750. package/template/packages/orpc/node_modules/@types/node/readline.d.ts +594 -0
  751. package/template/packages/orpc/node_modules/@types/node/repl.d.ts +428 -0
  752. package/template/packages/orpc/node_modules/@types/node/sea.d.ts +153 -0
  753. package/template/packages/orpc/node_modules/@types/node/sqlite.d.ts +721 -0
  754. package/template/packages/orpc/node_modules/@types/node/stream/consumers.d.ts +38 -0
  755. package/template/packages/orpc/node_modules/@types/node/stream/promises.d.ts +90 -0
  756. package/template/packages/orpc/node_modules/@types/node/stream/web.d.ts +622 -0
  757. package/template/packages/orpc/node_modules/@types/node/stream.d.ts +1687 -0
  758. package/template/packages/orpc/node_modules/@types/node/string_decoder.d.ts +67 -0
  759. package/template/packages/orpc/node_modules/@types/node/test.d.ts +2163 -0
  760. package/template/packages/orpc/node_modules/@types/node/timers/promises.d.ts +108 -0
  761. package/template/packages/orpc/node_modules/@types/node/timers.d.ts +287 -0
  762. package/template/packages/orpc/node_modules/@types/node/tls.d.ts +1319 -0
  763. package/template/packages/orpc/node_modules/@types/node/trace_events.d.ts +197 -0
  764. package/template/packages/orpc/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
  765. package/template/packages/orpc/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
  766. package/template/packages/orpc/node_modules/@types/node/ts5.6/index.d.ts +97 -0
  767. package/template/packages/orpc/node_modules/@types/node/tty.d.ts +208 -0
  768. package/template/packages/orpc/node_modules/@types/node/url.d.ts +984 -0
  769. package/template/packages/orpc/node_modules/@types/node/util.d.ts +2606 -0
  770. package/template/packages/orpc/node_modules/@types/node/v8.d.ts +920 -0
  771. package/template/packages/orpc/node_modules/@types/node/vm.d.ts +1000 -0
  772. package/template/packages/orpc/node_modules/@types/node/wasi.d.ts +181 -0
  773. package/template/packages/orpc/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  774. package/template/packages/orpc/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  775. package/template/packages/orpc/node_modules/@types/node/web-globals/events.d.ts +97 -0
  776. package/template/packages/orpc/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
  777. package/template/packages/orpc/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
  778. package/template/packages/orpc/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  779. package/template/packages/orpc/node_modules/@types/node/worker_threads.d.ts +784 -0
  780. package/template/packages/orpc/node_modules/@types/node/zlib.d.ts +747 -0
  781. package/template/packages/orpc/node_modules/undici-types/LICENSE +21 -0
  782. package/template/packages/orpc/node_modules/undici-types/README.md +6 -0
  783. package/template/packages/orpc/node_modules/undici-types/agent.d.ts +31 -0
  784. package/template/packages/orpc/node_modules/undici-types/api.d.ts +43 -0
  785. package/template/packages/orpc/node_modules/undici-types/balanced-pool.d.ts +29 -0
  786. package/template/packages/orpc/node_modules/undici-types/cache.d.ts +36 -0
  787. package/template/packages/orpc/node_modules/undici-types/client.d.ts +108 -0
  788. package/template/packages/orpc/node_modules/undici-types/connector.d.ts +34 -0
  789. package/template/packages/orpc/node_modules/undici-types/content-type.d.ts +21 -0
  790. package/template/packages/orpc/node_modules/undici-types/cookies.d.ts +28 -0
  791. package/template/packages/orpc/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
  792. package/template/packages/orpc/node_modules/undici-types/dispatcher.d.ts +256 -0
  793. package/template/packages/orpc/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  794. package/template/packages/orpc/node_modules/undici-types/errors.d.ts +149 -0
  795. package/template/packages/orpc/node_modules/undici-types/eventsource.d.ts +61 -0
  796. package/template/packages/orpc/node_modules/undici-types/fetch.d.ts +209 -0
  797. package/template/packages/orpc/node_modules/undici-types/file.d.ts +39 -0
  798. package/template/packages/orpc/node_modules/undici-types/filereader.d.ts +54 -0
  799. package/template/packages/orpc/node_modules/undici-types/formdata.d.ts +108 -0
  800. package/template/packages/orpc/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  801. package/template/packages/orpc/node_modules/undici-types/global-origin.d.ts +7 -0
  802. package/template/packages/orpc/node_modules/undici-types/handlers.d.ts +15 -0
  803. package/template/packages/orpc/node_modules/undici-types/header.d.ts +4 -0
  804. package/template/packages/orpc/node_modules/undici-types/index.d.ts +71 -0
  805. package/template/packages/orpc/node_modules/undici-types/interceptors.d.ts +17 -0
  806. package/template/packages/orpc/node_modules/undici-types/mock-agent.d.ts +50 -0
  807. package/template/packages/orpc/node_modules/undici-types/mock-client.d.ts +25 -0
  808. package/template/packages/orpc/node_modules/undici-types/mock-errors.d.ts +12 -0
  809. package/template/packages/orpc/node_modules/undici-types/mock-interceptor.d.ts +93 -0
  810. package/template/packages/orpc/node_modules/undici-types/mock-pool.d.ts +25 -0
  811. package/template/packages/orpc/node_modules/undici-types/package.json +55 -0
  812. package/template/packages/orpc/node_modules/undici-types/patch.d.ts +33 -0
  813. package/template/packages/orpc/node_modules/undici-types/pool-stats.d.ts +19 -0
  814. package/template/packages/orpc/node_modules/undici-types/pool.d.ts +39 -0
  815. package/template/packages/orpc/node_modules/undici-types/proxy-agent.d.ts +28 -0
  816. package/template/packages/orpc/node_modules/undici-types/readable.d.ts +65 -0
  817. package/template/packages/orpc/node_modules/undici-types/retry-agent.d.ts +8 -0
  818. package/template/packages/orpc/node_modules/undici-types/retry-handler.d.ts +116 -0
  819. package/template/packages/orpc/node_modules/undici-types/util.d.ts +18 -0
  820. package/template/packages/orpc/node_modules/undici-types/webidl.d.ts +228 -0
  821. package/template/packages/orpc/node_modules/undici-types/websocket.d.ts +150 -0
  822. package/template/packages/orpc/package.json +6 -0
  823. package/template/packages/orpc/prettier.config.ts +3 -0
  824. package/template/packages/orpc/tsconfig.json +2 -9
  825. package/template/packages/ui/eslint.config.ts +2 -2
  826. package/template/packages/ui/package.json +3 -0
  827. package/template/packages/ui/prettier.config.ts +3 -0
  828. package/template/packages/ui/tsconfig.json +2 -9
  829. package/template/prettier.config.ts +15 -0
  830. package/template/.prettierrc +0 -11
  831. package/template/apps/platform/eslint.config.js +0 -10
  832. package/template/packages/auth/tsconfig.lint.json +0 -14
  833. package/template/packages/db/tsconfig.lint.json +0 -14
  834. package/template/packages/orpc/tsconfig.lint.json +0 -14
package/dist/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  #!/usr/bin/env node
2
- import r from"path";import{fileURLToPath as w}from"url";import o from"chalk";import{Command as k}from"commander";import{execa as v}from"execa";import t from"fs-extra";import j from"inquirer";import d from"ora";var S=w(import.meta.url),f=r.dirname(S),g=new k;g.name("create-croissant").description("Scaffold a new project using the Croissant Stack").argument("[project-name]","Name of the project").action(async i=>{console.log(o.bold.yellow(`
2
+ import n from"path";import{fileURLToPath as k}from"url";import r from"chalk";import{Command as y}from"commander";import{execa as j}from"execa";import e from"fs-extra";import P from"inquirer";import u from"ora";var b=k(import.meta.url),g=n.dirname(b),h=new y;h.name("create-croissant").description("Scaffold a new project using the Croissant Stack").argument("[project-name]","Name of the project").action(async m=>{console.log(r.bold.yellow(`
3
3
  \u{1F950} Welcome to the Croissant Stack!
4
- `));let l=await j.prompt([{type:"input",name:"name",message:"What is your project named?",default:i||"my-croissant-app",when:!i},{type:"confirm",name:"install",message:"Would you like to install dependencies?",default:!0}]),a=i||l.name,n=r.resolve(process.cwd(),a);t.existsSync(n)&&(console.error(o.red(`
5
- Error: Directory ${a} already exists.
6
- `)),process.exit(1));let p=d("Scaffolding your project...").start();try{await t.ensureDir(n);let s=r.join(f,"..","template");if(await t.pathExists(s))await t.copy(s,n);else{let e=r.resolve(f,"../../.."),m=["node_modules","dist",".git","packages/create-croissant",".turbo","package-lock.json"];await t.copy(e,n,{filter:u=>{let y=r.relative(e,u);return!m.some(h=>y.startsWith(h))}})}let c=r.join(n,"package.json");if(await t.pathExists(c)){let e=await t.readJson(c);e.name=a,e.version="0.1.0",delete e.private,await t.writeJson(c,e,{spaces:2})}if(p.succeed(o.green(`Project ${a} created at ${n}`)),l.install){let e=d("Installing dependencies...").start();try{await v("npm",["install"],{cwd:n}),e.succeed(o.green("Dependencies installed!"))}catch{e.fail(o.red("Failed to install dependencies. You may need to run npm install manually."))}}console.log(o.bold.cyan(`
7
- Next steps:`)),console.log(` cd ${a}`),console.log(" npm run db:up # Start your PostgreSQL database"),console.log(` npm run dev # Start development server
8
- `),console.log(o.yellow(`Happy hacking! \u{1F950}
9
- `))}catch(s){p.fail(o.red("An error occurred during scaffolding.")),console.error(s),process.exit(1)}});g.parse(process.argv);
4
+ `));let l=await P.prompt([{type:"input",name:"name",message:"What is your project named?",default:m||"my-croissant-app",when:!m},{type:"confirm",name:"install",message:"Would you like to install dependencies?",default:!0},{type:"confirm",name:"mobile",message:"Would you like to include the mobile app (Expo)?",default:!0},{type:"confirm",name:"desktop",message:"Would you like to include the desktop app (Electron)?",default:!0}]),c=m||l.name,o=n.resolve(process.cwd(),c);e.existsSync(o)&&(console.error(r.red(`
5
+ Error: Directory ${c} already exists.
6
+ `)),process.exit(1));let f=u("Scaffolding your project...").start();try{await e.ensureDir(o);let p=n.join(g,"..","template");if(await e.pathExists(p))await e.copy(p,o);else{let t=n.resolve(g,"../../.."),s=["node_modules","dist",".git","packages/create-croissant",".turbo","package-lock.json"];await e.copy(t,o,{filter:a=>{let i=n.relative(t,a);return!s.some(w=>i.startsWith(w))}})}if(!l.mobile){let t=n.join(o,"apps/mobile");if(await e.pathExists(t)){await e.remove(t);let s=n.join(o,"package.json");if(await e.pathExists(s)){let a=await e.readJson(s);a.scripts&&Object.keys(a.scripts).forEach(i=>{i.includes("mobile")&&delete a.scripts[i]}),await e.writeJson(s,a,{spaces:2})}}}if(!l.desktop){let t=n.join(o,"apps/desktop");if(await e.pathExists(t)){await e.remove(t);let s=n.join(o,"package.json");if(await e.pathExists(s)){let a=await e.readJson(s);a.scripts&&Object.keys(a.scripts).forEach(i=>{i.includes("desktop")&&delete a.scripts[i]}),await e.writeJson(s,a,{spaces:2})}}}let d=n.join(o,"package.json");if(await e.pathExists(d)){let t=await e.readJson(d);t.name=c,t.version="0.1.0",delete t.private,await e.writeJson(d,t,{spaces:2})}if(f.succeed(r.green(`Project ${c} created at ${o}`)),l.install){let t=u("Installing dependencies...").start();try{await j("npm",["install"],{cwd:o}),t.succeed(r.green("Dependencies installed!"))}catch{t.fail(r.red("Failed to install dependencies. You may need to run npm install manually."))}}console.log(r.bold.cyan(`
7
+ Next steps:`)),console.log(` cd ${c}`),console.log(" npm run db:up # Start your PostgreSQL database"),console.log(` npm run dev # Start development server
8
+ `),console.log(r.yellow(`Happy hacking! \u{1F950}
9
+ `))}catch(p){f.fail(r.red("An error occurred during scaffolding.")),console.error(p),process.exit(1)}});h.parse(process.argv);
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.28",
6
+ "version": "0.1.30",
7
7
  "description": "Scaffold a new project using the Croissant Stack",
8
8
  "repository": {
9
9
  "type": "git",
@@ -35,6 +35,9 @@
35
35
  "ora": "^9.4.0"
36
36
  },
37
37
  "devDependencies": {
38
+ "@workspace/config-eslint": "*",
39
+ "@workspace/config-typescript": "*",
40
+ "@workspace/config-prettier": "*",
38
41
  "@types/fs-extra": "^11.0.4",
39
42
  "@types/inquirer": "^9.0.9",
40
43
  "@types/node": "^25.6.0",
@@ -0,0 +1,9 @@
1
+ root = true
2
+
3
+ [*]
4
+ charset = utf-8
5
+ indent_style = space
6
+ indent_size = 2
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
@@ -0,0 +1,6 @@
1
+ out
2
+ dist
3
+ pnpm-lock.yaml
4
+ LICENSE.md
5
+ tsconfig.json
6
+ tsconfig.*.json
@@ -0,0 +1,3 @@
1
+ {
2
+ "recommendations": ["dbaeumer.vscode-eslint"]
3
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Debug Main Process",
6
+ "type": "node",
7
+ "request": "launch",
8
+ "cwd": "${workspaceRoot}",
9
+ "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite",
10
+ "windows": {
11
+ "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite.cmd"
12
+ },
13
+ "runtimeArgs": ["--sourcemap"],
14
+ "env": {
15
+ "REMOTE_DEBUGGING_PORT": "9222"
16
+ }
17
+ },
18
+ {
19
+ "name": "Debug Renderer Process",
20
+ "port": 9222,
21
+ "request": "attach",
22
+ "type": "chrome",
23
+ "webRoot": "${workspaceFolder}/src/renderer",
24
+ "timeout": 60000,
25
+ "presentation": {
26
+ "hidden": true
27
+ }
28
+ }
29
+ ],
30
+ "compounds": [
31
+ {
32
+ "name": "Debug All",
33
+ "configurations": ["Debug Main Process", "Debug Renderer Process"],
34
+ "presentation": {
35
+ "order": 1
36
+ }
37
+ }
38
+ ]
39
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "[typescript]": {
3
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
4
+ },
5
+ "[javascript]": {
6
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
7
+ },
8
+ "[json]": {
9
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
10
+ }
11
+ }
@@ -0,0 +1,34 @@
1
+ # desktop
2
+
3
+ An Electron application with React and TypeScript
4
+
5
+ ## Recommended IDE Setup
6
+
7
+ - [VSCode](https://code.visualstudio.com/) + [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)
8
+
9
+ ## Project Setup
10
+
11
+ ### Install
12
+
13
+ ```bash
14
+ $ npm install
15
+ ```
16
+
17
+ ### Development
18
+
19
+ ```bash
20
+ $ npm run dev
21
+ ```
22
+
23
+ ### Build
24
+
25
+ ```bash
26
+ # For windows
27
+ $ npm run build:win
28
+
29
+ # For macOS
30
+ $ npm run build:mac
31
+
32
+ # For Linux
33
+ $ npm run build:linux
34
+ ```
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>com.apple.security.cs.allow-jit</key>
6
+ <true/>
7
+ <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8
+ <true/>
9
+ <key>com.apple.security.cs.allow-dyld-environment-variables</key>
10
+ <true/>
11
+ </dict>
12
+ </plist>
@@ -0,0 +1,3 @@
1
+ provider: generic
2
+ url: https://example.com/auto-updates
3
+ updaterCacheDirName: desktop-updater
@@ -0,0 +1,45 @@
1
+ appId: com.electron.app
2
+ productName: desktop
3
+ directories:
4
+ buildResources: build
5
+ files:
6
+ - '!**/.vscode/*'
7
+ - '!src/*'
8
+ - '!electron.vite.config.{js,ts,mjs,cjs}'
9
+ - '!{.eslintcache,eslint.config.mjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}'
10
+ - '!{.env,.env.*,.npmrc,pnpm-lock.yaml}'
11
+ - '!{tsconfig.json,tsconfig.node.json,tsconfig.web.json}'
12
+ asarUnpack:
13
+ - resources/**
14
+ win:
15
+ executableName: desktop
16
+ nsis:
17
+ artifactName: ${name}-${version}-setup.${ext}
18
+ shortcutName: ${productName}
19
+ uninstallDisplayName: ${productName}
20
+ createDesktopShortcut: always
21
+ mac:
22
+ entitlementsInherit: build/entitlements.mac.plist
23
+ extendInfo:
24
+ - NSCameraUsageDescription: Application requests access to the device's camera.
25
+ - NSMicrophoneUsageDescription: Application requests access to the device's microphone.
26
+ - NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder.
27
+ - NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder.
28
+ notarize: false
29
+ dmg:
30
+ artifactName: ${name}-${version}.${ext}
31
+ linux:
32
+ target:
33
+ - AppImage
34
+ - snap
35
+ - deb
36
+ maintainer: electronjs.org
37
+ category: Utility
38
+ appImage:
39
+ artifactName: ${name}-${version}.${ext}
40
+ npmRebuild: false
41
+ publish:
42
+ provider: generic
43
+ url: https://example.com/auto-updates
44
+ electronDownload:
45
+ mirror: https://npmmirror.com/mirrors/electron/
@@ -0,0 +1,16 @@
1
+ import { resolve } from 'node:path'
2
+ import { defineConfig } from 'electron-vite'
3
+ import react from '@vitejs/plugin-react'
4
+
5
+ export default defineConfig({
6
+ main: {},
7
+ preload: {},
8
+ renderer: {
9
+ resolve: {
10
+ alias: {
11
+ '@renderer': resolve('src/renderer/src')
12
+ }
13
+ },
14
+ plugins: [react()]
15
+ }
16
+ })
@@ -0,0 +1,8 @@
1
+ import config from "@workspace/config-eslint"
2
+
3
+ export default [
4
+ ...config,
5
+ {
6
+ ignores: ["out/**", "dist/**", "node_modules/**"],
7
+ },
8
+ ]
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "desktop",
3
+ "version": "1.0.0",
4
+ "description": "An Electron application with React and TypeScript",
5
+ "main": "./out/main/index.js",
6
+ "author": "example.com",
7
+ "homepage": "https://electron-vite.org",
8
+ "scripts": {
9
+ "format": "prettier --write .",
10
+ "lint": "eslint --cache .",
11
+ "typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
12
+ "typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
13
+ "typecheck": "npm run typecheck:node && npm run typecheck:web",
14
+ "start": "electron-vite preview",
15
+ "dev": "electron-vite dev",
16
+ "build": "npm run typecheck && electron-vite build",
17
+ "postinstall": "electron-builder install-app-deps",
18
+ "build:unpack": "npm run build && electron-builder --dir",
19
+ "build:win": "npm run build && electron-builder --win",
20
+ "build:mac": "electron-vite build && electron-builder --mac",
21
+ "build:linux": "electron-vite build && electron-builder --linux"
22
+ },
23
+ "dependencies": {
24
+ "@electron-toolkit/preload": "^3.0.2",
25
+ "@electron-toolkit/utils": "^4.0.0",
26
+ "electron-updater": "^6.3.9"
27
+ },
28
+ "devDependencies": {
29
+ "@workspace/config-eslint": "*",
30
+ "@workspace/config-typescript": "*",
31
+ "@workspace/config-prettier": "*",
32
+ "@electron-toolkit/eslint-config-prettier": "^3.0.0",
33
+ "@electron-toolkit/eslint-config-ts": "^3.1.0",
34
+ "@electron-toolkit/tsconfig": "^2.0.0",
35
+ "@types/node": "^22.19.1",
36
+ "@types/react": "^19.2.7",
37
+ "@types/react-dom": "^19.2.3",
38
+ "@vitejs/plugin-react": "^5.1.1",
39
+ "electron": "39.8.9",
40
+ "electron-builder": "^26.0.12",
41
+ "electron-vite": "^5.0.0",
42
+ "eslint-plugin-react": "^7.37.5",
43
+ "eslint-plugin-react-hooks": "^7.1.1",
44
+ "eslint-plugin-react-refresh": "^0.5.2",
45
+ "prettier": "^3.7.4",
46
+ "react": "^19.2.1",
47
+ "react-dom": "^19.2.1"
48
+ }
49
+ }
@@ -0,0 +1,3 @@
1
+ import config from "@workspace/config-prettier"
2
+
3
+ export default config
@@ -0,0 +1,74 @@
1
+ import { join } from 'node:path'
2
+ import { BrowserWindow, app, ipcMain, shell } from 'electron'
3
+ import { electronApp, is, optimizer } from '@electron-toolkit/utils'
4
+ import icon from '../../resources/icon.png?asset'
5
+
6
+ function createWindow(): void {
7
+ // Create the browser window.
8
+ const mainWindow = new BrowserWindow({
9
+ width: 900,
10
+ height: 670,
11
+ show: false,
12
+ autoHideMenuBar: true,
13
+ ...(process.platform === 'linux' ? { icon } : {}),
14
+ webPreferences: {
15
+ preload: join(__dirname, '../preload/index.js'),
16
+ sandbox: false
17
+ }
18
+ })
19
+
20
+ mainWindow.on('ready-to-show', () => {
21
+ mainWindow.show()
22
+ })
23
+
24
+ mainWindow.webContents.setWindowOpenHandler((details) => {
25
+ shell.openExternal(details.url)
26
+ return { action: 'deny' }
27
+ })
28
+
29
+ // HMR for renderer base on electron-vite cli.
30
+ // Load the remote URL for development or the local html file for production.
31
+ if (is.dev && process.env['ELECTRON_RENDERER_URL']) {
32
+ mainWindow.loadURL(process.env['ELECTRON_RENDERER_URL'])
33
+ } else {
34
+ mainWindow.loadFile(join(__dirname, '../renderer/index.html'))
35
+ }
36
+ }
37
+
38
+ // This method will be called when Electron has finished
39
+ // initialization and is ready to create browser windows.
40
+ // Some APIs can only be used after this event occurs.
41
+ app.whenReady().then(() => {
42
+ // Set app user model id for windows
43
+ electronApp.setAppUserModelId('com.electron')
44
+
45
+ // Default open or close DevTools by F12 in development
46
+ // and ignore CommandOrControl + R in production.
47
+ // see https://github.com/alex8088/electron-toolkit/tree/master/packages/utils
48
+ app.on('browser-window-created', (_, window) => {
49
+ optimizer.watchWindowShortcuts(window)
50
+ })
51
+
52
+ // IPC test
53
+ ipcMain.on('ping', () => console.log('pong'))
54
+
55
+ createWindow()
56
+
57
+ app.on('activate', function () {
58
+ // On macOS it's common to re-create a window in the app when the
59
+ // dock icon is clicked and there are no other windows open.
60
+ if (BrowserWindow.getAllWindows().length === 0) createWindow()
61
+ })
62
+ })
63
+
64
+ // Quit when all windows are closed, except on macOS. There, it's common
65
+ // for applications and their menu bar to stay active until the user quits
66
+ // explicitly with Cmd + Q.
67
+ app.on('window-all-closed', () => {
68
+ if (process.platform !== 'darwin') {
69
+ app.quit()
70
+ }
71
+ })
72
+
73
+ // In this file you can include the rest of your app's specific main process
74
+ // code. You can also put them in separate files and require them here.
@@ -0,0 +1,8 @@
1
+ import type { ElectronAPI } from '@electron-toolkit/preload'
2
+
3
+ declare global {
4
+ interface Window {
5
+ electron: ElectronAPI
6
+ api: unknown
7
+ }
8
+ }
@@ -0,0 +1,22 @@
1
+ import { contextBridge } from 'electron'
2
+ import { electronAPI } from '@electron-toolkit/preload'
3
+
4
+ // Custom APIs for renderer
5
+ const api = {}
6
+
7
+ // Use `contextBridge` APIs to expose Electron APIs to
8
+ // renderer only if context isolation is enabled, otherwise
9
+ // just add to the DOM global.
10
+ if (process.contextIsolated) {
11
+ try {
12
+ contextBridge.exposeInMainWorld('electron', electronAPI)
13
+ contextBridge.exposeInMainWorld('api', api)
14
+ } catch (error) {
15
+ console.error(error)
16
+ }
17
+ } else {
18
+ // @ts-ignore (define in dts)
19
+ window.electron = electronAPI
20
+ // @ts-ignore (define in dts)
21
+ window.api = api
22
+ }
@@ -0,0 +1,17 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <title>Electron</title>
6
+ <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
7
+ <meta
8
+ http-equiv="Content-Security-Policy"
9
+ content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:"
10
+ />
11
+ </head>
12
+
13
+ <body>
14
+ <div id="root"></div>
15
+ <script type="module" src="/src/main.tsx"></script>
16
+ </body>
17
+ </html>
@@ -0,0 +1,35 @@
1
+ import Versions from './components/Versions'
2
+ import electronLogo from './assets/electron.svg'
3
+
4
+ function App(): React.JSX.Element {
5
+ const ipcHandle = (): void => window.electron.ipcRenderer.send('ping')
6
+
7
+ return (
8
+ <>
9
+ <img alt="logo" className="logo" src={electronLogo} />
10
+ <div className="creator">Powered by electron-vite</div>
11
+ <div className="text">
12
+ Build an Electron app with <span className="react">React</span>
13
+ &nbsp;and <span className="ts">TypeScript</span>
14
+ </div>
15
+ <p className="tip">
16
+ Please try pressing <code>F12</code> to open the devTool
17
+ </p>
18
+ <div className="actions">
19
+ <div className="action">
20
+ <a href="https://electron-vite.org/" target="_blank" rel="noreferrer">
21
+ Documentation
22
+ </a>
23
+ </div>
24
+ <div className="action">
25
+ <a target="_blank" rel="noreferrer" onClick={ipcHandle}>
26
+ Send IPC
27
+ </a>
28
+ </div>
29
+ </div>
30
+ <Versions></Versions>
31
+ </>
32
+ )
33
+ }
34
+
35
+ export default App
@@ -0,0 +1,67 @@
1
+ :root {
2
+ --ev-c-white: #ffffff;
3
+ --ev-c-white-soft: #f8f8f8;
4
+ --ev-c-white-mute: #f2f2f2;
5
+
6
+ --ev-c-black: #1b1b1f;
7
+ --ev-c-black-soft: #222222;
8
+ --ev-c-black-mute: #282828;
9
+
10
+ --ev-c-gray-1: #515c67;
11
+ --ev-c-gray-2: #414853;
12
+ --ev-c-gray-3: #32363f;
13
+
14
+ --ev-c-text-1: rgba(255, 255, 245, 0.86);
15
+ --ev-c-text-2: rgba(235, 235, 245, 0.6);
16
+ --ev-c-text-3: rgba(235, 235, 245, 0.38);
17
+
18
+ --ev-button-alt-border: transparent;
19
+ --ev-button-alt-text: var(--ev-c-text-1);
20
+ --ev-button-alt-bg: var(--ev-c-gray-3);
21
+ --ev-button-alt-hover-border: transparent;
22
+ --ev-button-alt-hover-text: var(--ev-c-text-1);
23
+ --ev-button-alt-hover-bg: var(--ev-c-gray-2);
24
+ }
25
+
26
+ :root {
27
+ --color-background: var(--ev-c-black);
28
+ --color-background-soft: var(--ev-c-black-soft);
29
+ --color-background-mute: var(--ev-c-black-mute);
30
+
31
+ --color-text: var(--ev-c-text-1);
32
+ }
33
+
34
+ *,
35
+ *::before,
36
+ *::after {
37
+ box-sizing: border-box;
38
+ margin: 0;
39
+ font-weight: normal;
40
+ }
41
+
42
+ ul {
43
+ list-style: none;
44
+ }
45
+
46
+ body {
47
+ min-height: 100vh;
48
+ color: var(--color-text);
49
+ background: var(--color-background);
50
+ line-height: 1.6;
51
+ font-family:
52
+ Inter,
53
+ -apple-system,
54
+ BlinkMacSystemFont,
55
+ 'Segoe UI',
56
+ Roboto,
57
+ Oxygen,
58
+ Ubuntu,
59
+ Cantarell,
60
+ 'Fira Sans',
61
+ 'Droid Sans',
62
+ 'Helvetica Neue',
63
+ sans-serif;
64
+ text-rendering: optimizeLegibility;
65
+ -webkit-font-smoothing: antialiased;
66
+ -moz-osx-font-smoothing: grayscale;
67
+ }
@@ -0,0 +1,10 @@
1
+ <svg viewBox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="64" cy="64" r="64" fill="#2F3242"/>
3
+ <ellipse cx="63.9835" cy="23.2036" rx="4.48794" ry="4.495" stroke="#A2ECFB" stroke-width="3.6" stroke-linecap="round"/>
4
+ <path d="M51.3954 39.5028C52.3733 39.6812 53.3108 39.033 53.4892 38.055C53.6676 37.0771 53.0194 36.1396 52.0414 35.9612L51.3954 39.5028ZM28.6153 43.5751L30.1748 44.4741L30.1748 44.4741L28.6153 43.5751ZM28.9393 60.9358C29.4332 61.7985 30.5329 62.0976 31.3957 61.6037C32.2585 61.1098 32.5575 60.0101 32.0636 59.1473L28.9393 60.9358ZM37.6935 66.7457C37.025 66.01 35.8866 65.9554 35.1508 66.6239C34.415 67.2924 34.3605 68.4308 35.029 69.1666L37.6935 66.7457ZM53.7489 81.7014L52.8478 83.2597L53.7489 81.7014ZM96.9206 89.515C97.7416 88.9544 97.9526 87.8344 97.3919 87.0135C96.8313 86.1925 95.7113 85.9815 94.8904 86.5422L96.9206 89.515ZM52.0414 35.9612C46.4712 34.9451 41.2848 34.8966 36.9738 35.9376C32.6548 36.9806 29.0841 39.1576 27.0559 42.6762L30.1748 44.4741C31.5693 42.0549 34.1448 40.3243 37.8188 39.4371C41.5009 38.5479 46.1547 38.5468 51.3954 39.5028L52.0414 35.9612ZM27.0559 42.6762C24.043 47.9029 25.2781 54.5399 28.9393 60.9358L32.0636 59.1473C28.6579 53.1977 28.1088 48.0581 30.1748 44.4741L27.0559 42.6762ZM35.029 69.1666C39.6385 74.24 45.7158 79.1355 52.8478 83.2597L54.6499 80.1432C47.8081 76.1868 42.0298 71.5185 37.6935 66.7457L35.029 69.1666ZM52.8478 83.2597C61.344 88.1726 70.0465 91.2445 77.7351 92.3608C85.359 93.4677 92.2744 92.6881 96.9206 89.515L94.8904 86.5422C91.3255 88.9767 85.4902 89.849 78.2524 88.7982C71.0793 87.7567 62.809 84.8612 54.6499 80.1432L52.8478 83.2597ZM105.359 84.9077C105.359 81.4337 102.546 78.6127 99.071 78.6127V82.2127C100.553 82.2127 101.759 83.4166 101.759 84.9077H105.359ZM99.071 78.6127C95.5956 78.6127 92.7831 81.4337 92.7831 84.9077H96.3831C96.3831 83.4166 97.5892 82.2127 99.071 82.2127V78.6127ZM92.7831 84.9077C92.7831 88.3817 95.5956 91.2027 99.071 91.2027V87.6027C97.5892 87.6027 96.3831 86.3988 96.3831 84.9077H92.7831ZM99.071 91.2027C102.546 91.2027 105.359 88.3817 105.359 84.9077H101.759C101.759 86.3988 100.553 87.6027 99.071 87.6027V91.2027Z" fill="#A2ECFB"/>
5
+ <path d="M91.4873 65.382C90.8456 66.1412 90.9409 67.2769 91.7002 67.9186C92.4594 68.5603 93.5951 68.465 94.2368 67.7058L91.4873 65.382ZM99.3169 43.6354L97.7574 44.5344L99.3169 43.6354ZM84.507 35.2412C83.513 35.2282 82.6967 36.0236 82.6838 37.0176C82.6708 38.0116 83.4661 38.8279 84.4602 38.8409L84.507 35.2412ZM74.9407 39.8801C75.9127 39.6716 76.5315 38.7145 76.323 37.7425C76.1144 36.7706 75.1573 36.1517 74.1854 36.3603L74.9407 39.8801ZM53.7836 46.3728L54.6847 47.931L53.7836 46.3728ZM25.5491 80.9047C25.6932 81.8883 26.6074 82.5688 27.5911 82.4247C28.5747 82.2806 29.2552 81.3664 29.1111 80.3828L25.5491 80.9047ZM94.2368 67.7058C97.8838 63.3907 100.505 58.927 101.752 54.678C103.001 50.4213 102.9 46.2472 100.876 42.7365L97.7574 44.5344C99.1494 46.9491 99.3603 50.0419 98.2974 53.6644C97.2323 57.2945 94.9184 61.3223 91.4873 65.382L94.2368 67.7058ZM100.876 42.7365C97.9119 37.5938 91.7082 35.335 84.507 35.2412L84.4602 38.8409C91.1328 38.9278 95.7262 41.0106 97.7574 44.5344L100.876 42.7365ZM74.1854 36.3603C67.4362 37.8086 60.0878 40.648 52.8826 44.8146L54.6847 47.931C61.5972 43.9338 68.5948 41.2419 74.9407 39.8801L74.1854 36.3603ZM52.8826 44.8146C44.1366 49.872 36.9669 56.0954 32.1491 62.3927C27.3774 68.63 24.7148 75.2115 25.5491 80.9047L29.1111 80.3828C28.4839 76.1026 30.4747 70.5062 35.0084 64.5802C39.496 58.7143 46.2839 52.7889 54.6847 47.931L52.8826 44.8146Z" fill="#A2ECFB"/>
6
+ <path d="M49.0825 87.2295C48.7478 86.2934 47.7176 85.8059 46.7816 86.1406C45.8455 86.4753 45.358 87.5055 45.6927 88.4416L49.0825 87.2295ZM78.5635 96.4256C79.075 95.5732 78.7988 94.4675 77.9464 93.9559C77.0941 93.4443 75.9884 93.7205 75.4768 94.5729L78.5635 96.4256ZM79.5703 85.1795C79.2738 86.1284 79.8027 87.1379 80.7516 87.4344C81.7004 87.7308 82.71 87.2019 83.0064 86.2531L79.5703 85.1795ZM84.3832 64.0673H82.5832H84.3832ZM69.156 22.5301C68.2477 22.1261 67.1838 22.535 66.7799 23.4433C66.3759 24.3517 66.7848 25.4155 67.6931 25.8194L69.156 22.5301ZM45.6927 88.4416C47.5994 93.7741 50.1496 98.2905 53.2032 101.505C56.2623 104.724 59.9279 106.731 63.9835 106.731V103.131C61.1984 103.131 58.4165 101.765 55.8131 99.0249C53.2042 96.279 50.8768 92.2477 49.0825 87.2295L45.6927 88.4416ZM63.9835 106.731C69.8694 106.731 74.8921 102.542 78.5635 96.4256L75.4768 94.5729C72.0781 100.235 68.0122 103.131 63.9835 103.131V106.731ZM83.0064 86.2531C85.0269 79.7864 86.1832 72.1831 86.1832 64.0673H82.5832C82.5832 71.8536 81.4723 79.0919 79.5703 85.1795L83.0064 86.2531ZM86.1832 64.0673C86.1832 54.1144 84.4439 44.922 81.4961 37.6502C78.5748 30.4436 74.3436 24.8371 69.156 22.5301L67.6931 25.8194C71.6364 27.5731 75.3846 32.1564 78.1598 39.0026C80.9086 45.7836 82.5832 54.507 82.5832 64.0673H86.1832Z" fill="#A2ECFB"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M103.559 84.9077C103.559 82.4252 101.55 80.4127 99.071 80.4127C96.5924 80.4127 94.5831 82.4252 94.5831 84.9077C94.5831 87.3902 96.5924 89.4027 99.071 89.4027C101.55 89.4027 103.559 87.3902 103.559 84.9077V84.9077Z" stroke="#A2ECFB" stroke-width="3.6" stroke-linecap="round"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M28.8143 89.4027C31.2929 89.4027 33.3023 87.3902 33.3023 84.9077C33.3023 82.4252 31.2929 80.4127 28.8143 80.4127C26.3357 80.4127 24.3264 82.4252 24.3264 84.9077C24.3264 87.3902 26.3357 89.4027 28.8143 89.4027V89.4027V89.4027Z" stroke="#A2ECFB" stroke-width="3.6" stroke-linecap="round"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M64.8501 68.0857C62.6341 68.5652 60.451 67.1547 59.9713 64.9353C59.4934 62.7159 60.9007 60.5293 63.1167 60.0489C65.3326 59.5693 67.5157 60.9798 67.9954 63.1992C68.4742 65.4186 67.066 67.6052 64.8501 68.0857Z" fill="#A2ECFB"/>
10
+ </svg>