@reliverse/dler 1.7.153 → 2.0.1

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 (937) hide show
  1. package/dist/cli.d.ts +2 -0
  2. package/dist/cli.js +3 -0
  3. package/dist/cmds/build/cmd.d.ts +2 -0
  4. package/dist/cmds/build/cmd.js +564 -0
  5. package/dist/cmds/clean/cmd.d.ts +2 -0
  6. package/dist/cmds/clean/cmd.js +146 -0
  7. package/dist/cmds/clean/impl.d.ts +2 -0
  8. package/dist/cmds/clean/impl.js +627 -0
  9. package/dist/cmds/clean/presets.d.ts +10 -0
  10. package/dist/cmds/clean/presets.js +112 -0
  11. package/dist/cmds/clean/types.d.ts +62 -0
  12. package/dist/cmds/init/cmd.d.ts +3 -0
  13. package/dist/cmds/init/cmd.js +56 -0
  14. package/dist/cmds/init/impl/config.d.ts +45 -0
  15. package/dist/cmds/init/impl/config.js +99 -0
  16. package/dist/cmds/init/impl/generators.d.ts +6 -0
  17. package/dist/cmds/init/impl/generators.js +178 -0
  18. package/dist/cmds/init/impl/prompts.d.ts +2 -0
  19. package/dist/cmds/init/impl/prompts.js +98 -0
  20. package/dist/cmds/init/impl/types.d.ts +22 -0
  21. package/dist/cmds/init/impl/utils.d.ts +4 -0
  22. package/dist/cmds/init/impl/utils.js +11 -0
  23. package/dist/cmds/init/impl/validators.d.ts +4 -0
  24. package/dist/cmds/init/impl/validators.js +42 -0
  25. package/dist/cmds/integrate/cmd.d.ts +3 -0
  26. package/dist/cmds/integrate/cmd.js +70 -0
  27. package/dist/cmds/integrate/impl.d.ts +7 -0
  28. package/dist/cmds/integrate/impl.js +127 -0
  29. package/dist/cmds/integrate/integrations/base.d.ts +13 -0
  30. package/dist/cmds/integrate/integrations/base.js +41 -0
  31. package/dist/cmds/integrate/integrations/nextjs.d.ts +16 -0
  32. package/dist/cmds/integrate/integrations/nextjs.js +167 -0
  33. package/dist/cmds/integrate/integrations/registry.d.ts +7 -0
  34. package/dist/cmds/integrate/integrations/registry.js +31 -0
  35. package/dist/cmds/integrate/integrations/ultracite.d.ts +11 -0
  36. package/dist/cmds/integrate/integrations/ultracite.js +40 -0
  37. package/dist/cmds/integrate/types.d.ts +39 -0
  38. package/dist/cmds/integrate/utils/biome.d.ts +4 -0
  39. package/dist/cmds/integrate/utils/biome.js +140 -0
  40. package/dist/cmds/integrate/utils/context.d.ts +3 -0
  41. package/dist/cmds/integrate/utils/context.js +111 -0
  42. package/dist/cmds/integrate/utils/temp.d.ts +3 -0
  43. package/dist/cmds/integrate/utils/temp.js +36 -0
  44. package/dist/cmds/perf/analysis/bundle.d.ts +20 -0
  45. package/dist/cmds/perf/analysis/bundle.js +225 -0
  46. package/dist/cmds/perf/analysis/filesystem.d.ts +27 -0
  47. package/dist/cmds/perf/analysis/filesystem.js +246 -0
  48. package/dist/cmds/perf/analysis/monorepo.d.ts +29 -0
  49. package/dist/cmds/perf/analysis/monorepo.js +307 -0
  50. package/dist/cmds/perf/benchmarks/command.d.ts +21 -0
  51. package/dist/cmds/perf/benchmarks/command.js +162 -0
  52. package/dist/cmds/perf/benchmarks/memory.d.ts +41 -0
  53. package/dist/cmds/perf/benchmarks/memory.js +169 -0
  54. package/dist/cmds/perf/benchmarks/runner.d.ts +22 -0
  55. package/dist/cmds/perf/benchmarks/runner.js +157 -0
  56. package/dist/cmds/perf/cmd.d.ts +2 -0
  57. package/dist/cmds/perf/cmd.js +238 -0
  58. package/dist/cmds/perf/impl.d.ts +24 -0
  59. package/dist/cmds/perf/impl.js +304 -0
  60. package/dist/cmds/perf/reporters/console.d.ts +12 -0
  61. package/dist/cmds/perf/reporters/console.js +257 -0
  62. package/dist/cmds/perf/reporters/html.d.ts +27 -0
  63. package/dist/cmds/perf/reporters/html.js +881 -0
  64. package/dist/cmds/perf/reporters/json.d.ts +9 -0
  65. package/dist/cmds/perf/reporters/json.js +32 -0
  66. package/dist/cmds/perf/types.d.ts +184 -0
  67. package/dist/cmds/perf/utils/cache.d.ts +23 -0
  68. package/dist/cmds/perf/utils/cache.js +171 -0
  69. package/dist/cmds/perf/utils/formatter.d.ts +17 -0
  70. package/dist/cmds/perf/utils/formatter.js +134 -0
  71. package/dist/cmds/perf/utils/stats.d.ts +15 -0
  72. package/dist/cmds/perf/utils/stats.js +101 -0
  73. package/dist/cmds/publish/cmd.d.ts +3 -0
  74. package/dist/cmds/publish/cmd.js +189 -0
  75. package/dist/cmds/shell/cmd.d.ts +3 -0
  76. package/dist/cmds/shell/cmd.js +50 -0
  77. package/dist/cmds/tsc/cache.d.ts +27 -0
  78. package/dist/cmds/tsc/cache.js +160 -0
  79. package/dist/cmds/tsc/cmd.d.ts +2 -0
  80. package/dist/cmds/tsc/cmd.js +111 -0
  81. package/dist/cmds/tsc/impl.d.ts +41 -0
  82. package/dist/cmds/tsc/impl.js +572 -0
  83. package/dist/cmds/tsc/types.d.ts +57 -0
  84. package/package.json +14 -145
  85. package/src/cli.ts +8 -0
  86. package/src/cmds/build/cmd.ts +582 -0
  87. package/src/cmds/clean/cmd.ts +166 -0
  88. package/src/cmds/clean/impl.ts +900 -0
  89. package/src/cmds/clean/presets.ts +158 -0
  90. package/src/cmds/clean/types.ts +71 -0
  91. package/src/cmds/init/cmd.ts +68 -0
  92. package/src/cmds/init/impl/config.ts +105 -0
  93. package/src/cmds/init/impl/generators.ts +220 -0
  94. package/src/cmds/init/impl/prompts.ts +137 -0
  95. package/src/cmds/init/impl/types.ts +25 -0
  96. package/src/cmds/init/impl/utils.ts +17 -0
  97. package/src/cmds/init/impl/validators.ts +55 -0
  98. package/src/cmds/integrate/cmd.ts +82 -0
  99. package/src/cmds/integrate/impl.ts +204 -0
  100. package/src/cmds/integrate/integrations/base.ts +69 -0
  101. package/src/cmds/integrate/integrations/nextjs.ts +227 -0
  102. package/src/cmds/integrate/integrations/registry.ts +45 -0
  103. package/src/cmds/integrate/integrations/ultracite.ts +53 -0
  104. package/src/cmds/integrate/types.ts +48 -0
  105. package/src/cmds/integrate/utils/biome.ts +173 -0
  106. package/src/cmds/integrate/utils/context.ts +148 -0
  107. package/src/cmds/integrate/utils/temp.ts +47 -0
  108. package/src/cmds/perf/analysis/bundle.ts +311 -0
  109. package/src/cmds/perf/analysis/filesystem.ts +324 -0
  110. package/src/cmds/perf/analysis/monorepo.ts +439 -0
  111. package/src/cmds/perf/benchmarks/command.ts +230 -0
  112. package/src/cmds/perf/benchmarks/memory.ts +249 -0
  113. package/src/cmds/perf/benchmarks/runner.ts +220 -0
  114. package/src/cmds/perf/cmd.ts +285 -0
  115. package/src/cmds/perf/impl.ts +411 -0
  116. package/src/cmds/perf/reporters/console.ts +331 -0
  117. package/src/cmds/perf/reporters/html.ts +984 -0
  118. package/src/cmds/perf/reporters/json.ts +42 -0
  119. package/src/cmds/perf/types.ts +220 -0
  120. package/src/cmds/perf/utils/cache.ts +234 -0
  121. package/src/cmds/perf/utils/formatter.ts +190 -0
  122. package/src/cmds/perf/utils/stats.ts +153 -0
  123. package/src/cmds/publish/cmd.ts +215 -0
  124. package/src/cmds/shell/cmd.ts +61 -0
  125. package/src/cmds/tsc/cache.ts +237 -0
  126. package/src/cmds/tsc/cmd.ts +139 -0
  127. package/src/cmds/tsc/impl.ts +855 -0
  128. package/src/cmds/tsc/types.ts +66 -0
  129. package/tsconfig.json +9 -0
  130. package/LICENSE +0 -21
  131. package/LICENSES +0 -22
  132. package/README.md +0 -36
  133. package/bin/impl/add/add-global/install-impl.d.ts +0 -38
  134. package/bin/impl/add/add-global/install-impl.js +0 -254
  135. package/bin/impl/add/add-local/api/orpc.d.ts +0 -1
  136. package/bin/impl/add/add-local/api/orpc.js +0 -4
  137. package/bin/impl/add/add-local/api/trpc.d.ts +0 -1
  138. package/bin/impl/add/add-local/api/trpc.js +0 -4
  139. package/bin/impl/add/add-local/auth/better-auth.d.ts +0 -1
  140. package/bin/impl/add/add-local/auth/better-auth.js +0 -4
  141. package/bin/impl/add/add-local/auth/clerk-auth.d.ts +0 -1
  142. package/bin/impl/add/add-local/auth/clerk-auth.js +0 -4
  143. package/bin/impl/add/add-local/auth/next-auth.d.ts +0 -1
  144. package/bin/impl/add/add-local/auth/next-auth.js +0 -4
  145. package/bin/impl/add/add-local/core/deps.d.ts +0 -8
  146. package/bin/impl/add/add-local/core/deps.js +0 -19
  147. package/bin/impl/add/add-local/core/prompts.d.ts +0 -4
  148. package/bin/impl/add/add-local/core/prompts.js +0 -12
  149. package/bin/impl/add/add-local/core/templates.d.ts +0 -29
  150. package/bin/impl/add/add-local/core/templates.js +0 -85
  151. package/bin/impl/add/add-local/core/types.d.ts +0 -6
  152. package/bin/impl/add/add-local/db/drizzle.d.ts +0 -1
  153. package/bin/impl/add/add-local/db/drizzle.js +0 -4
  154. package/bin/impl/add/add-local/db/prisma.d.ts +0 -1
  155. package/bin/impl/add/add-local/db/prisma.js +0 -4
  156. package/bin/impl/add/add-local/files/uploadthing.d.ts +0 -1
  157. package/bin/impl/add/add-local/files/uploadthing.js +0 -4
  158. package/bin/impl/add/add-local/form/react-hook-form.d.ts +0 -1
  159. package/bin/impl/add/add-local/form/react-hook-form.js +0 -4
  160. package/bin/impl/add/add-local/form/tanstack-form.d.ts +0 -1
  161. package/bin/impl/add/add-local/form/tanstack-form.js +0 -4
  162. package/bin/impl/add/add-local/fws/browser/plasmo.d.ts +0 -1
  163. package/bin/impl/add/add-local/fws/browser/plasmo.js +0 -4
  164. package/bin/impl/add/add-local/fws/browser/wxt.d.ts +0 -1
  165. package/bin/impl/add/add-local/fws/browser/wxt.js +0 -4
  166. package/bin/impl/add/add-local/fws/configs/eslint-config.d.ts +0 -1
  167. package/bin/impl/add/add-local/fws/configs/eslint-config.js +0 -4
  168. package/bin/impl/add/add-local/fws/native/lynx.d.ts +0 -1
  169. package/bin/impl/add/add-local/fws/native/lynx.js +0 -4
  170. package/bin/impl/add/add-local/fws/native/react.d.ts +0 -1
  171. package/bin/impl/add/add-local/fws/native/react.js +0 -4
  172. package/bin/impl/add/add-local/fws/plugins/eslint-plugin.d.ts +0 -1
  173. package/bin/impl/add/add-local/fws/plugins/eslint-plugin.js +0 -4
  174. package/bin/impl/add/add-local/fws/vscode/vscode-ext.d.ts +0 -1
  175. package/bin/impl/add/add-local/fws/vscode/vscode-ext.js +0 -4
  176. package/bin/impl/add/add-local/fws/web/astro.d.ts +0 -1
  177. package/bin/impl/add/add-local/fws/web/astro.js +0 -4
  178. package/bin/impl/add/add-local/fws/web/jstack.d.ts +0 -1
  179. package/bin/impl/add/add-local/fws/web/jstack.js +0 -4
  180. package/bin/impl/add/add-local/fws/web/next.d.ts +0 -1
  181. package/bin/impl/add/add-local/fws/web/next.js +0 -4
  182. package/bin/impl/add/add-local/fws/web/start.d.ts +0 -1
  183. package/bin/impl/add/add-local/fws/web/start.js +0 -4
  184. package/bin/impl/add/add-local/fws/web/vite.d.ts +0 -1
  185. package/bin/impl/add/add-local/fws/web/vite.js +0 -4
  186. package/bin/impl/add/add-local/i18n/gt-libs.d.ts +0 -1
  187. package/bin/impl/add/add-local/i18n/gt-libs.js +0 -4
  188. package/bin/impl/add/add-local/i18n/languine.d.ts +0 -1
  189. package/bin/impl/add/add-local/i18n/languine.js +0 -19
  190. package/bin/impl/add/add-local/i18n/next-intl.d.ts +0 -1
  191. package/bin/impl/add/add-local/i18n/next-intl.js +0 -4
  192. package/bin/impl/add/add-local/llm/vercel.d.ts +0 -1
  193. package/bin/impl/add/add-local/llm/vercel.js +0 -4
  194. package/bin/impl/add/add-local/mail/resend.d.ts +0 -1
  195. package/bin/impl/add/add-local/mail/resend.js +0 -4
  196. package/bin/impl/add/add-local/pay/polar.d.ts +0 -1
  197. package/bin/impl/add/add-local/pay/polar.js +0 -4
  198. package/bin/impl/add/add-local/pay/stripe.d.ts +0 -1
  199. package/bin/impl/add/add-local/pay/stripe.js +0 -4
  200. package/bin/impl/add/add-local/tool/biome.d.ts +0 -1
  201. package/bin/impl/add/add-local/tool/biome.js +0 -4
  202. package/bin/impl/add/add-local/tool/eslint.d.ts +0 -1
  203. package/bin/impl/add/add-local/tool/eslint.js +0 -4
  204. package/bin/impl/add/add-local/tool/oxlint.d.ts +0 -4
  205. package/bin/impl/add/add-local/tool/oxlint.js +0 -4
  206. package/bin/impl/add/add-local/ui/21st.d.ts +0 -4
  207. package/bin/impl/add/add-local/ui/21st.js +0 -4
  208. package/bin/impl/add/add-local/ui/shadcn.d.ts +0 -1
  209. package/bin/impl/add/add-local/ui/shadcn.js +0 -4
  210. package/bin/impl/add/add-local/ui/tailwind.d.ts +0 -1
  211. package/bin/impl/add/add-local/ui/tailwind.js +0 -4
  212. package/bin/impl/add/add-rule/add-rule-const.d.ts +0 -11
  213. package/bin/impl/add/add-rule/add-rule-const.js +0 -32
  214. package/bin/impl/add/add-rule/add-rule-impl.d.ts +0 -21
  215. package/bin/impl/add/add-rule/add-rule-impl.js +0 -300
  216. package/bin/impl/add/add-rule/add-rule-types.d.ts +0 -18
  217. package/bin/impl/add/add-rule/add-rule-types.js +0 -0
  218. package/bin/impl/add/add-rule/add-rule-utils.d.ts +0 -61
  219. package/bin/impl/add/add-rule/add-rule-utils.js +0 -324
  220. package/bin/impl/ai/ai-impl/ai-auth.d.ts +0 -10
  221. package/bin/impl/ai/ai-impl/ai-auth.js +0 -59
  222. package/bin/impl/ai/ai-impl/ai-chat.d.ts +0 -5
  223. package/bin/impl/ai/ai-impl/ai-chat.js +0 -93
  224. package/bin/impl/ai/ai-impl/ai-const.d.ts +0 -7
  225. package/bin/impl/ai/ai-impl/ai-const.js +0 -14
  226. package/bin/impl/ai/ai-impl/ai-tools.d.ts +0 -5
  227. package/bin/impl/ai/ai-impl/ai-tools.js +0 -32
  228. package/bin/impl/ai/ai-impl/ai-types.d.ts +0 -12
  229. package/bin/impl/ai/ai-impl/ai-types.js +0 -0
  230. package/bin/impl/ai/ai-impl/code/code-mod.d.ts +0 -6
  231. package/bin/impl/ai/ai-impl/code/code-mod.js +0 -164
  232. package/bin/impl/ai/ai-impl/mcp/mcp-mod.d.ts +0 -5
  233. package/bin/impl/ai/ai-impl/mcp/mcp-mod.js +0 -125
  234. package/bin/impl/ai/ai-impl/relinter/relinter.d.ts +0 -27
  235. package/bin/impl/ai/ai-impl/relinter/relinter.js +0 -309
  236. package/bin/impl/ai/ai-menu.d.ts +0 -3
  237. package/bin/impl/ai/ai-menu.js +0 -40
  238. package/bin/impl/auth/consts.d.ts +0 -2
  239. package/bin/impl/auth/consts.js +0 -2
  240. package/bin/impl/auth/generators/auth-config.d.ts +0 -32
  241. package/bin/impl/auth/generators/auth-config.js +0 -533
  242. package/bin/impl/auth/generators/drizzle.d.ts +0 -3
  243. package/bin/impl/auth/generators/drizzle.js +0 -137
  244. package/bin/impl/auth/generators/index.d.ts +0 -16
  245. package/bin/impl/auth/generators/index.js +0 -18
  246. package/bin/impl/auth/generators/kysely.d.ts +0 -2
  247. package/bin/impl/auth/generators/kysely.js +0 -9
  248. package/bin/impl/auth/generators/prisma.d.ts +0 -2
  249. package/bin/impl/auth/generators/prisma.js +0 -154
  250. package/bin/impl/auth/generators/types.d.ts +0 -11
  251. package/bin/impl/auth/impl/init.d.ts +0 -183
  252. package/bin/impl/auth/impl/init.js +0 -367
  253. package/bin/impl/auth/impl/migrate.d.ts +0 -6
  254. package/bin/impl/auth/impl/migrate.js +0 -90
  255. package/bin/impl/auth/impl/types.d.ts +0 -12
  256. package/bin/impl/auth/utils/add-svelte-kit-env-modules.d.ts +0 -3
  257. package/bin/impl/auth/utils/add-svelte-kit-env-modules.js +0 -91
  258. package/bin/impl/auth/utils/check-package-managers.d.ts +0 -4
  259. package/bin/impl/auth/utils/check-package-managers.js +0 -20
  260. package/bin/impl/auth/utils/format-ms.d.ts +0 -4
  261. package/bin/impl/auth/utils/format-ms.js +0 -11
  262. package/bin/impl/auth/utils/generate-secret.d.ts +0 -1
  263. package/bin/impl/auth/utils/generate-secret.js +0 -2
  264. package/bin/impl/auth/utils/get-config.d.ts +0 -8
  265. package/bin/impl/auth/utils/get-config.js +0 -169
  266. package/bin/impl/auth/utils/get-package-info.d.ts +0 -1
  267. package/bin/impl/auth/utils/get-package-info.js +0 -6
  268. package/bin/impl/auth/utils/get-tsconfig-info.d.ts +0 -2
  269. package/bin/impl/auth/utils/get-tsconfig-info.js +0 -15
  270. package/bin/impl/auth/utils/install-dependencies.d.ts +0 -5
  271. package/bin/impl/auth/utils/install-dependencies.js +0 -34
  272. package/bin/impl/build/binary-flow.d.ts +0 -6
  273. package/bin/impl/build/binary-flow.js +0 -173
  274. package/bin/impl/build/build-library.d.ts +0 -42
  275. package/bin/impl/build/build-library.js +0 -626
  276. package/bin/impl/build/build-regular.d.ts +0 -20
  277. package/bin/impl/build/build-regular.js +0 -398
  278. package/bin/impl/build/impl.d.ts +0 -25
  279. package/bin/impl/build/impl.js +0 -264
  280. package/bin/impl/build/library-flow.d.ts +0 -26
  281. package/bin/impl/build/library-flow.js +0 -252
  282. package/bin/impl/build/postbuild.d.ts +0 -3
  283. package/bin/impl/build/postbuild.js +0 -173
  284. package/bin/impl/build/ppb-utils.d.ts +0 -16
  285. package/bin/impl/build/ppb-utils.js +0 -99
  286. package/bin/impl/build/prebuild.d.ts +0 -2
  287. package/bin/impl/build/prebuild.js +0 -108
  288. package/bin/impl/build/providers/auto.d.ts +0 -3
  289. package/bin/impl/build/providers/auto.js +0 -105
  290. package/bin/impl/build/providers/build.d.ts +0 -8
  291. package/bin/impl/build/providers/build.js +0 -351
  292. package/bin/impl/build/providers/bun/bun-build.d.ts +0 -0
  293. package/bin/impl/build/providers/bun/bun-build.js +0 -0
  294. package/bin/impl/build/providers/bun/single-file.d.ts +0 -25
  295. package/bin/impl/build/providers/bun/single-file.js +0 -146
  296. package/bin/impl/build/providers/copy/copy-mod.d.ts +0 -2
  297. package/bin/impl/build/providers/copy/copy-mod.js +0 -49
  298. package/bin/impl/build/providers/mkdist/mkdist-impl/loader.d.ts +0 -4
  299. package/bin/impl/build/providers/mkdist/mkdist-impl/loader.js +0 -26
  300. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/js.d.ts +0 -2
  301. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/js.js +0 -50
  302. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/loaders-mod.d.ts +0 -12
  303. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/loaders-mod.js +0 -30
  304. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/postcss.d.ts +0 -3
  305. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/postcss.js +0 -28
  306. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/sass.d.ts +0 -2
  307. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/sass.js +0 -31
  308. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/vue.d.ts +0 -17
  309. package/bin/impl/build/providers/mkdist/mkdist-impl/loaders/vue.js +0 -145
  310. package/bin/impl/build/providers/mkdist/mkdist-impl/make.d.ts +0 -11
  311. package/bin/impl/build/providers/mkdist/mkdist-impl/make.js +0 -192
  312. package/bin/impl/build/providers/mkdist/mkdist-impl/utils/dts.d.ts +0 -11
  313. package/bin/impl/build/providers/mkdist/mkdist-impl/utils/dts.js +0 -94
  314. package/bin/impl/build/providers/mkdist/mkdist-impl/utils/fs.d.ts +0 -1
  315. package/bin/impl/build/providers/mkdist/mkdist-impl/utils/fs.js +0 -15
  316. package/bin/impl/build/providers/mkdist/mkdist-impl/utils/vue-dts.d.ts +0 -3
  317. package/bin/impl/build/providers/mkdist/mkdist-impl/utils/vue-dts.js +0 -175
  318. package/bin/impl/build/providers/mkdist/mkdist-mod.d.ts +0 -2
  319. package/bin/impl/build/providers/mkdist/mkdist-mod.js +0 -92
  320. package/bin/impl/build/providers/rollup/build.d.ts +0 -2
  321. package/bin/impl/build/providers/rollup/build.js +0 -100
  322. package/bin/impl/build/providers/rollup/config.d.ts +0 -2
  323. package/bin/impl/build/providers/rollup/config.js +0 -112
  324. package/bin/impl/build/providers/rollup/plugins/cjs.d.ts +0 -4
  325. package/bin/impl/build/providers/rollup/plugins/cjs.js +0 -47
  326. package/bin/impl/build/providers/rollup/plugins/esbuild.d.ts +0 -3
  327. package/bin/impl/build/providers/rollup/plugins/esbuild.js +0 -91
  328. package/bin/impl/build/providers/rollup/plugins/json.d.ts +0 -3
  329. package/bin/impl/build/providers/rollup/plugins/json.js +0 -17
  330. package/bin/impl/build/providers/rollup/plugins/raw.d.ts +0 -8
  331. package/bin/impl/build/providers/rollup/plugins/raw.js +0 -20
  332. package/bin/impl/build/providers/rollup/plugins/shebang.d.ts +0 -5
  333. package/bin/impl/build/providers/rollup/plugins/shebang.js +0 -42
  334. package/bin/impl/build/providers/rollup/stub.d.ts +0 -2
  335. package/bin/impl/build/providers/rollup/stub.js +0 -125
  336. package/bin/impl/build/providers/rollup/utils.d.ts +0 -5
  337. package/bin/impl/build/providers/rollup/utils.js +0 -38
  338. package/bin/impl/build/providers/rollup/watch.d.ts +0 -2
  339. package/bin/impl/build/providers/rollup/watch.js +0 -30
  340. package/bin/impl/build/providers/untyped/untyped-mod.d.ts +0 -2
  341. package/bin/impl/build/providers/untyped/untyped-mod.js +0 -111
  342. package/bin/impl/build/providers/utils.d.ts +0 -19
  343. package/bin/impl/build/providers/utils.js +0 -148
  344. package/bin/impl/build/providers/validate.d.ts +0 -4
  345. package/bin/impl/build/providers/validate.js +0 -52
  346. package/bin/impl/build/regular-flow.d.ts +0 -10
  347. package/bin/impl/build/regular-flow.js +0 -246
  348. package/bin/impl/clone/firecrawl/firecrawl-mod.d.ts +0 -1
  349. package/bin/impl/clone/firecrawl/firecrawl-mod.js +0 -11
  350. package/bin/impl/cmod/cmod-impl.d.ts +0 -9
  351. package/bin/impl/cmod/cmod-impl.js +0 -21
  352. package/bin/impl/config/biome.d.ts +0 -2
  353. package/bin/impl/config/biome.js +0 -34
  354. package/bin/impl/config/comments.d.ts +0 -1
  355. package/bin/impl/config/comments.js +0 -57
  356. package/bin/impl/config/constants.d.ts +0 -45
  357. package/bin/impl/config/constants.js +0 -60
  358. package/bin/impl/config/content.d.ts +0 -14
  359. package/bin/impl/config/content.js +0 -15
  360. package/bin/impl/config/core.d.ts +0 -14
  361. package/bin/impl/config/core.js +0 -79
  362. package/bin/impl/config/create.d.ts +0 -35
  363. package/bin/impl/config/create.js +0 -274
  364. package/bin/impl/config/def-utils.d.ts +0 -6
  365. package/bin/impl/config/def-utils.js +0 -227
  366. package/bin/impl/config/detect.d.ts +0 -24
  367. package/bin/impl/config/detect.js +0 -371
  368. package/bin/impl/config/gen-cfg.d.ts +0 -3
  369. package/bin/impl/config/gen-cfg.js +0 -180
  370. package/bin/impl/config/load.d.ts +0 -15
  371. package/bin/impl/config/load.js +0 -87
  372. package/bin/impl/config/migrate.d.ts +0 -5
  373. package/bin/impl/config/migrate.js +0 -60
  374. package/bin/impl/config/path.d.ts +0 -11
  375. package/bin/impl/config/path.js +0 -28
  376. package/bin/impl/config/prepare.d.ts +0 -3
  377. package/bin/impl/config/prepare.js +0 -832
  378. package/bin/impl/config/prompts.d.ts +0 -5
  379. package/bin/impl/config/prompts.js +0 -12
  380. package/bin/impl/config/read.d.ts +0 -11
  381. package/bin/impl/config/read.js +0 -62
  382. package/bin/impl/config/repair.d.ts +0 -15
  383. package/bin/impl/config/repair.js +0 -101
  384. package/bin/impl/config/unstable.d.ts +0 -11
  385. package/bin/impl/config/unstable.js +0 -29
  386. package/bin/impl/config/update.d.ts +0 -10
  387. package/bin/impl/config/update.js +0 -145
  388. package/bin/impl/config/utils.d.ts +0 -17
  389. package/bin/impl/config/utils.js +0 -85
  390. package/bin/impl/conv/mod.d.ts +0 -26
  391. package/bin/impl/conv/mod.js +0 -193
  392. package/bin/impl/db/client.d.ts +0 -4
  393. package/bin/impl/db/client.js +0 -32
  394. package/bin/impl/db/config.d.ts +0 -2
  395. package/bin/impl/db/config.js +0 -59
  396. package/bin/impl/db/messages.d.ts +0 -13
  397. package/bin/impl/db/messages.js +0 -81
  398. package/bin/impl/db/schema.d.ts +0 -90
  399. package/bin/impl/db/schema.js +0 -9
  400. package/bin/impl/env/env-impl.d.ts +0 -1
  401. package/bin/impl/env/env-impl.js +0 -28
  402. package/bin/impl/get/get-core.d.ts +0 -3
  403. package/bin/impl/get/get-core.js +0 -453
  404. package/bin/impl/init/init-utils/init-impl.d.ts +0 -6
  405. package/bin/impl/init/init-utils/init-impl.js +0 -31
  406. package/bin/impl/init/init-utils/init-utils.d.ts +0 -35
  407. package/bin/impl/init/init-utils/init-utils.js +0 -255
  408. package/bin/impl/init/init-utils/mm-deprecated/editor-menu.d.ts +0 -4
  409. package/bin/impl/init/init-utils/mm-deprecated/editor-menu.js +0 -400
  410. package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleConstants.d.ts +0 -2
  411. package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleConstants.js +0 -36
  412. package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleSchema.d.ts +0 -1
  413. package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleSchema.js +0 -81
  414. package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleSchemaUtils.d.ts +0 -16
  415. package/bin/impl/init/mm-deprecated/drizzle/manageDrizzleSchemaUtils.js +0 -474
  416. package/bin/impl/init/mm-deprecated/editor-impl.d.ts +0 -1
  417. package/bin/impl/init/mm-deprecated/editor-impl.js +0 -153
  418. package/bin/impl/init/mm-deprecated/editor-mod.d.ts +0 -18
  419. package/bin/impl/init/mm-deprecated/editor-mod.js +0 -184
  420. package/bin/impl/init/mm-deprecated/feature-add.d.ts +0 -2
  421. package/bin/impl/init/mm-deprecated/feature-add.js +0 -591
  422. package/bin/impl/init/mm-deprecated/feature-rm.d.ts +0 -2
  423. package/bin/impl/init/mm-deprecated/feature-rm.js +0 -98
  424. package/bin/impl/init/mm-deprecated/shadcn/shadcn-mod.d.ts +0 -1
  425. package/bin/impl/init/mm-deprecated/shadcn/shadcn-mod.js +0 -87
  426. package/bin/impl/init/use-template/cp-impl.d.ts +0 -39
  427. package/bin/impl/init/use-template/cp-impl.js +0 -286
  428. package/bin/impl/init/use-template/cp-mod.d.ts +0 -31
  429. package/bin/impl/init/use-template/cp-mod.js +0 -233
  430. package/bin/impl/init/use-template/cp-modules/cli-main-modules/cli-menu-items/showCloneProjectMenu.d.ts +0 -11
  431. package/bin/impl/init/use-template/cp-modules/cli-main-modules/cli-menu-items/showCloneProjectMenu.js +0 -206
  432. package/bin/impl/init/use-template/cp-modules/cli-main-modules/modules/showAnykeyPrompt.d.ts +0 -1
  433. package/bin/impl/init/use-template/cp-modules/cli-main-modules/modules/showAnykeyPrompt.js +0 -9
  434. package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-impl.d.ts +0 -16
  435. package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-impl.js +0 -400
  436. package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-keys.d.ts +0 -17
  437. package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-keys.js +0 -142
  438. package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-mod.d.ts +0 -2
  439. package/bin/impl/init/use-template/cp-modules/compose-env-file/cef-mod.js +0 -167
  440. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/deploy.d.ts +0 -12
  441. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/deploy.js +0 -91
  442. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/gdp-mod.d.ts +0 -55
  443. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/gdp-mod.js +0 -449
  444. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/git.d.ts +0 -51
  445. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/git.js +0 -311
  446. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/github.d.ts +0 -8
  447. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/github.js +0 -113
  448. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/domainHelpers.d.ts +0 -1
  449. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/domainHelpers.js +0 -25
  450. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/handlePkgJsonScripts.d.ts +0 -1
  451. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/handlePkgJsonScripts.js +0 -52
  452. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/promptForDomain.d.ts +0 -4
  453. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/helpers/promptForDomain.js +0 -39
  454. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-git-github.d.ts +0 -8
  455. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-git-github.js +0 -75
  456. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-private-repo.d.ts +0 -12
  457. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-private-repo.js +0 -168
  458. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-repo-exists.d.ts +0 -10
  459. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/utils-repo-exists.js +0 -62
  460. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-api.d.ts +0 -10
  461. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-api.js +0 -36
  462. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-check.d.ts +0 -14
  463. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-check.js +0 -29
  464. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-config.d.ts +0 -27
  465. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-config.js +0 -104
  466. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-create.d.ts +0 -17
  467. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-create.js +0 -129
  468. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-deploy.d.ts +0 -20
  469. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-deploy.js +0 -151
  470. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-domain.d.ts +0 -5
  471. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-domain.js +0 -44
  472. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-env.d.ts +0 -3
  473. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-env.js +0 -58
  474. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-team.d.ts +0 -15
  475. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-team.js +0 -74
  476. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-types.d.ts +0 -28
  477. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-types.js +0 -0
  478. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-utils.d.ts +0 -26
  479. package/bin/impl/init/use-template/cp-modules/git-deploy-prompts/vercel/vercel-utils.js +0 -134
  480. package/bin/impl/inject/inject-impl-mod.d.ts +0 -112
  481. package/bin/impl/inject/inject-impl-mod.js +0 -716
  482. package/bin/impl/invoke/mod.d.ts +0 -59
  483. package/bin/impl/invoke/mod.js +0 -353
  484. package/bin/impl/login/login-impl.d.ts +0 -6
  485. package/bin/impl/login/login-impl.js +0 -179
  486. package/bin/impl/logout/logout-impl.d.ts +0 -1
  487. package/bin/impl/logout/logout-impl.js +0 -20
  488. package/bin/impl/magic/magic-apply.d.ts +0 -88
  489. package/bin/impl/magic/magic-apply.js +0 -669
  490. package/bin/impl/magic/magic-spells.d.ts +0 -46
  491. package/bin/impl/magic/magic-spells.js +0 -144
  492. package/bin/impl/merge/mod.d.ts +0 -8
  493. package/bin/impl/merge/mod.js +0 -160
  494. package/bin/impl/monorepo/cache-mod.d.ts +0 -29
  495. package/bin/impl/monorepo/cache-mod.js +0 -61
  496. package/bin/impl/monorepo/commands-mod.d.ts +0 -24
  497. package/bin/impl/monorepo/commands-mod.js +0 -159
  498. package/bin/impl/monorepo/graph-mod.d.ts +0 -29
  499. package/bin/impl/monorepo/graph-mod.js +0 -106
  500. package/bin/impl/monorepo/mod.d.ts +0 -5
  501. package/bin/impl/monorepo/mod.js +0 -5
  502. package/bin/impl/monorepo/monorepo-mod.d.ts +0 -26
  503. package/bin/impl/monorepo/monorepo-mod.js +0 -152
  504. package/bin/impl/mrse/mrse-impl.d.ts +0 -53
  505. package/bin/impl/mrse/mrse-impl.js +0 -132
  506. package/bin/impl/pack/mod.d.ts +0 -43
  507. package/bin/impl/pack/mod.js +0 -200
  508. package/bin/impl/providers/better-t-stack/better-t-stack-mod.d.ts +0 -14
  509. package/bin/impl/providers/better-t-stack/better-t-stack-mod.js +0 -35
  510. package/bin/impl/providers/better-t-stack/better-t-stack-types.d.ts +0 -21
  511. package/bin/impl/providers/better-t-stack/better-t-stack-types.js +0 -0
  512. package/bin/impl/providers/better-t-stack/constants.d.ts +0 -61
  513. package/bin/impl/providers/better-t-stack/constants.js +0 -81
  514. package/bin/impl/providers/better-t-stack/helpers/database-providers/mongodb-atlas-setup.d.ts +0 -2
  515. package/bin/impl/providers/better-t-stack/helpers/database-providers/mongodb-atlas-setup.js +0 -133
  516. package/bin/impl/providers/better-t-stack/helpers/database-providers/neon-setup.d.ts +0 -2
  517. package/bin/impl/providers/better-t-stack/helpers/database-providers/neon-setup.js +0 -168
  518. package/bin/impl/providers/better-t-stack/helpers/database-providers/prisma-postgres-setup.d.ts +0 -2
  519. package/bin/impl/providers/better-t-stack/helpers/database-providers/prisma-postgres-setup.js +0 -161
  520. package/bin/impl/providers/better-t-stack/helpers/database-providers/supabase-setup.d.ts +0 -2
  521. package/bin/impl/providers/better-t-stack/helpers/database-providers/supabase-setup.js +0 -162
  522. package/bin/impl/providers/better-t-stack/helpers/database-providers/turso-setup.d.ts +0 -2
  523. package/bin/impl/providers/better-t-stack/helpers/database-providers/turso-setup.js +0 -250
  524. package/bin/impl/providers/better-t-stack/helpers/project-generation/create-project.d.ts +0 -2
  525. package/bin/impl/providers/better-t-stack/helpers/project-generation/create-project.js +0 -82
  526. package/bin/impl/providers/better-t-stack/helpers/project-generation/create-readme.d.ts +0 -2
  527. package/bin/impl/providers/better-t-stack/helpers/project-generation/create-readme.js +0 -245
  528. package/bin/impl/providers/better-t-stack/helpers/project-generation/env-setup.d.ts +0 -8
  529. package/bin/impl/providers/better-t-stack/helpers/project-generation/env-setup.js +0 -193
  530. package/bin/impl/providers/better-t-stack/helpers/project-generation/install-dependencies.d.ts +0 -6
  531. package/bin/impl/providers/better-t-stack/helpers/project-generation/install-dependencies.js +0 -25
  532. package/bin/impl/providers/better-t-stack/helpers/project-generation/post-installation.d.ts +0 -4
  533. package/bin/impl/providers/better-t-stack/helpers/project-generation/post-installation.js +0 -228
  534. package/bin/impl/providers/better-t-stack/helpers/project-generation/project-config.d.ts +0 -3
  535. package/bin/impl/providers/better-t-stack/helpers/project-generation/project-config.js +0 -224
  536. package/bin/impl/providers/better-t-stack/helpers/project-generation/template-manager.d.ts +0 -9
  537. package/bin/impl/providers/better-t-stack/helpers/project-generation/template-manager.js +0 -484
  538. package/bin/impl/providers/better-t-stack/helpers/setup/addons-setup.d.ts +0 -2
  539. package/bin/impl/providers/better-t-stack/helpers/setup/addons-setup.js +0 -99
  540. package/bin/impl/providers/better-t-stack/helpers/setup/api-setup.d.ts +0 -2
  541. package/bin/impl/providers/better-t-stack/helpers/setup/api-setup.js +0 -236
  542. package/bin/impl/providers/better-t-stack/helpers/setup/auth-setup.d.ts +0 -3
  543. package/bin/impl/providers/better-t-stack/helpers/setup/auth-setup.js +0 -67
  544. package/bin/impl/providers/better-t-stack/helpers/setup/backend-setup.d.ts +0 -2
  545. package/bin/impl/providers/better-t-stack/helpers/setup/backend-setup.js +0 -52
  546. package/bin/impl/providers/better-t-stack/helpers/setup/db-setup.d.ts +0 -2
  547. package/bin/impl/providers/better-t-stack/helpers/setup/db-setup.js +0 -84
  548. package/bin/impl/providers/better-t-stack/helpers/setup/examples-setup.d.ts +0 -2
  549. package/bin/impl/providers/better-t-stack/helpers/setup/examples-setup.js +0 -38
  550. package/bin/impl/providers/better-t-stack/helpers/setup/runtime-setup.d.ts +0 -2
  551. package/bin/impl/providers/better-t-stack/helpers/setup/runtime-setup.js +0 -79
  552. package/bin/impl/providers/better-t-stack/helpers/setup/starlight-setup.d.ts +0 -2
  553. package/bin/impl/providers/better-t-stack/helpers/setup/starlight-setup.js +0 -41
  554. package/bin/impl/providers/better-t-stack/helpers/setup/tauri-setup.d.ts +0 -2
  555. package/bin/impl/providers/better-t-stack/helpers/setup/tauri-setup.js +0 -67
  556. package/bin/impl/providers/better-t-stack/packed/addons.d.ts +0 -2
  557. package/bin/impl/providers/better-t-stack/packed/addons.js +0 -263
  558. package/bin/impl/providers/better-t-stack/packed/api.d.ts +0 -2
  559. package/bin/impl/providers/better-t-stack/packed/api.js +0 -678
  560. package/bin/impl/providers/better-t-stack/packed/auth.d.ts +0 -2
  561. package/bin/impl/providers/better-t-stack/packed/auth.js +0 -4277
  562. package/bin/impl/providers/better-t-stack/packed/backend.d.ts +0 -2
  563. package/bin/impl/providers/better-t-stack/packed/backend.js +0 -996
  564. package/bin/impl/providers/better-t-stack/packed/base.d.ts +0 -2
  565. package/bin/impl/providers/better-t-stack/packed/base.js +0 -32
  566. package/bin/impl/providers/better-t-stack/packed/binaries/01dad80fc2.png +0 -0
  567. package/bin/impl/providers/better-t-stack/packed/binaries/0ba5eb8b0a.png +0 -0
  568. package/bin/impl/providers/better-t-stack/packed/binaries/19b53640a9.png +0 -0
  569. package/bin/impl/providers/better-t-stack/packed/binaries/206a875d5d.png +0 -0
  570. package/bin/impl/providers/better-t-stack/packed/binaries/2dc8b34485.png +0 -0
  571. package/bin/impl/providers/better-t-stack/packed/binaries/3f71f5a845.png +0 -0
  572. package/bin/impl/providers/better-t-stack/packed/binaries/6eda863d14.ico +0 -0
  573. package/bin/impl/providers/better-t-stack/packed/binaries/70aadde45a.png +0 -0
  574. package/bin/impl/providers/better-t-stack/packed/binaries/9ecfcc8f0e.ico +0 -0
  575. package/bin/impl/providers/better-t-stack/packed/binaries/9fc7a0c84f.ico +0 -0
  576. package/bin/impl/providers/better-t-stack/packed/binaries/b72f6b7339.png +0 -0
  577. package/bin/impl/providers/better-t-stack/packed/binaries/cb25ca74dd.png +0 -0
  578. package/bin/impl/providers/better-t-stack/packed/binaries/dee83fc2fb.png +0 -0
  579. package/bin/impl/providers/better-t-stack/packed/binaries/eda53e30fe.svg +0 -6
  580. package/bin/impl/providers/better-t-stack/packed/db.d.ts +0 -2
  581. package/bin/impl/providers/better-t-stack/packed/db.js +0 -329
  582. package/bin/impl/providers/better-t-stack/packed/examples.d.ts +0 -2
  583. package/bin/impl/providers/better-t-stack/packed/examples.js +0 -3470
  584. package/bin/impl/providers/better-t-stack/packed/extras.d.ts +0 -2
  585. package/bin/impl/providers/better-t-stack/packed/extras.js +0 -33
  586. package/bin/impl/providers/better-t-stack/packed/frontend.d.ts +0 -2
  587. package/bin/impl/providers/better-t-stack/packed/frontend.js +0 -6116
  588. package/bin/impl/providers/better-t-stack/packed/runtime.d.ts +0 -2
  589. package/bin/impl/providers/better-t-stack/packed/runtime.js +0 -35
  590. package/bin/impl/providers/better-t-stack/prompts/addons.d.ts +0 -2
  591. package/bin/impl/providers/better-t-stack/prompts/addons.js +0 -62
  592. package/bin/impl/providers/better-t-stack/prompts/api.d.ts +0 -2
  593. package/bin/impl/providers/better-t-stack/prompts/api.js +0 -52
  594. package/bin/impl/providers/better-t-stack/prompts/auth.d.ts +0 -2
  595. package/bin/impl/providers/better-t-stack/prompts/auth.js +0 -19
  596. package/bin/impl/providers/better-t-stack/prompts/backend.d.ts +0 -2
  597. package/bin/impl/providers/better-t-stack/prompts/backend.js +0 -60
  598. package/bin/impl/providers/better-t-stack/prompts/config-prompts.d.ts +0 -2
  599. package/bin/impl/providers/better-t-stack/prompts/config-prompts.js +0 -88
  600. package/bin/impl/providers/better-t-stack/prompts/database-setup.d.ts +0 -2
  601. package/bin/impl/providers/better-t-stack/prompts/database-setup.js +0 -67
  602. package/bin/impl/providers/better-t-stack/prompts/database.d.ts +0 -2
  603. package/bin/impl/providers/better-t-stack/prompts/database.js +0 -48
  604. package/bin/impl/providers/better-t-stack/prompts/examples.d.ts +0 -2
  605. package/bin/impl/providers/better-t-stack/prompts/examples.js +0 -44
  606. package/bin/impl/providers/better-t-stack/prompts/frontend.d.ts +0 -2
  607. package/bin/impl/providers/better-t-stack/prompts/frontend.js +0 -107
  608. package/bin/impl/providers/better-t-stack/prompts/git.d.ts +0 -1
  609. package/bin/impl/providers/better-t-stack/prompts/git.js +0 -15
  610. package/bin/impl/providers/better-t-stack/prompts/install.d.ts +0 -1
  611. package/bin/impl/providers/better-t-stack/prompts/install.js +0 -15
  612. package/bin/impl/providers/better-t-stack/prompts/orm.d.ts +0 -2
  613. package/bin/impl/providers/better-t-stack/prompts/orm.js +0 -43
  614. package/bin/impl/providers/better-t-stack/prompts/package-manager.d.ts +0 -2
  615. package/bin/impl/providers/better-t-stack/prompts/package-manager.js +0 -29
  616. package/bin/impl/providers/better-t-stack/prompts/project-name.d.ts +0 -1
  617. package/bin/impl/providers/better-t-stack/prompts/project-name.js +0 -62
  618. package/bin/impl/providers/better-t-stack/prompts/runtime.d.ts +0 -2
  619. package/bin/impl/providers/better-t-stack/prompts/runtime.js +0 -41
  620. package/bin/impl/providers/better-t-stack/types.d.ts +0 -124
  621. package/bin/impl/providers/better-t-stack/types.js +0 -29
  622. package/bin/impl/providers/better-t-stack/utils/add-package-deps.d.ts +0 -6
  623. package/bin/impl/providers/better-t-stack/utils/add-package-deps.js +0 -31
  624. package/bin/impl/providers/better-t-stack/utils/analytics.d.ts +0 -2
  625. package/bin/impl/providers/better-t-stack/utils/analytics.js +0 -32
  626. package/bin/impl/providers/better-t-stack/utils/command-exists.d.ts +0 -1
  627. package/bin/impl/providers/better-t-stack/utils/command-exists.js +0 -14
  628. package/bin/impl/providers/better-t-stack/utils/display-config.d.ts +0 -2
  629. package/bin/impl/providers/better-t-stack/utils/display-config.js +0 -59
  630. package/bin/impl/providers/better-t-stack/utils/generate-reproducible-command.d.ts +0 -2
  631. package/bin/impl/providers/better-t-stack/utils/generate-reproducible-command.js +0 -39
  632. package/bin/impl/providers/better-t-stack/utils/get-latest-cli-version.d.ts +0 -1
  633. package/bin/impl/providers/better-t-stack/utils/get-latest-cli-version.js +0 -8
  634. package/bin/impl/providers/better-t-stack/utils/get-package-execution-command.d.ts +0 -10
  635. package/bin/impl/providers/better-t-stack/utils/get-package-execution-command.js +0 -10
  636. package/bin/impl/providers/better-t-stack/utils/get-package-manager.d.ts +0 -2
  637. package/bin/impl/providers/better-t-stack/utils/get-package-manager.js +0 -10
  638. package/bin/impl/providers/better-t-stack/utils/open-url.d.ts +0 -1
  639. package/bin/impl/providers/better-t-stack/utils/open-url.js +0 -22
  640. package/bin/impl/providers/better-t-stack/utils/render-title.d.ts +0 -2
  641. package/bin/impl/providers/better-t-stack/utils/render-title.js +0 -43
  642. package/bin/impl/providers/better-t-stack/utils/sponsors.d.ts +0 -16
  643. package/bin/impl/providers/better-t-stack/utils/sponsors.js +0 -37
  644. package/bin/impl/providers/better-t-stack/utils/template-processor.d.ts +0 -8
  645. package/bin/impl/providers/better-t-stack/utils/template-processor.js +0 -23
  646. package/bin/impl/providers/better-t-stack/validation.d.ts +0 -4
  647. package/bin/impl/providers/better-t-stack/validation.js +0 -436
  648. package/bin/impl/providers/package.json +0 -3
  649. package/bin/impl/providers/reliverse-stack/reliverse-stack-mod.d.ts +0 -6
  650. package/bin/impl/providers/reliverse-stack/reliverse-stack-mod.js +0 -146
  651. package/bin/impl/providers/reliverse-stack/rs-impl.d.ts +0 -37
  652. package/bin/impl/providers/reliverse-stack/rs-impl.js +0 -367
  653. package/bin/impl/pub/impl.d.ts +0 -13
  654. package/bin/impl/pub/impl.js +0 -261
  655. package/bin/impl/pub/pub-library.d.ts +0 -5
  656. package/bin/impl/pub/pub-library.js +0 -149
  657. package/bin/impl/pub/pub-regular.d.ts +0 -9
  658. package/bin/impl/pub/pub-regular.js +0 -87
  659. package/bin/impl/remdn/mod.d.ts +0 -45
  660. package/bin/impl/remdn/mod.js +0 -648
  661. package/bin/impl/rempts/cmd.d.ts +0 -18
  662. package/bin/impl/rempts/cmd.js +0 -260
  663. package/bin/impl/rules/reliverse/dler-config-health/dler-config-health.d.ts +0 -2
  664. package/bin/impl/rules/reliverse/dler-config-health/dler-config-health.js +0 -37
  665. package/bin/impl/rules/reliverse/file-extensions/file-extensions.d.ts +0 -2
  666. package/bin/impl/rules/reliverse/file-extensions/file-extensions.js +0 -62
  667. package/bin/impl/rules/reliverse/missing-deps/analyzer.d.ts +0 -2
  668. package/bin/impl/rules/reliverse/missing-deps/analyzer.js +0 -49
  669. package/bin/impl/rules/reliverse/missing-deps/deps-mod.d.ts +0 -2
  670. package/bin/impl/rules/reliverse/missing-deps/deps-mod.js +0 -57
  671. package/bin/impl/rules/reliverse/missing-deps/deps-types.d.ts +0 -28
  672. package/bin/impl/rules/reliverse/missing-deps/deps-types.js +0 -0
  673. package/bin/impl/rules/reliverse/missing-deps/filesystem.d.ts +0 -4
  674. package/bin/impl/rules/reliverse/missing-deps/filesystem.js +0 -39
  675. package/bin/impl/rules/reliverse/missing-deps/formatter.d.ts +0 -2
  676. package/bin/impl/rules/reliverse/missing-deps/formatter.js +0 -101
  677. package/bin/impl/rules/reliverse/missing-deps/parser.d.ts +0 -5
  678. package/bin/impl/rules/reliverse/missing-deps/parser.js +0 -57
  679. package/bin/impl/rules/reliverse/no-dynamic-imports/no-dynamic-imports.d.ts +0 -7
  680. package/bin/impl/rules/reliverse/no-dynamic-imports/no-dynamic-imports.js +0 -89
  681. package/bin/impl/rules/reliverse/no-index-files/no-index-files.d.ts +0 -2
  682. package/bin/impl/rules/reliverse/no-index-files/no-index-files.js +0 -31
  683. package/bin/impl/rules/reliverse/package-json-health/package-json-health.d.ts +0 -2
  684. package/bin/impl/rules/reliverse/package-json-health/package-json-health.js +0 -61
  685. package/bin/impl/rules/reliverse/path-extensions/path-extensions.d.ts +0 -2
  686. package/bin/impl/rules/reliverse/path-extensions/path-extensions.js +0 -87
  687. package/bin/impl/rules/reliverse/self-include/self-include.d.ts +0 -2
  688. package/bin/impl/rules/reliverse/self-include/self-include.js +0 -93
  689. package/bin/impl/rules/reliverse/tsconfig-health/tsconfig-health.d.ts +0 -2
  690. package/bin/impl/rules/reliverse/tsconfig-health/tsconfig-health.js +0 -35
  691. package/bin/impl/rules/rules-consts.d.ts +0 -29
  692. package/bin/impl/rules/rules-consts.js +0 -48
  693. package/bin/impl/rules/rules-mod.d.ts +0 -2
  694. package/bin/impl/rules/rules-mod.js +0 -87
  695. package/bin/impl/rules/rules-utils.d.ts +0 -4
  696. package/bin/impl/rules/rules-utils.js +0 -49
  697. package/bin/impl/schema/gen.d.ts +0 -3
  698. package/bin/impl/schema/gen.js +0 -1493
  699. package/bin/impl/schema/mod.d.ts +0 -1469
  700. package/bin/impl/schema/mod.js +0 -366
  701. package/bin/impl/schema/utils.d.ts +0 -17
  702. package/bin/impl/schema/utils.js +0 -86
  703. package/bin/impl/split/impl.d.ts +0 -18
  704. package/bin/impl/split/impl.js +0 -89
  705. package/bin/impl/toolbox/toolbox-impl.d.ts +0 -5
  706. package/bin/impl/toolbox/toolbox-impl.js +0 -78
  707. package/bin/impl/toolbox/toolbox-vercel.d.ts +0 -6
  708. package/bin/impl/toolbox/toolbox-vercel.js +0 -97
  709. package/bin/impl/transform/transform-impl-mod.d.ts +0 -117
  710. package/bin/impl/transform/transform-impl-mod.js +0 -172
  711. package/bin/impl/types/mod.d.ts +0 -634
  712. package/bin/impl/types/mod.js +0 -0
  713. package/bin/impl/update/impl.d.ts +0 -21
  714. package/bin/impl/update/impl.js +0 -142
  715. package/bin/impl/update/utils.d.ts +0 -87
  716. package/bin/impl/update/utils.js +0 -448
  717. package/bin/impl/upload/providers/providers-mod.d.ts +0 -20
  718. package/bin/impl/upload/providers/providers-mod.js +0 -40
  719. package/bin/impl/upload/providers/uploadcare.d.ts +0 -13
  720. package/bin/impl/upload/providers/uploadcare.js +0 -26
  721. package/bin/impl/upload/providers/uploadthing.d.ts +0 -11
  722. package/bin/impl/upload/providers/uploadthing.js +0 -31
  723. package/bin/impl/upload/upload-utils.d.ts +0 -1
  724. package/bin/impl/upload/upload-utils.js +0 -7
  725. package/bin/impl/utils/agg/agg-1.d.ts +0 -1
  726. package/bin/impl/utils/agg/agg-1.js +0 -196
  727. package/bin/impl/utils/agg/agg-2.d.ts +0 -35
  728. package/bin/impl/utils/agg/agg-2.js +0 -148
  729. package/bin/impl/utils/agg/agg-3.d.ts +0 -41
  730. package/bin/impl/utils/agg/agg-3.js +0 -197
  731. package/bin/impl/utils/agg/agg-4.d.ts +0 -8
  732. package/bin/impl/utils/agg/agg-4.js +0 -26
  733. package/bin/impl/utils/agg/agg-5.d.ts +0 -4
  734. package/bin/impl/utils/agg/agg-5.js +0 -10
  735. package/bin/impl/utils/b-exts.d.ts +0 -5
  736. package/bin/impl/utils/b-exts.js +0 -406
  737. package/bin/impl/utils/badgeNotifiers.d.ts +0 -2
  738. package/bin/impl/utils/badgeNotifiers.js +0 -3
  739. package/bin/impl/utils/binary.d.ts +0 -4
  740. package/bin/impl/utils/binary.js +0 -11
  741. package/bin/impl/utils/codemods/convertCjsToEsm.d.ts +0 -1
  742. package/bin/impl/utils/codemods/convertCjsToEsm.js +0 -27
  743. package/bin/impl/utils/codemods/convertDatabase.d.ts +0 -2
  744. package/bin/impl/utils/codemods/convertDatabase.js +0 -229
  745. package/bin/impl/utils/codemods/convertDefinitions.d.ts +0 -1
  746. package/bin/impl/utils/codemods/convertDefinitions.js +0 -42
  747. package/bin/impl/utils/codemods/convertImportStyle.d.ts +0 -1
  748. package/bin/impl/utils/codemods/convertImportStyle.js +0 -30
  749. package/bin/impl/utils/codemods/convertJsToTs.d.ts +0 -1
  750. package/bin/impl/utils/codemods/convertJsToTs.js +0 -99
  751. package/bin/impl/utils/codemods/convertQuoteStyle.d.ts +0 -1
  752. package/bin/impl/utils/codemods/convertQuoteStyle.js +0 -31
  753. package/bin/impl/utils/codemods/convertRuntime.d.ts +0 -1
  754. package/bin/impl/utils/codemods/convertRuntime.js +0 -116
  755. package/bin/impl/utils/codemods/convertToMonorepo.d.ts +0 -2
  756. package/bin/impl/utils/codemods/convertToMonorepo.js +0 -137
  757. package/bin/impl/utils/codemods/removeComments.d.ts +0 -1
  758. package/bin/impl/utils/codemods/removeComments.js +0 -13
  759. package/bin/impl/utils/codemods/removeUnusedDeps.d.ts +0 -1
  760. package/bin/impl/utils/codemods/removeUnusedDeps.js +0 -29
  761. package/bin/impl/utils/codemods/replaceImportSymbol.d.ts +0 -1
  762. package/bin/impl/utils/codemods/replaceImportSymbol.js +0 -57
  763. package/bin/impl/utils/codemods/replaceWithModern.d.ts +0 -1
  764. package/bin/impl/utils/codemods/replaceWithModern.js +0 -122
  765. package/bin/impl/utils/comments.d.ts +0 -6
  766. package/bin/impl/utils/comments.js +0 -41
  767. package/bin/impl/utils/common.d.ts +0 -9
  768. package/bin/impl/utils/common.js +0 -37
  769. package/bin/impl/utils/createPackageJSON.d.ts +0 -6
  770. package/bin/impl/utils/createPackageJSON.js +0 -20
  771. package/bin/impl/utils/decideHelper.d.ts +0 -12
  772. package/bin/impl/utils/decideHelper.js +0 -32
  773. package/bin/impl/utils/dependencies/getUserPkgManager.d.ts +0 -13
  774. package/bin/impl/utils/dependencies/getUserPkgManager.js +0 -178
  775. package/bin/impl/utils/downloading/downloadI18nFiles.d.ts +0 -1
  776. package/bin/impl/utils/downloading/downloadI18nFiles.js +0 -98
  777. package/bin/impl/utils/downloading/downloadRepo.d.ts +0 -41
  778. package/bin/impl/utils/downloading/downloadRepo.js +0 -412
  779. package/bin/impl/utils/downloading/handleDownload.d.ts +0 -17
  780. package/bin/impl/utils/downloading/handleDownload.js +0 -160
  781. package/bin/impl/utils/exec/exec-enoent.d.ts +0 -15
  782. package/bin/impl/utils/exec/exec-enoent.js +0 -38
  783. package/bin/impl/utils/exec/exec-env.d.ts +0 -6
  784. package/bin/impl/utils/exec/exec-env.js +0 -34
  785. package/bin/impl/utils/exec/exec-error.d.ts +0 -7
  786. package/bin/impl/utils/exec/exec-error.js +0 -15
  787. package/bin/impl/utils/exec/exec-escape.d.ts +0 -2
  788. package/bin/impl/utils/exec/exec-escape.js +0 -15
  789. package/bin/impl/utils/exec/exec-mod.d.ts +0 -58
  790. package/bin/impl/utils/exec/exec-mod.js +0 -224
  791. package/bin/impl/utils/exec/exec-parse.d.ts +0 -2
  792. package/bin/impl/utils/exec/exec-parse.js +0 -71
  793. package/bin/impl/utils/exec/exec-resolve.d.ts +0 -2
  794. package/bin/impl/utils/exec/exec-resolve.js +0 -39
  795. package/bin/impl/utils/exec/exec-shebang.d.ts +0 -1
  796. package/bin/impl/utils/exec/exec-shebang.js +0 -14
  797. package/bin/impl/utils/exec/exec-spawn.d.ts +0 -3
  798. package/bin/impl/utils/exec/exec-spawn.js +0 -18
  799. package/bin/impl/utils/exec/exec-stream.d.ts +0 -4
  800. package/bin/impl/utils/exec/exec-stream.js +0 -18
  801. package/bin/impl/utils/exec/exec-types.d.ts +0 -13
  802. package/bin/impl/utils/exec/exec-types.js +0 -9
  803. package/bin/impl/utils/file-type.d.ts +0 -21
  804. package/bin/impl/utils/file-type.js +0 -78
  805. package/bin/impl/utils/finalize.d.ts +0 -10
  806. package/bin/impl/utils/finalize.js +0 -33
  807. package/bin/impl/utils/finish-text.d.ts +0 -6
  808. package/bin/impl/utils/finish-text.js +0 -41
  809. package/bin/impl/utils/fs-rename.d.ts +0 -2
  810. package/bin/impl/utils/fs-rename.js +0 -108
  811. package/bin/impl/utils/getEffectiveDir.d.ts +0 -5
  812. package/bin/impl/utils/getEffectiveDir.js +0 -4
  813. package/bin/impl/utils/getPackageManager.d.ts +0 -3
  814. package/bin/impl/utils/getPackageManager.js +0 -14
  815. package/bin/impl/utils/handlers/dependencies.d.ts +0 -1
  816. package/bin/impl/utils/handlers/dependencies.js +0 -19
  817. package/bin/impl/utils/handlers/handleCleanup.d.ts +0 -1
  818. package/bin/impl/utils/handlers/handleCleanup.js +0 -84
  819. package/bin/impl/utils/handlers/handleCodemods.d.ts +0 -2
  820. package/bin/impl/utils/handlers/handleCodemods.js +0 -203
  821. package/bin/impl/utils/handlers/isAppInstalled.d.ts +0 -1
  822. package/bin/impl/utils/handlers/isAppInstalled.js +0 -17
  823. package/bin/impl/utils/handlers/promptPackageJsonScripts.d.ts +0 -8
  824. package/bin/impl/utils/handlers/promptPackageJsonScripts.js +0 -130
  825. package/bin/impl/utils/handlers/shadcn.d.ts +0 -19
  826. package/bin/impl/utils/handlers/shadcn.js +0 -299
  827. package/bin/impl/utils/hasOnlyReliverseConfig.d.ts +0 -6
  828. package/bin/impl/utils/hasOnlyReliverseConfig.js +0 -15
  829. package/bin/impl/utils/init/init-const.d.ts +0 -34
  830. package/bin/impl/utils/init/init-const.js +0 -17
  831. package/bin/impl/utils/init/init-impl.d.ts +0 -22
  832. package/bin/impl/utils/init/init-impl.js +0 -229
  833. package/bin/impl/utils/init/init-tmpl.d.ts +0 -3
  834. package/bin/impl/utils/init/init-tmpl.js +0 -68
  835. package/bin/impl/utils/init/init-types.d.ts +0 -41
  836. package/bin/impl/utils/init/init-types.js +0 -0
  837. package/bin/impl/utils/instanceGithub.d.ts +0 -28
  838. package/bin/impl/utils/instanceGithub.js +0 -50
  839. package/bin/impl/utils/instanceVercel.d.ts +0 -16
  840. package/bin/impl/utils/instanceVercel.js +0 -39
  841. package/bin/impl/utils/microHelpers.d.ts +0 -11
  842. package/bin/impl/utils/microHelpers.js +0 -8
  843. package/bin/impl/utils/mrseHelpers.d.ts +0 -6
  844. package/bin/impl/utils/mrseHelpers.js +0 -21
  845. package/bin/impl/utils/pkgJsonHelpers.d.ts +0 -7
  846. package/bin/impl/utils/pkgJsonHelpers.js +0 -15
  847. package/bin/impl/utils/pm/pm-api.d.ts +0 -87
  848. package/bin/impl/utils/pm/pm-api.js +0 -170
  849. package/bin/impl/utils/pm/pm-catalog.d.ts +0 -36
  850. package/bin/impl/utils/pm/pm-catalog.js +0 -237
  851. package/bin/impl/utils/pm/pm-detect.d.ts +0 -12
  852. package/bin/impl/utils/pm/pm-detect.js +0 -99
  853. package/bin/impl/utils/pm/pm-meta.d.ts +0 -27
  854. package/bin/impl/utils/pm/pm-meta.js +0 -86
  855. package/bin/impl/utils/pm/pm-parse.d.ts +0 -8
  856. package/bin/impl/utils/pm/pm-parse.js +0 -29
  857. package/bin/impl/utils/pm/pm-types.d.ts +0 -46
  858. package/bin/impl/utils/pm/pm-types.js +0 -0
  859. package/bin/impl/utils/pm/pm-utils.d.ts +0 -12
  860. package/bin/impl/utils/pm/pm-utils.js +0 -115
  861. package/bin/impl/utils/projectRepository.d.ts +0 -58
  862. package/bin/impl/utils/projectRepository.js +0 -228
  863. package/bin/impl/utils/prompts/askAppOrLib.d.ts +0 -1
  864. package/bin/impl/utils/prompts/askAppOrLib.js +0 -30
  865. package/bin/impl/utils/prompts/askInstallDeps.d.ts +0 -7
  866. package/bin/impl/utils/prompts/askInstallDeps.js +0 -40
  867. package/bin/impl/utils/prompts/askOpenInIDE.d.ts +0 -5
  868. package/bin/impl/utils/prompts/askOpenInIDE.js +0 -43
  869. package/bin/impl/utils/prompts/askProjectName.d.ts +0 -3
  870. package/bin/impl/utils/prompts/askProjectName.js +0 -21
  871. package/bin/impl/utils/prompts/askUsernameFrontend.d.ts +0 -2
  872. package/bin/impl/utils/prompts/askUsernameFrontend.js +0 -28
  873. package/bin/impl/utils/prompts/askUsernameGithub.d.ts +0 -2
  874. package/bin/impl/utils/prompts/askUsernameGithub.js +0 -29
  875. package/bin/impl/utils/prompts/shouldInitGit.d.ts +0 -1
  876. package/bin/impl/utils/prompts/shouldInitGit.js +0 -8
  877. package/bin/impl/utils/reliverseMemory.d.ts +0 -3
  878. package/bin/impl/utils/reliverseMemory.js +0 -122
  879. package/bin/impl/utils/replacements/reps-impl.d.ts +0 -35
  880. package/bin/impl/utils/replacements/reps-impl.js +0 -220
  881. package/bin/impl/utils/replacements/reps-keys.d.ts +0 -16
  882. package/bin/impl/utils/replacements/reps-keys.js +0 -14
  883. package/bin/impl/utils/replacements/reps-mod.d.ts +0 -5
  884. package/bin/impl/utils/replacements/reps-mod.js +0 -211
  885. package/bin/impl/utils/replacements.d.ts +0 -0
  886. package/bin/impl/utils/replacements.js +0 -0
  887. package/bin/impl/utils/resolve-cross-libs.d.ts +0 -1
  888. package/bin/impl/utils/resolve-cross-libs.js +0 -641
  889. package/bin/impl/utils/schemaMemory.d.ts +0 -17
  890. package/bin/impl/utils/schemaMemory.js +0 -0
  891. package/bin/impl/utils/schemaTemplate.d.ts +0 -27
  892. package/bin/impl/utils/schemaTemplate.js +0 -98
  893. package/bin/impl/utils/startEndPrompts.d.ts +0 -8
  894. package/bin/impl/utils/startEndPrompts.js +0 -53
  895. package/bin/impl/utils/terminalHelpers.d.ts +0 -19
  896. package/bin/impl/utils/terminalHelpers.js +0 -43
  897. package/bin/impl/utils/testsRuntime.d.ts +0 -5
  898. package/bin/impl/utils/testsRuntime.js +0 -11
  899. package/bin/impl/utils/tsconfigHelpers.d.ts +0 -5
  900. package/bin/impl/utils/tsconfigHelpers.js +0 -14
  901. package/bin/impl/utils/utils-build.d.ts +0 -33
  902. package/bin/impl/utils/utils-build.js +0 -97
  903. package/bin/impl/utils/utils-clean.d.ts +0 -11
  904. package/bin/impl/utils/utils-clean.js +0 -70
  905. package/bin/impl/utils/utils-deps.d.ts +0 -5
  906. package/bin/impl/utils/utils-deps.js +0 -126
  907. package/bin/impl/utils/utils-determine.d.ts +0 -12
  908. package/bin/impl/utils/utils-determine.js +0 -25
  909. package/bin/impl/utils/utils-error-cwd.d.ts +0 -19
  910. package/bin/impl/utils/utils-error-cwd.js +0 -49
  911. package/bin/impl/utils/utils-fs.d.ts +0 -25
  912. package/bin/impl/utils/utils-fs.js +0 -183
  913. package/bin/impl/utils/utils-jsr-json.d.ts +0 -9
  914. package/bin/impl/utils/utils-jsr-json.js +0 -75
  915. package/bin/impl/utils/utils-misc.d.ts +0 -7
  916. package/bin/impl/utils/utils-misc.js +0 -7
  917. package/bin/impl/utils/utils-package-json-libraries.d.ts +0 -10
  918. package/bin/impl/utils/utils-package-json-libraries.js +0 -316
  919. package/bin/impl/utils/utils-package-json-regular.d.ts +0 -8
  920. package/bin/impl/utils/utils-package-json-regular.js +0 -165
  921. package/bin/impl/utils/utils-perf.d.ts +0 -5
  922. package/bin/impl/utils/utils-perf.js +0 -22
  923. package/bin/impl/utils/utils-security.d.ts +0 -12
  924. package/bin/impl/utils/utils-security.js +0 -95
  925. package/bin/impl/utils/utils-tsconfig.d.ts +0 -10
  926. package/bin/impl/utils/utils-tsconfig.js +0 -81
  927. package/bin/impl/utils/workspace-prompt.d.ts +0 -9
  928. package/bin/impl/utils/workspace-prompt.js +0 -46
  929. package/bin/impl/utils/workspace-utils.d.ts +0 -28
  930. package/bin/impl/utils/workspace-utils.js +0 -127
  931. package/bin/mod.d.ts +0 -430
  932. package/bin/mod.js +0 -1025
  933. /package/{bin/impl/add/add-local/core → dist/cmds/clean}/types.js +0 -0
  934. /package/{bin/impl/auth/generators → dist/cmds/init/impl}/types.js +0 -0
  935. /package/{bin/impl/auth/impl → dist/cmds/integrate}/types.js +0 -0
  936. /package/{bin/impl/add/add-global/install-mod.d.ts → dist/cmds/perf/types.js} +0 -0
  937. /package/{bin/impl/add/add-global/install-mod.js → dist/cmds/tsc/types.js} +0 -0
@@ -1,1469 +0,0 @@
1
- export interface ReliverseConfig {
2
- $schema?: string;
3
- projectName?: UnknownLiteral | (string & {});
4
- projectAuthor?: UnknownLiteral | (string & {});
5
- projectDescription?: string;
6
- version?: string;
7
- projectLicense?: string;
8
- projectRepository?: string;
9
- projectDomain?: string;
10
- projectGitService?: ProjectGitService;
11
- projectDeployService?: ProjectDeployService;
12
- projectPackageManager?: ProjectPackageManager;
13
- projectState?: ProjectState;
14
- projectCategory?: ProjectCategory;
15
- projectSubcategory?: ProjectSubcategory;
16
- projectFramework?: ProjectFramework;
17
- projectTemplate?: ProjectTemplate;
18
- projectTemplateDate?: string;
19
- features?: {
20
- i18n?: boolean;
21
- analytics?: boolean;
22
- themeMode?: ThemeMode;
23
- authentication?: boolean;
24
- api?: boolean;
25
- database?: boolean;
26
- testing?: boolean;
27
- docker?: boolean;
28
- ci?: boolean;
29
- commands?: string[];
30
- webview?: string[];
31
- language?: string[];
32
- themes?: string[];
33
- };
34
- preferredLibraries?: {
35
- stateManagement?: PreferredStateManagement;
36
- formManagement?: PreferredForm;
37
- styling?: PreferredStyling;
38
- uiComponents?: PreferredUI;
39
- testing?: PreferredTesting;
40
- authentication?: PreferredAuth;
41
- databaseLibrary?: PreferredDBLib;
42
- databaseProvider?: PreferredDBProvider;
43
- api?: PreferredAPI;
44
- linting?: PreferredLint;
45
- formatting?: PreferredFormat;
46
- payment?: PreferredPayment;
47
- analytics?: PreferredAnalytics;
48
- monitoring?: PreferredMonitoring;
49
- logging?: PreferredLogging;
50
- forms?: PreferredForms;
51
- notifications?: PreferredNotifications;
52
- search?: PreferredSearch;
53
- uploads?: PreferredUploads;
54
- validation?: PreferredValidation;
55
- documentation?: PreferredDocs;
56
- icons?: PreferredIcons;
57
- mail?: PreferredMail;
58
- cache?: PreferredCache;
59
- storage?: PreferredStorage;
60
- cdn?: PreferredCDN;
61
- cms?: PreferredCMS;
62
- i18n?: PreferredI18n;
63
- seo?: PreferredSEO;
64
- motion?: PreferredMotion;
65
- charts?: PreferredCharts;
66
- dates?: PreferredDates;
67
- markdown?: PreferredMarkdown;
68
- security?: PreferredSecurity;
69
- routing?: PreferredRouting;
70
- };
71
- codeStyle?: {
72
- lineWidth?: number;
73
- indentSize?: number;
74
- indentStyle?: "space" | "tab";
75
- quoteMark?: "single" | "double";
76
- semicolons?: boolean;
77
- trailingCommas?: "none" | "es5" | "all";
78
- bracketSpacing?: boolean;
79
- arrowParens?: "always" | "avoid";
80
- tabWidth?: number;
81
- jsToTs?: boolean;
82
- dontRemoveComments?: boolean;
83
- shouldAddComments?: boolean;
84
- typeOrInterface?: "type" | "interface" | "mixed";
85
- importOrRequire?: "import" | "require" | "mixed";
86
- cjsToEsm?: boolean;
87
- modernize?: {
88
- replaceFs?: boolean;
89
- replacePath?: boolean;
90
- replaceHttp?: boolean;
91
- replaceProcess?: boolean;
92
- replaceConsole?: boolean;
93
- replaceEvents?: boolean;
94
- };
95
- importSymbol?: string;
96
- };
97
- monorepo?: {
98
- type?: "none" | "turborepo" | "nx" | "pnpm" | "bun";
99
- packages?: string[];
100
- sharedPackages?: string[];
101
- };
102
- /**
103
- * Configuration for workspace auto-detection and management.
104
- * Enables automatic discovery and processing of workspace packages.
105
- */
106
- monorepoWorkspaces?: {
107
- /**
108
- * When `true`, enables workspace auto-detection for build and publish commands.
109
- * When `false`, workspace detection is disabled and commands work on the main project only.
110
- *
111
- * @default true
112
- */
113
- enabled: boolean;
114
- /**
115
- * When `true`, automatically discovers publishable packages from workspace configuration.
116
- * When `false`, packages must be manually configured in libsList.
117
- *
118
- * @default true
119
- */
120
- autoDiscoverPackages: boolean;
121
- /**
122
- * Controls the order in which packages are processed:
123
- * - `dependency`: Packages are processed in dependency order (dependencies first)
124
- * - `parallel`: All packages are processed in parallel (faster but may fail if dependencies aren't met)
125
- *
126
- * @default "dependency"
127
- */
128
- buildOrder: "dependency" | "parallel";
129
- /**
130
- * Additional glob patterns to include packages beyond workspace configuration.
131
- * These patterns are merged with the workspace patterns from package.json.
132
- *
133
- * @example ["examples/*", "tools/*"]
134
- * @default []
135
- */
136
- includePatterns: string[];
137
- /**
138
- * Glob patterns to exclude packages from processing.
139
- * Useful for excluding test packages or development tools.
140
- *
141
- * @example ["examples/*", "test-*"]
142
- * @default []
143
- */
144
- excludePatterns: string[];
145
- };
146
- /**
147
- * Configuration for monorepo caching features.
148
- * Enables smart caching to skip rebuilding unchanged packages.
149
- */
150
- monorepoCache?: {
151
- /**
152
- * When `true`, enables smart caching for monorepo packages.
153
- * Packages are only rebuilt if their source files have changed.
154
- *
155
- * @default false
156
- */
157
- enabled: boolean;
158
- /**
159
- * Output directory for cached builds.
160
- * Each package's build output is cached in a subdirectory.
161
- *
162
- * @default "dist"
163
- */
164
- outDir: string;
165
- /**
166
- * Glob patterns for files to include in cache hash calculation.
167
- * Only changes to these files will trigger a rebuild.
168
- */
169
- include: string[];
170
- /**
171
- * Glob patterns for files to exclude from cache hash calculation.
172
- * Changes to these files will not trigger a rebuild.
173
- */
174
- exclude: string[];
175
- };
176
- ignoreDependencies?: string[];
177
- customRules?: Record<string, unknown>;
178
- multipleRepoCloneMode?: boolean;
179
- customUserFocusedRepos?: string[];
180
- customDevsFocusedRepos?: string[];
181
- hideRepoSuggestions?: boolean;
182
- customReposOnNewProject?: boolean;
183
- envComposerOpenBrowser?: boolean;
184
- repoBranch?: string;
185
- repoPrivacy?: RepoPrivacy;
186
- projectArchitecture?: ProjectArchitecture;
187
- projectRuntime?: ProjectRuntime;
188
- skipPromptsUseAutoBehavior?: boolean;
189
- deployBehavior?: "prompt" | "autoYes" | "autoNo";
190
- depsBehavior?: "prompt" | "autoYes" | "autoNo";
191
- gitBehavior?: "prompt" | "autoYes" | "autoNo";
192
- i18nBehavior?: "prompt" | "autoYes" | "autoNo";
193
- scriptsBehavior?: "prompt" | "autoYes" | "autoNo";
194
- existingRepoBehavior?: "prompt" | "autoYes" | "autoYesSkipCommit" | "autoNo";
195
- relinterConfirm?: RelinterConfirm;
196
- /**
197
- * When `true`, disables version bumping.
198
- * Useful when retrying a failed publish with an already bumped version.
199
- *
200
- * @default false
201
- */
202
- bumpDisable: boolean;
203
- /**
204
- * Controls which files will have their version numbers updated during version bumping.
205
- *
206
- * Accepts:
207
- * - Standard file types like "package.json"
208
- * - Relative paths like "src/constants.ts"
209
- * - [Globbing patterns](https://github.com/mrmlnc/fast-glob#pattern-syntax)
210
- *
211
- * When empty, falls back to only updating "package.json".
212
- * Respects: .gitignore patterns, hidden files, .git & node_modules.
213
- *
214
- * @default ["package.json", "reliverse.ts"]
215
- */
216
- bumpFilter: string[];
217
- /**
218
- * Specifies how the version number should be incremented:
219
- * - `patch`: Increments the patch version for backwards-compatible bug fixes (1.2.3 → 1.2.4)
220
- * - `minor`: Increments the minor version for new backwards-compatible features (1.2.3 → 1.3.0)
221
- * - `major`: Increments the major version for breaking changes (1.2.3 → 2.0.0)
222
- * - `auto`: Automatically determine the appropriate bump type
223
- * - `manual`: Set a specific version (requires bumpSet to be set)
224
- *
225
- * Please note: `dler` infers the version from the `package.json` file.
226
- *
227
- * @default "patch"
228
- */
229
- bumpMode: BumpMode;
230
- /**
231
- * Custom version to set when bumpMode is "manual".
232
- * Must be a valid semver version (e.g., "1.2.3").
233
- *
234
- * @default ""
235
- */
236
- bumpSet: string;
237
- /**
238
- * When `true`, stops after building and retains distribution folders.
239
- * Useful for development or inspecting the build output.
240
- *
241
- * @default false
242
- */
243
- commonPubPause: boolean;
244
- /**
245
- * Specifies which package registries to publish to:
246
- * - `npm`: Publish only to the NPM commonPubRegistry.
247
- * - `jsr`: Publish only to the JSR commonPubRegistry.
248
- * - `npm-jsr`: Publish to both NPM and JSR registries.
249
- *
250
- * @default "npm"
251
- */
252
- commonPubRegistry: "jsr" | "npm" | "npm-jsr";
253
- /**
254
- * When `true`, enables detailed logs during the build and publish process.
255
- * Useful for debugging or understanding the build flow.
256
- *
257
- * @default false
258
- */
259
- commonVerbose: boolean;
260
- /**
261
- * When `true`, displays detailed build and publish logs.
262
- * When `false`, only shows spinner with status messages during build and publish.
263
- *
264
- * @default true
265
- */
266
- displayBuildPubLogs: boolean;
267
- /**
268
- * When `true`, generates TypeScript declaration files (.d.ts) for NPM packages.
269
- * Essential for providing type intranspileFormation to TypeScript users.
270
- *
271
- * To reduce bundle size you can set this to `false` if your main project
272
- * is planned to be used only as a global CLI tool (e.g. `bunx dler`).
273
- *
274
- * @default true
275
- */
276
- coreDeclarations: boolean;
277
- /**
278
- * Path to the project's main entry file.
279
- * Used as the entry point for the NPM package.
280
- *
281
- * @default "mod.ts"
282
- */
283
- coreEntryFile: string;
284
- /**
285
- * Base directory containing the source entry files.
286
- * All paths are resolved relative to this directory.
287
- * Set to `"."` if entry files are in the project root.
288
- *
289
- * @default "src"
290
- */
291
- coreEntrySrcDir: string;
292
- /**
293
- * Directory where built files will be placed within the distribution directory.
294
- * For example, if set to "bin", CLI scripts will be placed in "dist-npm/bin" or "dist-jsr/bin".
295
- *
296
- * @default "bin"
297
- */
298
- coreBuildOutDir: string;
299
- /**
300
- * Configuration for CLI functionality:
301
- * - enabled: When `true`, indicates that the package has CLI capabilities
302
- * - scripts: Map of CLI script names to their entry file paths
303
- * The key will be used as the command name in package.json's bin field
304
- * The value should be the path to the executable script (e.g. "cli.ts")
305
- *
306
- * **The source scripts should be in your "coreEntrySrcDir" directory (by default "src")**
307
- *
308
- * @example
309
- * {
310
- * enabled: true,
311
- * scripts: {
312
- * "mycli": "cli.ts",
313
- * "othercmd": "other-cmd.ts"
314
- * }
315
- * }
316
- *
317
- * @default { enabled: false, scripts: {} }
318
- */
319
- coreIsCLI: {
320
- enabled: boolean;
321
- scripts: Record<string, string>;
322
- };
323
- /**
324
- * Optional description that overrides the description from package.json.
325
- * When provided, this description will be used in the dist's package.json.
326
- * If not provided, the description from the original package.json will be used.
327
- *
328
- * @default `package.json`'s "description"
329
- */
330
- coreDescription: string;
331
- /**
332
- * When `true`, allows JSR publishing even with uncommitted changes.
333
- * Use with caution, as it may lead to inconsistent published versions.
334
- *
335
- * It is `true` by default to make it easier for new `dler` users to publish their projects.
336
- *
337
- * @default true
338
- */
339
- distJsrAllowDirty: boolean;
340
- /**
341
- * The bundler to use for creating JSR-compatible packages.
342
- * JSR's native bundler is recommended for best compatibility.
343
- *
344
- * @default "jsr"
345
- */
346
- distJsrBuilder: BundlerName;
347
- /**
348
- * Directory where JSR build artifacts are generated.
349
- * This directory will contain the package ready for JSR publishing.
350
- *
351
- * @default "dist-jsr"
352
- */
353
- distJsrDirName: string;
354
- /**
355
- * When `true`, simulates the publishing process without actually publishing.
356
- * Useful for testing the build and publish pipeline without side effects.
357
- *
358
- * @default false
359
- */
360
- distJsrDryRun: boolean;
361
- /**
362
- * When `true`, fails the build if warnings are detected.
363
- * Use with caution, as it may lead to inconsistent published versions.
364
- *
365
- * @default false
366
- */
367
- distJsrFailOnWarn: boolean;
368
- /**
369
- * When `true`, generates a `jsconfig.json` file for JSR's dist.
370
- *
371
- * @default false
372
- */
373
- distJsrGenTsconfig: boolean;
374
- /**
375
- * The file extension for output files in JSR packages.
376
- *
377
- * @default "ts"
378
- */
379
- distJsrOutFilesExt: NpmOutExt;
380
- /**
381
- * When `true`, enables JSR to process complex types, which may impact performance.
382
- * Enable this only if you cannot simplify or explicitly define exported types.
383
- *
384
- * JSR requires exported functions, classes, variables, and type aliases to have
385
- * explicitly written or easily inferred types. Otherwise, it may be unable to
386
- * generate documentation, type declarations for npm compatibility, or efficient
387
- * type checking for consumers.
388
- *
389
- * If "slow types" are present, type checking performance may degrade, and some
390
- * features may not work as expected.
391
- *
392
- * It is `true` by default to make it easier for new `dler` users to publish their projects.
393
- *
394
- * @see https://jsr.io/docs/about-slow-types
395
- * @default true
396
- */
397
- distJsrSlowTypes: boolean;
398
- /**
399
- * The bundler to use for creating NPM-compatible packages.
400
- *
401
- * @default "mkdist"
402
- */
403
- distNpmBuilder: BundlerName;
404
- /**
405
- * Directory where NPM build artifacts are generated.
406
- * This directory will contain the package ready for NPM publishing.
407
- *
408
- * @default "dist-npm"
409
- */
410
- distNpmDirName: string;
411
- /**
412
- * Specifies the file extension for output files in NPM packages.
413
- * Determines the extension of compiled files in the NPM distribution.
414
- * We strongly recommend using `"js"` with the `"esm"` transpileFormat.
415
- *
416
- * @default "js"
417
- */
418
- distNpmOutFilesExt: NpmOutExt;
419
- /**
420
- * When `true`, enables binary build functionality to create standalone executables.
421
- *
422
- * @default false
423
- */
424
- binaryBuildEnabled: boolean;
425
- /**
426
- * Input TypeScript file to bundle for binary builds.
427
- * If not specified, will use the coreEntryFile from the coreEntrySrcDir.
428
- *
429
- * @default undefined (uses coreEntryFile)
430
- */
431
- binaryBuildInputFile?: string;
432
- /**
433
- * Comma-separated list of targets to build for binary builds.
434
- * Use 'all' for all targets, 'list' to show available targets.
435
- * Target format is {prefix}-{platform}-{arch} where prefix is extracted from input filename.
436
- * Platforms: linux, windows, darwin (macOS)
437
- * Architectures: x64, arm64
438
- * Examples: dler-linux-x64, dler-windows-arm64, dler-darwin-x64
439
- *
440
- * @default "all"
441
- */
442
- binaryBuildTargets: string;
443
- /**
444
- * Output directory for built binary executables.
445
- *
446
- * @default "dist"
447
- */
448
- binaryBuildOutDir: string;
449
- /**
450
- * When `true`, minifies the binary output.
451
- *
452
- * @default true
453
- */
454
- binaryBuildMinify: boolean;
455
- /**
456
- * When `true`, generates source maps for binary builds.
457
- *
458
- * @default true
459
- */
460
- binaryBuildSourcemap: boolean;
461
- /**
462
- * When `true`, enables bytecode compilation for faster startup (Bun v1.1.30+).
463
- *
464
- * @default false
465
- */
466
- binaryBuildBytecode: boolean;
467
- /**
468
- * When `true`, cleans output directory before building binaries.
469
- *
470
- * @default true
471
- */
472
- binaryBuildClean: boolean;
473
- /**
474
- * Path to Windows .ico file for executable icon.
475
- *
476
- * @default undefined
477
- */
478
- binaryBuildWindowsIcon?: string;
479
- /**
480
- * When `true`, hides console window on Windows.
481
- *
482
- * @default false
483
- */
484
- binaryBuildWindowsHideConsole: boolean;
485
- /**
486
- * Asset naming pattern for binary builds.
487
- *
488
- * @default "[name]-[hash].[ext]"
489
- */
490
- binaryBuildAssetNaming: string;
491
- /**
492
- * When `true`, builds binary targets in parallel.
493
- *
494
- * @default true
495
- */
496
- binaryBuildParallel: boolean;
497
- /**
498
- * External dependencies to exclude from binary bundle.
499
- *
500
- * @default ["c12", "terminal-kit"]
501
- */
502
- binaryBuildExternal: string[];
503
- /**
504
- * When `true`, creates a bundled script instead of standalone executable.
505
- * Useful for debugging terminal issues.
506
- *
507
- * @default false
508
- */
509
- binaryBuildNoCompile: boolean;
510
- /**
511
- * !! EXPERIMENTAL !!
512
- * Controls which parts of the project are built and published:
513
- * - `main-project-only`: Builds/publishes only the main package.
514
- * - `main-and-libs`: Builds/publishes both the main package and libraries.
515
- * - `libs-only`: Builds/publishes only the libraries.
516
- *
517
- * @default "main-project-only"
518
- */
519
- libsActMode: "libs-only" | "main-and-libs" | "main-project-only";
520
- /**
521
- * The directory where built libraries are stored before publishing.
522
- *
523
- * @default "dist-libs"
524
- */
525
- libsDirDist: string;
526
- /**
527
- * The directory containing library source files.
528
- *
529
- * @default "src/libs"
530
- */
531
- libsDirSrc: string;
532
- /**
533
- * !! EXPERIMENTAL !!
534
- * Configuration for building and publishing multiple libraries.
535
- * Each key represents a package name, and its value contains the configuration.
536
- *
537
- * @example
538
- * {
539
- * "@myorg/ml1": { main: "my-lib-1/mod.ts" },
540
- * "@myorg/ml2": { main: "my-lib-2/ml2-mod.ts" },
541
- * "@myorg/ml3": { main: "src/libs/my-lib-3/index.js" }
542
- * }
543
- */
544
- libsList: Record<string, LibConfig>;
545
- /**
546
- * The name of the log file. dler uses `@reliverse/relinka` for logging.
547
- *
548
- * @default ".logs/relinka.log"
549
- */
550
- logsFileName: string;
551
- /**
552
- * When `true`, cleans up the log file from previous runs.
553
- *
554
- * @default false
555
- */
556
- logsFreshFile: boolean;
557
- /**
558
- * Configuration for dependency removal/injection patterns.
559
- * Controls which dependencies are excluded from (or injected into) the final package.
560
- *
561
- * Pattern types:
562
- * - Regular patterns: Exclude deps that match the pattern
563
- * - Negation patterns (starting with !): Don't exclude deps that match the pattern
564
- * - Add patterns (starting with +): Inject deps into specific dists even if original package.json doesn't have them
565
- *
566
- * Structure (dist-specific patterns are merged with global):
567
- * - `global`: Patterns that are always applied to all builds
568
- * - `dist-npm`: NPM-specific patterns
569
- * - `dist-jsr`: JSR-specific patterns
570
- * - `dist-libs`: Library-specific patterns
571
- * Each library can have separate NPM and JSR patterns
572
- *
573
- * @example
574
- * {
575
- * global: ["@types", "eslint"],
576
- * "dist-npm": ["npm-specific"],
577
- * "dist-jsr": ["+bun"], // Explicitly include 'bun' in JSR builds
578
- * "dist-libs": {
579
- * "@myorg/lib1": {
580
- * npm: ["lib1-npm-specific"],
581
- * jsr: ["+bun"] // Explicitly include 'bun' in this lib's JSR build
582
- * }
583
- * }
584
- * }
585
- */
586
- filterDepsPatterns: {
587
- global: string[];
588
- "dist-npm": string[];
589
- "dist-jsr": string[];
590
- "dist-libs": Record<string, {
591
- npm: string[];
592
- jsr: string[];
593
- }>;
594
- };
595
- /**
596
- * List of tools to run before the build process starts.
597
- * Available options: "tsc", "eslint", "biome", "knip", "dler-check"
598
- * Each tool will only run if it's installed in the system.
599
- *
600
- * @default []
601
- */
602
- runBeforeBuild: ("tsc" | "eslint" | "biome" | "knip" | "dler-check")[];
603
- /**
604
- * List of tools to run after the build process completes.
605
- * Available options: "dler-check"
606
- * Each tool will only run if it's installed in the system.
607
- *
608
- * @default []
609
- */
610
- runAfterBuild: "dler-check"[];
611
- /**
612
- * Array of functions to be executed before the build process starts.
613
- * These hooks will be called in sequence before any build steps.
614
- *
615
- * If you are a dler plugin developer, tell your users to
616
- * call your plugin's `beforeBuild`-related function here.
617
- *
618
- * @example
619
- * hooksBeforeBuild: [
620
- * async () => {
621
- * // Custom pre-build logic
622
- * await someAsyncOperation();
623
- *
624
- * // dler-plugin-my-plugin-name
625
- * await myPluginName_beforeBuild();
626
- * }
627
- * ]
628
- *
629
- * @default []
630
- */
631
- hooksBeforeBuild: (() => Promise<void>)[];
632
- /**
633
- * Array of functions to be executed after the build process completes.
634
- * These hooks will be called in sequence after all build steps.
635
- *
636
- * If you are a dler plugin developer, tell your users to
637
- * call your plugin's `afterBuild`-related function here.
638
- *
639
- * @example
640
- * hooksAfterBuild: [
641
- * async () => {
642
- * // Custom post-build logic
643
- * await someAsyncOperation();
644
- *
645
- * // dler-plugin-my-plugin-name
646
- * await myPluginName_afterBuild();
647
- * }
648
- * ]
649
- *
650
- * @default []
651
- */
652
- hooksAfterBuild: (() => Promise<void>)[];
653
- /**
654
- * When `true`, cleans up the temporary directories after the build process completes.
655
- *
656
- * @default true
657
- */
658
- postBuildSettings: {
659
- deleteDistTmpAfterBuild: boolean;
660
- };
661
- /**
662
- * When `true`, fails the build if warnings are detected.
663
- * Use with caution, as it may lead to inconsistent published versions.
664
- *
665
- * @default false
666
- */
667
- transpileFailOnWarn: boolean;
668
- /**
669
- * The transpileTarget runtime environment for the built package.
670
- *
671
- * @default "es2023"
672
- */
673
- transpileEsbuild: Esbuild;
674
- /**
675
- * Output module transpileFormat for built files:
676
- * - `esm`: ECMAScript modules (import/export)
677
- * - `cjs`: CommonJS modules (require/exports)
678
- * - `iife`: Immediately Invoked Function Expression (for browsers)
679
- *
680
- * @default "esm"
681
- */
682
- transpileFormat: TranspileFormat;
683
- /**
684
- * When `true`, minifies the output to reduce bundle size.
685
- * Recommended for production builds but may increase build time.
686
- *
687
- * @default true
688
- */
689
- transpileMinify: boolean;
690
- /**
691
- * The base URL for loading assets in the built package.
692
- * Important for packages that include assets like images or fonts.
693
- *
694
- * @default "/"
695
- */
696
- transpilePublicPath: string;
697
- /**
698
- * Controls source map generation for debugging (experimental):
699
- * - `true/false`: Enable/disable source maps.
700
- * - `"inline"`: Include source maps within output files.
701
- * - `"none"`: Do not generate source maps.
702
- * - `"linked"`: Generate separate source map files with links.
703
- * - `"external"`: Generate separate source map files.
704
- *
705
- * @default false
706
- */
707
- transpileSourcemap: Sourcemap;
708
- /**
709
- * When `true`, enables code transpileSplitting for improved load-time performance.
710
- * Useful for large applications but may not be needed for small projects.
711
- *
712
- * @default false
713
- */
714
- transpileSplitting: boolean;
715
- /**
716
- * Stub the package for JIT compilation.
717
- *
718
- * @default false
719
- */
720
- transpileStub: boolean;
721
- /**
722
- * Defines the transpileTarget runtime environment:
723
- * - `node`: Optimized for Node.js.
724
- * - `bun`: Optimized for Bun.
725
- * - `browser`: Optimized for web browsers.
726
- *
727
- * @default "node"
728
- */
729
- transpileTarget: TranspileTarget;
730
- /**
731
- * Watch the src dir and rebuild on change (experimental).
732
- *
733
- * @default false
734
- */
735
- transpileWatch: boolean;
736
- /**
737
- * Specifies what resources to send to npm and jsr registries.
738
- * coreBuildOutDir (e.g. "bin") dir is automatically included.
739
- * The following is also included if publishArtifacts is {}:
740
- * - global: ["package.json", "README.md", "LICENSE"]
741
- * - dist-jsr,dist-libs/jsr: ["jsr.json"]
742
- *
743
- * Structure:
744
- * - `global`: Files to include in all distributions
745
- * - `dist-jsr`: Files specific to JSR distribution
746
- * - `dist-npm`: Files specific to NPM distribution
747
- * - `dist-libs`: Library-specific files for each distribution type
748
- *
749
- * Useful for including additional files like configuration or documentation.
750
- * Pro tip: set jsr.jsonc to generate jsr.jsonc instead of jsr.json config.
751
- *
752
- * @default
753
- * {
754
- * global: ["bin", "package.json", "README.md", "LICENSE"],
755
- * "dist-jsr": ["jsr.json"],
756
- * "dist-npm": [],
757
- * "dist-libs": {
758
- * "@myorg/lib1": {
759
- * jsr: ["jsr.json"],
760
- * npm: []
761
- * }
762
- * }
763
- * }
764
- */
765
- publishArtifacts?: {
766
- global: string[];
767
- "dist-jsr": string[];
768
- "dist-npm": string[];
769
- "dist-libs": Record<string, {
770
- jsr: string[];
771
- npm: string[];
772
- }>;
773
- };
774
- /**
775
- * File extensions that should be copied to temporary build directories during pre-build.
776
- * These files will be processed by the bundlers.
777
- * All other files will be copied as-is to final dist directories during post-build.
778
- * @default ["ts", "js"]
779
- */
780
- buildPreExtensions: string[];
781
- /**
782
- * Directory name for templates that should be excluded from pre-build processing.
783
- * Files in this directory will be copied as-is during post-build.
784
- * @default "templates"
785
- */
786
- buildTemplatesDir: string;
787
- /**
788
- * Integrated relinka logger configuration.
789
- * @see https://github.com/reliverse/relinka
790
- *
791
- * @default See DEFAULT_RELINKA_CONFIG in defaults
792
- */
793
- relinka: {
794
- /**
795
- * Configuration options for the Relinka logger.
796
- * All properties are optional to allow for partial configuration.
797
- * Defaults will be applied during initialization.
798
- */
799
- /**
800
- * Enables verbose (aka debug) mode for detailed logging.
801
- *
802
- * `true` here works only for end-users of CLIs/libs when theirs developers
803
- * has been awaited for user's config via `@reliverse/relinka`'s `await relinkaConfig;`
804
- */
805
- verbose?: boolean;
806
- /**
807
- * Configuration for directory-related settings.
808
- * - `maxLogFiles`: The maximum number of log files to keep before cleanup.
809
- */
810
- dirs?: RelinkaDirsConfig;
811
- /**
812
- * Disables color output in the console.
813
- */
814
- disableColors?: boolean;
815
- /**
816
- * Configuration for log file output.
817
- */
818
- logFile?: {
819
- /**
820
- * Path to the log file.
821
- */
822
- outputPath?: string;
823
- /**
824
- * How to handle date in the filename.
825
- * - `disable`: No date prefix/suffix
826
- * - `append-before`: Add date before the filename (e.g., "2024-01-15-log.txt")
827
- * - `append-after`: Add date after the filename (e.g., "log-2024-01-15.txt")
828
- */
829
- nameWithDate?: "disable" | "append-before" | "append-after";
830
- /**
831
- * If true, clears the log file when relinkaConfig is executed with supportFreshLogFile: true.
832
- * This is useful for starting with a clean log file on each run.
833
- */
834
- freshLogFile?: boolean;
835
- };
836
- /**
837
- * If true, logs will be saved to a file.
838
- */
839
- saveLogsToFile?: boolean;
840
- /**
841
- * Configuration for timestamp in log messages.
842
- */
843
- timestamp?: {
844
- /**
845
- * If true, timestamps will be added to log messages.
846
- */
847
- enabled: boolean;
848
- /**
849
- * The format for timestamps. Default is YYYY-MM-DD HH:mm:ss.SSS
850
- */
851
- format?: string;
852
- };
853
- /**
854
- * Allows to customize the log levels.
855
- */
856
- levels?: LogLevelsConfig;
857
- /**
858
- * Controls how often the log cleanup runs (in milliseconds)
859
- * Default: 10_000 (10 seconds)
860
- */
861
- cleanupInterval?: number;
862
- /**
863
- * Maximum size of the log write buffer before flushing to disk (in bytes)
864
- * Default: 4096 (4KB)
865
- */
866
- bufferSize?: number;
867
- /**
868
- * Maximum time to hold logs in buffer before flushing to disk (in milliseconds)
869
- * Default: 5000 (5 seconds)
870
- */
871
- maxBufferAge?: number;
872
- };
873
- /**
874
- * Configuration for the remdn command which generates directory comparison documentation.
875
- * Controls how files are compared and documented across different distribution directories.
876
- */
877
- remdn?: {
878
- /**
879
- * Title for the generated documentation.
880
- * @default "Directory Comparison"
881
- */
882
- title?: string;
883
- /**
884
- * Output path for the generated HTML file.
885
- * @default "docs/files.html"
886
- */
887
- output?: string;
888
- /**
889
- * Configuration for directories to compare.
890
- * Each key represents a directory path, and its value contains directory-specific settings.
891
- */
892
- dirs?: Record<string, Record<string, never>>;
893
- /**
894
- * Extension mapping for file comparison.
895
- * Maps source file extensions to their corresponding extensions in different distribution directories.
896
- * Format: [<main>, <dist-npm/bin | dist-libs's * npm/bin>, <dist-jsr | dist-libs's * jsr/bin>]
897
- */
898
- "ext-map"?: Record<string, string[]>;
899
- };
900
- }
901
- /** Configuration for directory-related settings. */
902
- export interface RelinkaDirsConfig {
903
- maxLogFiles?: number;
904
- }
905
- /** Log level types used by the logger. */
906
- export type LogLevel = "error" | "fatal" | "info" | "success" | "verbose" | "warn" | "log" | "internal" | "null" | "step" | "box" | "message";
907
- /** Configuration for a single log level. */
908
- export interface LogLevelConfig {
909
- /**
910
- * Symbol to display for this log level.
911
- * @see https://symbl.cc
912
- */
913
- symbol: string;
914
- /**
915
- * Fallback symbol to use if Unicode is not supported.
916
- */
917
- fallbackSymbol: string;
918
- /**
919
- * Color to use for this log level.
920
- */
921
- color: string;
922
- /**
923
- * Number of spaces after the symbol/fallback
924
- */
925
- spacing?: number;
926
- }
927
- /** Configuration for all log levels. */
928
- export type LogLevelsConfig = Partial<Record<LogLevel, LogLevelConfig>>;
929
- export type BumpMode = "patch" | "minor" | "major" | "auto" | "manual";
930
- /**
931
- * Supported bundler names for building packages:
932
- * - bun: Bun's built-in bundler for fast builds
933
- * - copy: A simple file copy without bundling
934
- * - jsr: Similar to copy but optimized for the JSR commonPubRegistry
935
- * - mkdist: A lightweight bundler focused on TypeScript/ESM
936
- * - rollup: A traditional bundler with an extensive plugin ecosystem
937
- * - untyped: Types and markdown generation from a config object
938
- */
939
- export type BundlerName = "bun" | "copy" | "jsr" | "mkdist" | "rollup" | "untyped";
940
- export type NpmOutExt = "cjs" | "cts" | "js" | "mjs" | "mts" | "ts";
941
- /**
942
- * Configuration for a library to be built and published as a separate package.
943
- * Used when publishing multiple packages from a single repository.
944
- */
945
- export interface LibConfig {
946
- /**
947
- * When `true`, generates TypeScript declaration files (.d.ts) for NPM packages.
948
- */
949
- libDeclarations: boolean;
950
- /**
951
- * An optional description of the library, included in the dist's package.json.
952
- * Provides users with an overview of the library's purpose.
953
- *
954
- * @example "Utility functions for data manipulation"
955
- * @example "Core configuration module for the framework"
956
- *
957
- * @default `package.json`'s "description"
958
- */
959
- libDescription: string;
960
- /**
961
- * The directory where the library's dist files are stored.
962
- *
963
- * @default name is derived from the library's name after slash
964
- */
965
- libDirName: string;
966
- /**
967
- * The path to the library's main entry file.
968
- * This file serves as the primary entry point for imports.
969
- * The path should be relative to the project root.
970
- * The full path to the library's main file is derived by joining `libsDirDist` with `main`.
971
- *
972
- * @example "my-lib-1/mod.ts"
973
- * @example "my-lib-2/ml2-mod.ts"
974
- * @example "src/libs/my-lib-3/index.js"
975
- */
976
- libMainFile: string;
977
- /**
978
- * Dependencies to include in the dist's package.json.
979
- * The final output may vary based on `filterDepsPatterns`.
980
- * Defines how dependencies are handled during publishing:
981
- * - `string[]`: Includes only the specified dependencies.
982
- * - `true`: Includes all dependencies from the main package.json.
983
- * - `false` or `undefined`: Automatically determines dependencies based on imports.
984
- *
985
- * @example ["@reliverse/pathkit", "@reliverse/relifso"] - Only will include these specific dependencies.
986
- * @example true - Include all `dependencies` from the main package.json.
987
- */
988
- libPkgKeepDeps: boolean | string[];
989
- /**
990
- * When `true`, minifies the output to reduce bundle size.
991
- * Recommended for production builds but may increase build time.
992
- *
993
- * @default true
994
- */
995
- libTranspileMinify: boolean;
996
- /**
997
- * When true, pauses publishing for this specific library (overridden by commonPubPause).
998
- * If true, this library will be built but not published, even if other libs are published.
999
- *
1000
- * @default false
1001
- */
1002
- libPubPause?: boolean;
1003
- /**
1004
- * The registry to publish the library to.
1005
- *
1006
- * @default "npm"
1007
- */
1008
- libPubRegistry?: "jsr" | "npm" | "npm-jsr";
1009
- /**
1010
- * Optional version override for the library.
1011
- * If not provided, falls back to the version from the main package.json.
1012
- *
1013
- * @default `package.json`'s "version"
1014
- */
1015
- version?: string;
1016
- }
1017
- export type Esbuild = "es2019" | "es2020" | "es2021" | "es2022" | "es2023";
1018
- /**
1019
- * Supported output module transpileFormats for built packages.
1020
- * - esm: ECMAScript modules (import/export)
1021
- * - cjs: CommonJS modules (require/exports)
1022
- * - iife: Immediately Invoked Function Expression (for browsers)
1023
- */
1024
- export type TranspileFormat = "cjs" | "esm" | "iife";
1025
- /**
1026
- * Supported source map options for built packages.
1027
- * - boolean: Enable/disable source maps.
1028
- * - "inline": Include source maps within output files.
1029
- * - "none": Do not generate source maps.
1030
- * - "linked": Generate separate source map files with links.
1031
- * - "external": Generate separate source map files.
1032
- */
1033
- export type Sourcemap = "external" | "inline" | "linked" | "none" | boolean;
1034
- /**
1035
- * Supported transpileTarget runtime environments for built packages.
1036
- * - node: Optimized for Node.js.
1037
- * - bun: Optimized for Bun.
1038
- * - browser: Optimized for web browsers.
1039
- */
1040
- export type TranspileTarget = "browser" | "bun" | "node";
1041
- export type UnknownLiteral = "unknown";
1042
- export type ProjectState = "creating" | "created";
1043
- export type ProjectCategory = UnknownLiteral | "website" | "vscode" | "browser" | "cli" | "library" | "mobile";
1044
- export type ProjectSubcategory = UnknownLiteral | "e-commerce" | "tool";
1045
- export type ProjectFramework = UnknownLiteral | "nextjs" | "vite" | "svelte" | "remix" | "astro" | "nuxt" | "solid" | "qwik" | "vue" | "wxt" | "lynx" | "react-native" | "expo" | "capacitor" | "ionic" | "electron" | "tauri" | "neutralino" | "rempts" | "citty" | "commander" | "cac" | "meow" | "yargs" | "vscode" | "webextension" | "browser-extension" | "npm-jsr";
1046
- export type ProjectTemplate = UnknownLiteral | "blefnk/relivator-nextjs-template" | "blefnk/relivator-docker-template" | "blefnk/next-react-ts-src-minimal" | "blefnk/all-in-one-nextjs-template" | "blefnk/create-t3-app" | "blefnk/create-next-app" | "blefnk/astro-starlight-template" | "blefnk/versator-nextjs-template" | "blefnk/relivator-lynxjs-template" | "blefnk/relivator-react-native-template" | "reliverse/template-browser-extension" | "microsoft/vscode-extension-samples" | "microsoft/vscode-extension-template" | "rsetarter-template" | "blefnk/deno-cli-tutorial";
1047
- export type RepoPrivacy = UnknownLiteral | "public" | "private";
1048
- export type ProjectArchitecture = UnknownLiteral | "fullstack" | "separated";
1049
- export type ProjectRuntime = "node" | "deno" | "bun";
1050
- export type ProjectPackageManager = "npm" | "pnpm" | "yarn" | "bun";
1051
- export type ProjectGitService = "github" | "gitlab" | "bitbucket" | "none";
1052
- export type ProjectDeployService = "vercel" | "netlify" | "railway" | "deno" | "none";
1053
- export type ThemeMode = "light" | "dark" | "dark-light";
1054
- export type PreferredStateManagement = "zustand" | "jotai" | "redux-toolkit" | UnknownLiteral;
1055
- export type PreferredForm = "react-hook-form" | "formik" | UnknownLiteral;
1056
- export type PreferredStyling = "tailwind" | "styled-components" | "css-modules" | "sass" | UnknownLiteral;
1057
- export type PreferredUI = "shadcn-ui" | "chakra-ui" | "material-ui" | UnknownLiteral;
1058
- export type PreferredTesting = "bun" | "vitest" | "jest" | "playwright" | "cypress" | UnknownLiteral;
1059
- export type PreferredAuth = "better-auth" | "clerk" | "next-auth" | "supabase-auth" | "auth0" | UnknownLiteral;
1060
- export type PreferredDBLib = "drizzle" | "prisma" | "supabase" | UnknownLiteral;
1061
- export type PreferredDBProvider = "pg" | "mysql" | "sqlite" | "mongodb" | UnknownLiteral;
1062
- export type PreferredAPI = "hono" | "trpc" | "graphql" | "rest" | UnknownLiteral;
1063
- export type PreferredLint = "eslint" | UnknownLiteral;
1064
- export type PreferredFormat = "biome" | UnknownLiteral;
1065
- export type PreferredPayment = "stripe" | UnknownLiteral;
1066
- export type PreferredAnalytics = "vercel" | UnknownLiteral;
1067
- export type PreferredMonitoring = "sentry" | UnknownLiteral;
1068
- export type PreferredLogging = "axiom" | UnknownLiteral;
1069
- export type PreferredForms = "react-hook-form" | UnknownLiteral;
1070
- export type PreferredNotifications = "sonner" | UnknownLiteral;
1071
- export type PreferredSearch = "algolia" | UnknownLiteral;
1072
- export type PreferredUploads = "uploadthing" | UnknownLiteral;
1073
- export type PreferredValidation = "zod" | "typebox" | "valibot" | UnknownLiteral;
1074
- export type PreferredDocs = "starlight" | "nextra" | UnknownLiteral;
1075
- export type PreferredIcons = "lucide" | UnknownLiteral;
1076
- export type PreferredMail = "resend" | UnknownLiteral;
1077
- export type PreferredCache = "redis" | UnknownLiteral;
1078
- export type PreferredStorage = "cloudflare" | UnknownLiteral;
1079
- export type PreferredCDN = "cloudflare" | UnknownLiteral;
1080
- export type PreferredCMS = "contentlayer" | UnknownLiteral;
1081
- export type PreferredI18n = "next-intl" | UnknownLiteral;
1082
- export type PreferredSEO = "next-seo" | UnknownLiteral;
1083
- export type PreferredMotion = "framer" | UnknownLiteral;
1084
- export type PreferredCharts = "recharts" | UnknownLiteral;
1085
- export type PreferredDates = "dayjs" | UnknownLiteral;
1086
- export type PreferredMarkdown = "mdx" | UnknownLiteral;
1087
- export type PreferredSecurity = "auth" | UnknownLiteral;
1088
- export type PreferredRouting = "next" | "react-router" | "tanstack-router" | UnknownLiteral;
1089
- export type RelinterConfirm = "promptOnce" | "promptEachFile" | "autoYes";
1090
- /**
1091
- * Default configuration for the build and publish logic.
1092
- */
1093
- export declare const DEFAULT_CONFIG_RELIVERSE: ReliverseConfig;
1094
- export declare const defineConfig: (userConfig?: Partial<ReliverseConfig>) => {
1095
- $schema?: string;
1096
- projectName?: UnknownLiteral | (string & {});
1097
- projectAuthor?: UnknownLiteral | (string & {});
1098
- projectDescription?: string;
1099
- version?: string;
1100
- projectLicense?: string;
1101
- projectRepository?: string;
1102
- projectDomain?: string;
1103
- projectGitService?: ProjectGitService;
1104
- projectDeployService?: ProjectDeployService;
1105
- projectPackageManager?: ProjectPackageManager;
1106
- projectState?: ProjectState;
1107
- projectCategory?: ProjectCategory;
1108
- projectSubcategory?: ProjectSubcategory;
1109
- projectFramework?: ProjectFramework;
1110
- projectTemplate?: ProjectTemplate;
1111
- projectTemplateDate?: string;
1112
- features?: {
1113
- i18n?: boolean;
1114
- analytics?: boolean;
1115
- themeMode?: ThemeMode;
1116
- authentication?: boolean;
1117
- api?: boolean;
1118
- database?: boolean;
1119
- testing?: boolean;
1120
- docker?: boolean;
1121
- ci?: boolean;
1122
- commands?: string[];
1123
- webview?: string[];
1124
- language?: string[];
1125
- themes?: string[];
1126
- };
1127
- preferredLibraries?: {
1128
- stateManagement?: PreferredStateManagement;
1129
- formManagement?: PreferredForm;
1130
- styling?: PreferredStyling;
1131
- uiComponents?: PreferredUI;
1132
- testing?: PreferredTesting;
1133
- authentication?: PreferredAuth;
1134
- databaseLibrary?: PreferredDBLib;
1135
- databaseProvider?: PreferredDBProvider;
1136
- api?: PreferredAPI;
1137
- linting?: PreferredLint;
1138
- formatting?: PreferredFormat;
1139
- payment?: PreferredPayment;
1140
- analytics?: PreferredAnalytics;
1141
- monitoring?: PreferredMonitoring;
1142
- logging?: PreferredLogging;
1143
- forms?: PreferredForms;
1144
- notifications?: PreferredNotifications;
1145
- search?: PreferredSearch;
1146
- uploads?: PreferredUploads;
1147
- validation?: PreferredValidation;
1148
- documentation?: PreferredDocs;
1149
- icons?: PreferredIcons;
1150
- mail?: PreferredMail;
1151
- cache?: PreferredCache;
1152
- storage?: PreferredStorage;
1153
- cdn?: PreferredCDN;
1154
- cms?: PreferredCMS;
1155
- i18n?: PreferredI18n;
1156
- seo?: PreferredSEO;
1157
- motion?: PreferredMotion;
1158
- charts?: PreferredCharts;
1159
- dates?: PreferredDates;
1160
- markdown?: PreferredMarkdown;
1161
- security?: PreferredSecurity;
1162
- routing?: PreferredRouting;
1163
- };
1164
- codeStyle?: {
1165
- lineWidth?: number;
1166
- indentSize?: number;
1167
- indentStyle?: "space" | "tab";
1168
- quoteMark?: "single" | "double";
1169
- semicolons?: boolean;
1170
- trailingCommas?: "none" | "es5" | "all";
1171
- bracketSpacing?: boolean;
1172
- arrowParens?: "always" | "avoid";
1173
- tabWidth?: number;
1174
- jsToTs?: boolean;
1175
- dontRemoveComments?: boolean;
1176
- shouldAddComments?: boolean;
1177
- typeOrInterface?: "type" | "interface" | "mixed";
1178
- importOrRequire?: "import" | "require" | "mixed";
1179
- cjsToEsm?: boolean;
1180
- modernize?: {
1181
- replaceFs?: boolean;
1182
- replacePath?: boolean;
1183
- replaceHttp?: boolean;
1184
- replaceProcess?: boolean;
1185
- replaceConsole?: boolean;
1186
- replaceEvents?: boolean;
1187
- };
1188
- importSymbol?: string;
1189
- };
1190
- monorepo?: {
1191
- type?: "none" | "turborepo" | "nx" | "pnpm" | "bun";
1192
- packages?: string[];
1193
- sharedPackages?: string[];
1194
- };
1195
- monorepoWorkspaces?: {
1196
- /**
1197
- * When `true`, enables workspace auto-detection for build and publish commands.
1198
- * When `false`, workspace detection is disabled and commands work on the main project only.
1199
- *
1200
- * @default true
1201
- */
1202
- enabled: boolean;
1203
- /**
1204
- * When `true`, automatically discovers publishable packages from workspace configuration.
1205
- * When `false`, packages must be manually configured in libsList.
1206
- *
1207
- * @default true
1208
- */
1209
- autoDiscoverPackages: boolean;
1210
- /**
1211
- * Controls the order in which packages are processed:
1212
- * - `dependency`: Packages are processed in dependency order (dependencies first)
1213
- * - `parallel`: All packages are processed in parallel (faster but may fail if dependencies aren't met)
1214
- *
1215
- * @default "dependency"
1216
- */
1217
- buildOrder: "dependency" | "parallel";
1218
- /**
1219
- * Additional glob patterns to include packages beyond workspace configuration.
1220
- * These patterns are merged with the workspace patterns from package.json.
1221
- *
1222
- * @example ["examples/*", "tools/*"]
1223
- * @default []
1224
- */
1225
- includePatterns: string[];
1226
- /**
1227
- * Glob patterns to exclude packages from processing.
1228
- * Useful for excluding test packages or development tools.
1229
- *
1230
- * @example ["examples/*", "test-*"]
1231
- * @default []
1232
- */
1233
- excludePatterns: string[];
1234
- };
1235
- monorepoCache?: {
1236
- /**
1237
- * When `true`, enables smart caching for monorepo packages.
1238
- * Packages are only rebuilt if their source files have changed.
1239
- *
1240
- * @default false
1241
- */
1242
- enabled: boolean;
1243
- /**
1244
- * Output directory for cached builds.
1245
- * Each package's build output is cached in a subdirectory.
1246
- *
1247
- * @default "dist"
1248
- */
1249
- outDir: string;
1250
- /**
1251
- * Glob patterns for files to include in cache hash calculation.
1252
- * Only changes to these files will trigger a rebuild.
1253
- */
1254
- include: string[];
1255
- /**
1256
- * Glob patterns for files to exclude from cache hash calculation.
1257
- * Changes to these files will not trigger a rebuild.
1258
- */
1259
- exclude: string[];
1260
- };
1261
- ignoreDependencies?: string[];
1262
- customRules?: Record<string, unknown>;
1263
- multipleRepoCloneMode?: boolean;
1264
- customUserFocusedRepos?: string[];
1265
- customDevsFocusedRepos?: string[];
1266
- hideRepoSuggestions?: boolean;
1267
- customReposOnNewProject?: boolean;
1268
- envComposerOpenBrowser?: boolean;
1269
- repoBranch?: string;
1270
- repoPrivacy?: RepoPrivacy;
1271
- projectArchitecture?: ProjectArchitecture;
1272
- projectRuntime?: ProjectRuntime;
1273
- skipPromptsUseAutoBehavior?: boolean;
1274
- deployBehavior?: "prompt" | "autoYes" | "autoNo";
1275
- depsBehavior?: "prompt" | "autoYes" | "autoNo";
1276
- gitBehavior?: "prompt" | "autoYes" | "autoNo";
1277
- i18nBehavior?: "prompt" | "autoYes" | "autoNo";
1278
- scriptsBehavior?: "prompt" | "autoYes" | "autoNo";
1279
- existingRepoBehavior?: "prompt" | "autoYes" | "autoYesSkipCommit" | "autoNo";
1280
- relinterConfirm?: RelinterConfirm;
1281
- bumpDisable: boolean;
1282
- bumpFilter: string[];
1283
- bumpMode: BumpMode;
1284
- bumpSet: string;
1285
- commonPubPause: boolean;
1286
- commonPubRegistry: "jsr" | "npm" | "npm-jsr";
1287
- commonVerbose: boolean;
1288
- displayBuildPubLogs: boolean;
1289
- coreDeclarations: boolean;
1290
- coreEntryFile: string;
1291
- coreEntrySrcDir: string;
1292
- coreBuildOutDir: string;
1293
- coreIsCLI: {
1294
- enabled: boolean;
1295
- scripts: Record<string, string>;
1296
- };
1297
- coreDescription: string;
1298
- distJsrAllowDirty: boolean;
1299
- distJsrBuilder: BundlerName;
1300
- distJsrDirName: string;
1301
- distJsrDryRun: boolean;
1302
- distJsrFailOnWarn: boolean;
1303
- distJsrGenTsconfig: boolean;
1304
- distJsrOutFilesExt: NpmOutExt;
1305
- distJsrSlowTypes: boolean;
1306
- distNpmBuilder: BundlerName;
1307
- distNpmDirName: string;
1308
- distNpmOutFilesExt: NpmOutExt;
1309
- binaryBuildEnabled: boolean;
1310
- binaryBuildInputFile?: string;
1311
- binaryBuildTargets: string;
1312
- binaryBuildOutDir: string;
1313
- binaryBuildMinify: boolean;
1314
- binaryBuildSourcemap: boolean;
1315
- binaryBuildBytecode: boolean;
1316
- binaryBuildClean: boolean;
1317
- binaryBuildWindowsIcon?: string;
1318
- binaryBuildWindowsHideConsole: boolean;
1319
- binaryBuildAssetNaming: string;
1320
- binaryBuildParallel: boolean;
1321
- binaryBuildExternal: string[];
1322
- binaryBuildNoCompile: boolean;
1323
- libsActMode: "libs-only" | "main-and-libs" | "main-project-only";
1324
- libsDirDist: string;
1325
- libsDirSrc: string;
1326
- libsList: Record<string, LibConfig>;
1327
- logsFileName: string;
1328
- logsFreshFile: boolean;
1329
- filterDepsPatterns: {
1330
- global: string[];
1331
- "dist-npm": string[];
1332
- "dist-jsr": string[];
1333
- "dist-libs": Record<string, {
1334
- npm: string[];
1335
- jsr: string[];
1336
- }>;
1337
- };
1338
- runBeforeBuild: ("tsc" | "eslint" | "biome" | "knip" | "dler-check")[];
1339
- runAfterBuild: "dler-check"[];
1340
- hooksBeforeBuild: (() => Promise<void>)[];
1341
- hooksAfterBuild: (() => Promise<void>)[];
1342
- postBuildSettings: {
1343
- deleteDistTmpAfterBuild: boolean;
1344
- };
1345
- transpileFailOnWarn: boolean;
1346
- transpileEsbuild: Esbuild;
1347
- transpileFormat: TranspileFormat;
1348
- transpileMinify: boolean;
1349
- transpilePublicPath: string;
1350
- transpileSourcemap: Sourcemap;
1351
- transpileSplitting: boolean;
1352
- transpileStub: boolean;
1353
- transpileTarget: TranspileTarget;
1354
- transpileWatch: boolean;
1355
- publishArtifacts?: {
1356
- global: string[];
1357
- "dist-jsr": string[];
1358
- "dist-npm": string[];
1359
- "dist-libs": Record<string, {
1360
- jsr: string[];
1361
- npm: string[];
1362
- }>;
1363
- };
1364
- buildPreExtensions: string[];
1365
- buildTemplatesDir: string;
1366
- relinka: {
1367
- /**
1368
- * Configuration options for the Relinka logger.
1369
- * All properties are optional to allow for partial configuration.
1370
- * Defaults will be applied during initialization.
1371
- */
1372
- /**
1373
- * Enables verbose (aka debug) mode for detailed logging.
1374
- *
1375
- * `true` here works only for end-users of CLIs/libs when theirs developers
1376
- * has been awaited for user's config via `@reliverse/relinka`'s `await relinkaConfig;`
1377
- */
1378
- verbose?: boolean;
1379
- /**
1380
- * Configuration for directory-related settings.
1381
- * - `maxLogFiles`: The maximum number of log files to keep before cleanup.
1382
- */
1383
- dirs?: RelinkaDirsConfig;
1384
- /**
1385
- * Disables color output in the console.
1386
- */
1387
- disableColors?: boolean;
1388
- /**
1389
- * Configuration for log file output.
1390
- */
1391
- logFile?: {
1392
- /**
1393
- * Path to the log file.
1394
- */
1395
- outputPath?: string;
1396
- /**
1397
- * How to handle date in the filename.
1398
- * - `disable`: No date prefix/suffix
1399
- * - `append-before`: Add date before the filename (e.g., "2024-01-15-log.txt")
1400
- * - `append-after`: Add date after the filename (e.g., "log-2024-01-15.txt")
1401
- */
1402
- nameWithDate?: "disable" | "append-before" | "append-after";
1403
- /**
1404
- * If true, clears the log file when relinkaConfig is executed with supportFreshLogFile: true.
1405
- * This is useful for starting with a clean log file on each run.
1406
- */
1407
- freshLogFile?: boolean;
1408
- };
1409
- /**
1410
- * If true, logs will be saved to a file.
1411
- */
1412
- saveLogsToFile?: boolean;
1413
- /**
1414
- * Configuration for timestamp in log messages.
1415
- */
1416
- timestamp?: {
1417
- /**
1418
- * If true, timestamps will be added to log messages.
1419
- */
1420
- enabled: boolean;
1421
- /**
1422
- * The format for timestamps. Default is YYYY-MM-DD HH:mm:ss.SSS
1423
- */
1424
- format?: string;
1425
- };
1426
- /**
1427
- * Allows to customize the log levels.
1428
- */
1429
- levels?: LogLevelsConfig;
1430
- /**
1431
- * Controls how often the log cleanup runs (in milliseconds)
1432
- * Default: 10_000 (10 seconds)
1433
- */
1434
- cleanupInterval?: number;
1435
- /**
1436
- * Maximum size of the log write buffer before flushing to disk (in bytes)
1437
- * Default: 4096 (4KB)
1438
- */
1439
- bufferSize?: number;
1440
- /**
1441
- * Maximum time to hold logs in buffer before flushing to disk (in milliseconds)
1442
- * Default: 5000 (5 seconds)
1443
- */
1444
- maxBufferAge?: number;
1445
- };
1446
- remdn?: {
1447
- /**
1448
- * Title for the generated documentation.
1449
- * @default "Directory Comparison"
1450
- */
1451
- title?: string;
1452
- /**
1453
- * Output path for the generated HTML file.
1454
- * @default "docs/files.html"
1455
- */
1456
- output?: string;
1457
- /**
1458
- * Configuration for directories to compare.
1459
- * Each key represents a directory path, and its value contains directory-specific settings.
1460
- */
1461
- dirs?: Record<string, Record<string, never>>;
1462
- /**
1463
- * Extension mapping for file comparison.
1464
- * Maps source file extensions to their corresponding extensions in different distribution directories.
1465
- * Format: [<main>, <dist-npm/bin | dist-libs's * npm/bin>, <dist-jsr | dist-libs's * jsr/bin>]
1466
- */
1467
- "ext-map"?: Record<string, string[]>;
1468
- };
1469
- };