@maizzle/framework 6.0.0-rc.0 → 6.0.0-rc.10

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 (341) hide show
  1. package/bin/maizzle.mjs +1 -1
  2. package/dist/_virtual/_rolldown/runtime.mjs +32 -0
  3. package/dist/build.mjs +29 -9
  4. package/dist/build.mjs.map +1 -1
  5. package/dist/components/Body.vue +111 -0
  6. package/dist/components/Button.vue +68 -14
  7. package/dist/components/CodeBlock.vue +68 -0
  8. package/dist/components/CodeInline.vue +49 -0
  9. package/dist/components/Column.vue +86 -0
  10. package/dist/components/Container.vue +48 -0
  11. package/dist/components/Divider.vue +28 -0
  12. package/dist/components/Head.vue +30 -0
  13. package/dist/components/Heading.vue +28 -0
  14. package/dist/components/Html.vue +104 -0
  15. package/dist/components/Image.vue +70 -0
  16. package/dist/components/Layout.vue +93 -0
  17. package/dist/components/Link.vue +26 -0
  18. package/dist/components/Markdown.vue +89 -0
  19. package/dist/components/Outlook.vue +36 -0
  20. package/dist/components/Overlap.vue +80 -0
  21. package/dist/components/Preheader.vue +20 -0
  22. package/dist/components/Row.vue +91 -0
  23. package/dist/components/Section.vue +83 -0
  24. package/dist/components/Spacer.vue +50 -7
  25. package/dist/components/Text.vue +29 -0
  26. package/dist/components/Vml.vue +165 -13
  27. package/dist/composables/renderContext.d.mts +5 -0
  28. package/dist/composables/renderContext.d.mts.map +1 -1
  29. package/dist/composables/renderContext.mjs.map +1 -1
  30. package/dist/composables/usePreviewText.d.mts +24 -0
  31. package/dist/composables/usePreviewText.d.mts.map +1 -0
  32. package/dist/composables/usePreviewText.mjs +29 -0
  33. package/dist/composables/usePreviewText.mjs.map +1 -0
  34. package/dist/config/index.mjs +25 -1
  35. package/dist/config/index.mjs.map +1 -1
  36. package/dist/index.d.mts +4 -2
  37. package/dist/index.mjs +3 -1
  38. package/dist/node_modules/picomatch/index.mjs +13 -0
  39. package/dist/node_modules/picomatch/index.mjs.map +1 -0
  40. package/dist/node_modules/picomatch/lib/constants.mjs +174 -0
  41. package/dist/node_modules/picomatch/lib/constants.mjs.map +1 -0
  42. package/dist/node_modules/picomatch/lib/parse.mjs +1067 -0
  43. package/dist/node_modules/picomatch/lib/parse.mjs.map +1 -0
  44. package/dist/node_modules/picomatch/lib/picomatch.mjs +304 -0
  45. package/dist/node_modules/picomatch/lib/picomatch.mjs.map +1 -0
  46. package/dist/node_modules/picomatch/lib/scan.mjs +296 -0
  47. package/dist/node_modules/picomatch/lib/scan.mjs.map +1 -0
  48. package/dist/node_modules/picomatch/lib/utils.mjs +53 -0
  49. package/dist/node_modules/picomatch/lib/utils.mjs.map +1 -0
  50. package/dist/plugin.d.mts.map +1 -1
  51. package/dist/plugin.mjs +24 -7
  52. package/dist/plugin.mjs.map +1 -1
  53. package/dist/plugins/postcss/tailwindCleanup.d.mts.map +1 -1
  54. package/dist/plugins/postcss/tailwindCleanup.mjs +44 -13
  55. package/dist/plugins/postcss/tailwindCleanup.mjs.map +1 -1
  56. package/dist/render/createRenderer.d.mts +10 -3
  57. package/dist/render/createRenderer.d.mts.map +1 -1
  58. package/dist/render/createRenderer.mjs +147 -10
  59. package/dist/render/createRenderer.mjs.map +1 -1
  60. package/dist/render/index.mjs +9 -3
  61. package/dist/render/index.mjs.map +1 -1
  62. package/dist/serve.d.mts.map +1 -1
  63. package/dist/serve.mjs +159 -63
  64. package/dist/serve.mjs.map +1 -1
  65. package/dist/server/compatibility.d.mts +1 -2
  66. package/dist/server/compatibility.d.mts.map +1 -1
  67. package/dist/server/compatibility.mjs +30 -16
  68. package/dist/server/compatibility.mjs.map +1 -1
  69. package/dist/server/email.d.mts +17 -0
  70. package/dist/server/email.d.mts.map +1 -0
  71. package/dist/server/email.mjs +41 -0
  72. package/dist/server/email.mjs.map +1 -0
  73. package/dist/server/linter.d.mts +1 -2
  74. package/dist/server/linter.d.mts.map +1 -1
  75. package/dist/server/linter.mjs +60 -71
  76. package/dist/server/linter.mjs.map +1 -1
  77. package/dist/server/ui/App.vue +205 -69
  78. package/dist/server/ui/components/ui/checkbox/Checkbox.vue +35 -0
  79. package/dist/server/ui/components/ui/checkbox/index.ts +1 -0
  80. package/dist/server/ui/components/ui/command/CommandDialog.vue +1 -1
  81. package/dist/server/ui/components/ui/command/CommandInput.vue +19 -1
  82. package/dist/server/ui/components/ui/command/CommandItem.vue +1 -1
  83. package/dist/server/ui/components/ui/command/CommandList.vue +1 -1
  84. package/dist/server/ui/components/ui/command/CommandShortcut.vue +1 -1
  85. package/dist/server/ui/components/ui/dialog/DialogOverlay.vue +9 -1
  86. package/dist/server/ui/components/ui/dropdown-menu/DropdownMenuItem.vue +1 -1
  87. package/dist/server/ui/components/ui/scroll-area/ScrollBar.vue +1 -1
  88. package/dist/server/ui/components/ui/sheet/SheetContent.vue +1 -1
  89. package/dist/server/ui/components/ui/sheet/SheetOverlay.vue +9 -1
  90. package/dist/server/ui/components/ui/sidebar/Sidebar.vue +8 -1
  91. package/dist/server/ui/components/ui/sidebar/SidebarProvider.vue +1 -1
  92. package/dist/server/ui/components/ui/sidebar/SidebarTrigger.vue +5 -4
  93. package/dist/server/ui/components/ui/tags-input/TagsInput.vue +26 -0
  94. package/dist/server/ui/components/ui/tags-input/TagsInputInput.vue +17 -0
  95. package/dist/server/ui/components/ui/tags-input/TagsInputItem.vue +19 -0
  96. package/dist/server/ui/components/ui/tags-input/TagsInputItemDelete.vue +22 -0
  97. package/dist/server/ui/components/ui/tags-input/TagsInputItemText.vue +17 -0
  98. package/dist/server/ui/components/ui/tags-input/index.ts +5 -0
  99. package/dist/server/ui/components/ui/toggle/index.ts +3 -3
  100. package/dist/server/ui/components/ui/toggle-group/ToggleGroup.vue +1 -1
  101. package/dist/server/ui/components/ui/toggle-group/ToggleGroupItem.vue +2 -2
  102. package/dist/server/ui/main.css +20 -20
  103. package/dist/server/ui/pages/Home.vue +12 -5
  104. package/dist/server/ui/pages/Preview.vue +506 -216
  105. package/dist/transformers/entities.d.mts.map +1 -1
  106. package/dist/transformers/entities.mjs +3 -0
  107. package/dist/transformers/entities.mjs.map +1 -1
  108. package/dist/transformers/filters/defaults.d.mts +6 -0
  109. package/dist/transformers/filters/defaults.d.mts.map +1 -0
  110. package/dist/transformers/filters/defaults.mjs +78 -0
  111. package/dist/transformers/filters/defaults.mjs.map +1 -0
  112. package/dist/transformers/filters/index.d.mts +22 -0
  113. package/dist/transformers/filters/index.d.mts.map +1 -0
  114. package/dist/transformers/filters/index.mjs +67 -0
  115. package/dist/transformers/filters/index.mjs.map +1 -0
  116. package/dist/transformers/index.d.mts +11 -9
  117. package/dist/transformers/index.d.mts.map +1 -1
  118. package/dist/transformers/index.mjs +19 -11
  119. package/dist/transformers/index.mjs.map +1 -1
  120. package/dist/transformers/inlineCSS.d.mts +1 -14
  121. package/dist/transformers/inlineCSS.d.mts.map +1 -1
  122. package/dist/transformers/inlineCSS.mjs +25 -34
  123. package/dist/transformers/inlineCSS.mjs.map +1 -1
  124. package/dist/transformers/purgeCSS.d.mts.map +1 -1
  125. package/dist/transformers/purgeCSS.mjs +67 -1
  126. package/dist/transformers/purgeCSS.mjs.map +1 -1
  127. package/dist/transformers/sixHex.d.mts +16 -0
  128. package/dist/transformers/sixHex.d.mts.map +1 -0
  129. package/dist/transformers/sixHex.mjs +30 -0
  130. package/dist/transformers/sixHex.mjs.map +1 -0
  131. package/dist/transformers/tailwindcss.d.mts +6 -2
  132. package/dist/transformers/tailwindcss.d.mts.map +1 -1
  133. package/dist/transformers/tailwindcss.mjs +52 -28
  134. package/dist/transformers/tailwindcss.mjs.map +1 -1
  135. package/dist/types/config.d.mts +459 -17
  136. package/dist/types/config.d.mts.map +1 -1
  137. package/dist/types/index.d.mts +2 -2
  138. package/dist/utils/ast/serializer.d.mts +3 -2
  139. package/dist/utils/ast/serializer.d.mts.map +1 -1
  140. package/dist/utils/ast/serializer.mjs +24 -0
  141. package/dist/utils/ast/serializer.mjs.map +1 -1
  142. package/dist/utils/detect.d.mts +5 -0
  143. package/dist/utils/detect.d.mts.map +1 -0
  144. package/dist/utils/detect.mjs +11 -0
  145. package/dist/utils/detect.mjs.map +1 -0
  146. package/node_modules/@clack/core/CHANGELOG.md +87 -4
  147. package/node_modules/@clack/core/README.md +1 -1
  148. package/node_modules/@clack/core/dist/index.d.mts +186 -48
  149. package/node_modules/@clack/core/dist/index.mjs +10 -14
  150. package/node_modules/@clack/core/dist/index.mjs.map +1 -1
  151. package/node_modules/@clack/core/package.json +7 -9
  152. package/node_modules/@clack/prompts/CHANGELOG.md +171 -7
  153. package/node_modules/@clack/prompts/README.md +66 -3
  154. package/node_modules/@clack/prompts/dist/index.d.mts +302 -76
  155. package/node_modules/@clack/prompts/dist/index.mjs +134 -84
  156. package/node_modules/@clack/prompts/dist/index.mjs.map +1 -1
  157. package/node_modules/@clack/prompts/package.json +14 -10
  158. package/node_modules/citty/LICENSE +0 -15
  159. package/node_modules/citty/README.md +166 -69
  160. package/node_modules/citty/dist/index.d.mts +88 -56
  161. package/node_modules/citty/dist/index.mjs +399 -437
  162. package/node_modules/citty/package.json +28 -35
  163. package/node_modules/giget/README.md +59 -11
  164. package/node_modules/giget/dist/THIRD-PARTY-LICENSES.md +205 -0
  165. package/node_modules/giget/dist/_chunks/giget.mjs +508 -0
  166. package/node_modules/giget/dist/_chunks/libs/citty.mjs +269 -0
  167. package/node_modules/giget/dist/_chunks/libs/nypm.d.mts +1 -0
  168. package/node_modules/giget/dist/_chunks/libs/nypm.mjs +669 -0
  169. package/node_modules/giget/dist/_chunks/libs/tar.mjs +2931 -0
  170. package/node_modules/giget/dist/_chunks/rolldown-runtime.mjs +14 -0
  171. package/node_modules/giget/dist/cli.d.mts +1 -0
  172. package/node_modules/giget/dist/cli.mjs +89 -111
  173. package/node_modules/giget/dist/index.d.mts +46 -35
  174. package/node_modules/giget/dist/index.mjs +2 -22
  175. package/node_modules/giget/package.json +32 -45
  176. package/node_modules/maizzle/README.md +140 -0
  177. package/node_modules/maizzle/bin/maizzle.mjs +5 -0
  178. package/node_modules/maizzle/dist/commands/new.d.mts +7 -0
  179. package/node_modules/maizzle/dist/commands/new.mjs +278 -0
  180. package/node_modules/{@maizzle/cli → maizzle}/dist/index.d.mts +1 -1
  181. package/node_modules/maizzle/dist/index.mjs +44 -0
  182. package/node_modules/{commander → maizzle/node_modules/commander}/Readme.md +94 -67
  183. package/node_modules/{commander → maizzle/node_modules/commander}/lib/argument.js +5 -4
  184. package/node_modules/{commander → maizzle/node_modules/commander}/lib/command.js +154 -39
  185. package/node_modules/{commander → maizzle/node_modules/commander}/lib/help.js +77 -39
  186. package/node_modules/{commander → maizzle/node_modules/commander}/lib/option.js +16 -3
  187. package/node_modules/{commander → maizzle/node_modules/commander}/package-support.json +4 -1
  188. package/node_modules/{commander → maizzle/node_modules/commander}/package.json +8 -8
  189. package/node_modules/{commander → maizzle/node_modules/commander}/typings/index.d.ts +71 -3
  190. package/node_modules/{@maizzle/cli → maizzle}/package.json +13 -11
  191. package/node_modules/tinyexec/README.md +49 -3
  192. package/node_modules/tinyexec/dist/main.d.mts +25 -14
  193. package/node_modules/tinyexec/dist/main.mjs +148 -100
  194. package/node_modules/tinyexec/package.json +9 -8
  195. package/package.json +9 -4
  196. package/dist/server/ui/components/ui/resizable/ResizableHandle.vue +0 -30
  197. package/dist/server/ui/components/ui/resizable/ResizablePanel.vue +0 -21
  198. package/dist/server/ui/components/ui/resizable/ResizablePanelGroup.vue +0 -25
  199. package/dist/server/ui/components/ui/resizable/index.ts +0 -3
  200. package/node_modules/@clack/core/dist/index.cjs +0 -15
  201. package/node_modules/@clack/core/dist/index.cjs.map +0 -1
  202. package/node_modules/@clack/core/dist/index.d.cts +0 -211
  203. package/node_modules/@clack/core/dist/index.d.ts +0 -211
  204. package/node_modules/@clack/prompts/dist/index.cjs +0 -87
  205. package/node_modules/@clack/prompts/dist/index.cjs.map +0 -1
  206. package/node_modules/@clack/prompts/dist/index.d.cts +0 -165
  207. package/node_modules/@clack/prompts/dist/index.d.ts +0 -165
  208. package/node_modules/@maizzle/cli/README.md +0 -58
  209. package/node_modules/@maizzle/cli/dist/index.mjs +0 -42
  210. package/node_modules/citty/dist/index.cjs +0 -475
  211. package/node_modules/citty/dist/index.d.cts +0 -80
  212. package/node_modules/citty/dist/index.d.ts +0 -80
  213. package/node_modules/consola/LICENSE +0 -47
  214. package/node_modules/consola/README.md +0 -352
  215. package/node_modules/consola/basic.d.ts +0 -1
  216. package/node_modules/consola/browser.d.ts +0 -1
  217. package/node_modules/consola/core.d.ts +0 -1
  218. package/node_modules/consola/dist/basic.cjs +0 -32
  219. package/node_modules/consola/dist/basic.d.cts +0 -23
  220. package/node_modules/consola/dist/basic.d.mts +0 -21
  221. package/node_modules/consola/dist/basic.d.ts +0 -23
  222. package/node_modules/consola/dist/basic.mjs +0 -24
  223. package/node_modules/consola/dist/browser.cjs +0 -84
  224. package/node_modules/consola/dist/browser.d.cts +0 -23
  225. package/node_modules/consola/dist/browser.d.mts +0 -21
  226. package/node_modules/consola/dist/browser.d.ts +0 -23
  227. package/node_modules/consola/dist/browser.mjs +0 -76
  228. package/node_modules/consola/dist/chunks/prompt.cjs +0 -288
  229. package/node_modules/consola/dist/chunks/prompt.mjs +0 -280
  230. package/node_modules/consola/dist/core.cjs +0 -517
  231. package/node_modules/consola/dist/core.d.cts +0 -459
  232. package/node_modules/consola/dist/core.d.mts +0 -459
  233. package/node_modules/consola/dist/core.d.ts +0 -459
  234. package/node_modules/consola/dist/core.mjs +0 -512
  235. package/node_modules/consola/dist/index.cjs +0 -663
  236. package/node_modules/consola/dist/index.d.cts +0 -24
  237. package/node_modules/consola/dist/index.d.mts +0 -22
  238. package/node_modules/consola/dist/index.d.ts +0 -24
  239. package/node_modules/consola/dist/index.mjs +0 -651
  240. package/node_modules/consola/dist/shared/consola.DCGIlDNP.cjs +0 -75
  241. package/node_modules/consola/dist/shared/consola.DRwqZj3T.mjs +0 -72
  242. package/node_modules/consola/dist/shared/consola.DXBYu-KD.mjs +0 -288
  243. package/node_modules/consola/dist/shared/consola.DwRq1yyg.cjs +0 -312
  244. package/node_modules/consola/dist/utils.cjs +0 -64
  245. package/node_modules/consola/dist/utils.d.cts +0 -286
  246. package/node_modules/consola/dist/utils.d.mts +0 -286
  247. package/node_modules/consola/dist/utils.d.ts +0 -286
  248. package/node_modules/consola/dist/utils.mjs +0 -54
  249. package/node_modules/consola/lib/index.cjs +0 -10
  250. package/node_modules/consola/package.json +0 -136
  251. package/node_modules/consola/utils.d.ts +0 -1
  252. package/node_modules/create-maizzle/README.md +0 -86
  253. package/node_modules/create-maizzle/bin/create-maizzle.mjs +0 -4
  254. package/node_modules/create-maizzle/node_modules/@clack/core/CHANGELOG.md +0 -340
  255. package/node_modules/create-maizzle/node_modules/@clack/core/LICENSE +0 -9
  256. package/node_modules/create-maizzle/node_modules/@clack/core/README.md +0 -22
  257. package/node_modules/create-maizzle/node_modules/@clack/core/dist/index.d.mts +0 -349
  258. package/node_modules/create-maizzle/node_modules/@clack/core/dist/index.mjs +0 -11
  259. package/node_modules/create-maizzle/node_modules/@clack/core/dist/index.mjs.map +0 -1
  260. package/node_modules/create-maizzle/node_modules/@clack/core/package.json +0 -60
  261. package/node_modules/create-maizzle/node_modules/@clack/prompts/CHANGELOG.md +0 -576
  262. package/node_modules/create-maizzle/node_modules/@clack/prompts/LICENSE +0 -9
  263. package/node_modules/create-maizzle/node_modules/@clack/prompts/README.md +0 -270
  264. package/node_modules/create-maizzle/node_modules/@clack/prompts/dist/index.d.mts +0 -391
  265. package/node_modules/create-maizzle/node_modules/@clack/prompts/dist/index.mjs +0 -137
  266. package/node_modules/create-maizzle/node_modules/@clack/prompts/dist/index.mjs.map +0 -1
  267. package/node_modules/create-maizzle/node_modules/@clack/prompts/package.json +0 -65
  268. package/node_modules/create-maizzle/package.json +0 -47
  269. package/node_modules/create-maizzle/src/index.js +0 -242
  270. package/node_modules/defu/LICENSE +0 -21
  271. package/node_modules/defu/README.md +0 -171
  272. package/node_modules/defu/dist/defu.cjs +0 -77
  273. package/node_modules/defu/dist/defu.d.cts +0 -31
  274. package/node_modules/defu/dist/defu.d.mts +0 -29
  275. package/node_modules/defu/dist/defu.d.ts +0 -31
  276. package/node_modules/defu/dist/defu.mjs +0 -69
  277. package/node_modules/defu/lib/defu.cjs +0 -10
  278. package/node_modules/defu/lib/defu.d.cts +0 -12
  279. package/node_modules/defu/package.json +0 -48
  280. package/node_modules/giget/dist/shared/giget.OCaTp9b-.mjs +0 -468
  281. package/node_modules/node-fetch-native/LICENSE +0 -114
  282. package/node_modules/node-fetch-native/README.md +0 -225
  283. package/node_modules/node-fetch-native/dist/chunks/multipart-parser.cjs +0 -2
  284. package/node_modules/node-fetch-native/dist/chunks/multipart-parser.mjs +0 -2
  285. package/node_modules/node-fetch-native/dist/index.cjs +0 -1
  286. package/node_modules/node-fetch-native/dist/index.mjs +0 -1
  287. package/node_modules/node-fetch-native/dist/native.cjs +0 -1
  288. package/node_modules/node-fetch-native/dist/native.mjs +0 -1
  289. package/node_modules/node-fetch-native/dist/node.cjs +0 -19
  290. package/node_modules/node-fetch-native/dist/node.mjs +0 -19
  291. package/node_modules/node-fetch-native/dist/polyfill.cjs +0 -1
  292. package/node_modules/node-fetch-native/dist/polyfill.mjs +0 -1
  293. package/node_modules/node-fetch-native/dist/proxy-stub.cjs +0 -1
  294. package/node_modules/node-fetch-native/dist/proxy-stub.mjs +0 -1
  295. package/node_modules/node-fetch-native/dist/proxy.cjs +0 -58
  296. package/node_modules/node-fetch-native/dist/shared/node-fetch-native.DfbY2q-x.mjs +0 -1
  297. package/node_modules/node-fetch-native/dist/shared/node-fetch-native.DhEqb06g.cjs +0 -1
  298. package/node_modules/node-fetch-native/index.d.ts +0 -1
  299. package/node_modules/node-fetch-native/lib/empty.cjs +0 -0
  300. package/node_modules/node-fetch-native/lib/empty.mjs +0 -0
  301. package/node_modules/node-fetch-native/lib/index.cjs +0 -11
  302. package/node_modules/node-fetch-native/lib/index.d.cts +0 -10
  303. package/node_modules/node-fetch-native/lib/index.d.mts +0 -10
  304. package/node_modules/node-fetch-native/lib/index.d.ts +0 -10
  305. package/node_modules/node-fetch-native/lib/native.cjs +0 -11
  306. package/node_modules/node-fetch-native/lib/polyfill.d.cts +0 -1
  307. package/node_modules/node-fetch-native/lib/polyfill.d.mts +0 -1
  308. package/node_modules/node-fetch-native/lib/polyfill.d.ts +0 -1
  309. package/node_modules/node-fetch-native/lib/proxy.d.ts +0 -32
  310. package/node_modules/node-fetch-native/node.d.ts +0 -1
  311. package/node_modules/node-fetch-native/package.json +0 -138
  312. package/node_modules/node-fetch-native/polyfill.d.ts +0 -1
  313. package/node_modules/node-fetch-native/proxy.d.ts +0 -1
  314. package/node_modules/nypm/node_modules/citty/LICENSE +0 -21
  315. package/node_modules/nypm/node_modules/citty/README.md +0 -231
  316. package/node_modules/nypm/node_modules/citty/dist/index.d.mts +0 -112
  317. package/node_modules/nypm/node_modules/citty/dist/index.mjs +0 -425
  318. package/node_modules/nypm/node_modules/citty/package.json +0 -42
  319. /package/node_modules/{nypm/node_modules/citty → citty}/dist/THIRD-PARTY-LICENSES.md +0 -0
  320. /package/node_modules/{nypm/node_modules/citty → citty}/dist/_chunks/libs/scule.mjs +0 -0
  321. /package/node_modules/{@maizzle/cli → maizzle}/LICENSE +0 -0
  322. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/component.d.mts +0 -0
  323. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/component.mjs +0 -0
  324. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/config.d.mts +0 -0
  325. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/config.mjs +0 -0
  326. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/layout.d.mts +0 -0
  327. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/layout.mjs +0 -0
  328. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/scaffold.d.mts +0 -0
  329. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/scaffold.mjs +0 -0
  330. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/stubs/component.vue +0 -0
  331. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/stubs/config.ts +0 -0
  332. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/stubs/layout.vue +0 -0
  333. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/stubs/template.vue +0 -0
  334. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/template.d.mts +0 -0
  335. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/template.mjs +0 -0
  336. /package/node_modules/{commander → maizzle/node_modules/commander}/LICENSE +0 -0
  337. /package/node_modules/{commander → maizzle/node_modules/commander}/esm.mjs +0 -0
  338. /package/node_modules/{commander → maizzle/node_modules/commander}/index.js +0 -0
  339. /package/node_modules/{commander → maizzle/node_modules/commander}/lib/error.js +0 -0
  340. /package/node_modules/{commander → maizzle/node_modules/commander}/lib/suggestSimilar.js +0 -0
  341. /package/node_modules/{commander → maizzle/node_modules/commander}/typings/esm.d.mts +0 -0
@@ -1,475 +0,0 @@
1
- 'use strict';
2
-
3
- const consola = require('consola');
4
- const utils = require('consola/utils');
5
-
6
- function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e.default : e; }
7
-
8
- const consola__default = /*#__PURE__*/_interopDefaultCompat(consola);
9
-
10
- function toArray(val) {
11
- if (Array.isArray(val)) {
12
- return val;
13
- }
14
- return val === void 0 ? [] : [val];
15
- }
16
- function formatLineColumns(lines, linePrefix = "") {
17
- const maxLengh = [];
18
- for (const line of lines) {
19
- for (const [i, element] of line.entries()) {
20
- maxLengh[i] = Math.max(maxLengh[i] || 0, element.length);
21
- }
22
- }
23
- return lines.map(
24
- (l) => l.map(
25
- (c, i) => linePrefix + c[i === 0 ? "padStart" : "padEnd"](maxLengh[i])
26
- ).join(" ")
27
- ).join("\n");
28
- }
29
- function resolveValue(input) {
30
- return typeof input === "function" ? input() : input;
31
- }
32
- class CLIError extends Error {
33
- constructor(message, code) {
34
- super(message);
35
- this.code = code;
36
- this.name = "CLIError";
37
- }
38
- }
39
-
40
- const NUMBER_CHAR_RE = /\d/;
41
- const STR_SPLITTERS = ["-", "_", "/", "."];
42
- function isUppercase(char = "") {
43
- if (NUMBER_CHAR_RE.test(char)) {
44
- return void 0;
45
- }
46
- return char !== char.toLowerCase();
47
- }
48
- function splitByCase(str, separators) {
49
- const splitters = separators ?? STR_SPLITTERS;
50
- const parts = [];
51
- if (!str || typeof str !== "string") {
52
- return parts;
53
- }
54
- let buff = "";
55
- let previousUpper;
56
- let previousSplitter;
57
- for (const char of str) {
58
- const isSplitter = splitters.includes(char);
59
- if (isSplitter === true) {
60
- parts.push(buff);
61
- buff = "";
62
- previousUpper = void 0;
63
- continue;
64
- }
65
- const isUpper = isUppercase(char);
66
- if (previousSplitter === false) {
67
- if (previousUpper === false && isUpper === true) {
68
- parts.push(buff);
69
- buff = char;
70
- previousUpper = isUpper;
71
- continue;
72
- }
73
- if (previousUpper === true && isUpper === false && buff.length > 1) {
74
- const lastChar = buff.at(-1);
75
- parts.push(buff.slice(0, Math.max(0, buff.length - 1)));
76
- buff = lastChar + char;
77
- previousUpper = isUpper;
78
- continue;
79
- }
80
- }
81
- buff += char;
82
- previousUpper = isUpper;
83
- previousSplitter = isSplitter;
84
- }
85
- parts.push(buff);
86
- return parts;
87
- }
88
- function upperFirst(str) {
89
- return str ? str[0].toUpperCase() + str.slice(1) : "";
90
- }
91
- function lowerFirst(str) {
92
- return str ? str[0].toLowerCase() + str.slice(1) : "";
93
- }
94
- function pascalCase(str, opts) {
95
- return str ? (Array.isArray(str) ? str : splitByCase(str)).map((p) => upperFirst(opts?.normalize ? p.toLowerCase() : p)).join("") : "";
96
- }
97
- function camelCase(str, opts) {
98
- return lowerFirst(pascalCase(str || "", opts));
99
- }
100
- function kebabCase(str, joiner) {
101
- return str ? (Array.isArray(str) ? str : splitByCase(str)).map((p) => p.toLowerCase()).join(joiner ?? "-") : "";
102
- }
103
-
104
- function toArr(any) {
105
- return any == void 0 ? [] : Array.isArray(any) ? any : [any];
106
- }
107
- function toVal(out, key, val, opts) {
108
- let x;
109
- const old = out[key];
110
- const nxt = ~opts.string.indexOf(key) ? val == void 0 || val === true ? "" : String(val) : typeof val === "boolean" ? val : ~opts.boolean.indexOf(key) ? val === "false" ? false : val === "true" || (out._.push((x = +val, x * 0 === 0) ? x : val), !!val) : (x = +val, x * 0 === 0) ? x : val;
111
- out[key] = old == void 0 ? nxt : Array.isArray(old) ? old.concat(nxt) : [old, nxt];
112
- }
113
- function parseRawArgs(args = [], opts = {}) {
114
- let k;
115
- let arr;
116
- let arg;
117
- let name;
118
- let val;
119
- const out = { _: [] };
120
- let i = 0;
121
- let j = 0;
122
- let idx = 0;
123
- const len = args.length;
124
- const alibi = opts.alias !== void 0;
125
- const strict = opts.unknown !== void 0;
126
- const defaults = opts.default !== void 0;
127
- opts.alias = opts.alias || {};
128
- opts.string = toArr(opts.string);
129
- opts.boolean = toArr(opts.boolean);
130
- if (alibi) {
131
- for (k in opts.alias) {
132
- arr = opts.alias[k] = toArr(opts.alias[k]);
133
- for (i = 0; i < arr.length; i++) {
134
- (opts.alias[arr[i]] = arr.concat(k)).splice(i, 1);
135
- }
136
- }
137
- }
138
- for (i = opts.boolean.length; i-- > 0; ) {
139
- arr = opts.alias[opts.boolean[i]] || [];
140
- for (j = arr.length; j-- > 0; ) {
141
- opts.boolean.push(arr[j]);
142
- }
143
- }
144
- for (i = opts.string.length; i-- > 0; ) {
145
- arr = opts.alias[opts.string[i]] || [];
146
- for (j = arr.length; j-- > 0; ) {
147
- opts.string.push(arr[j]);
148
- }
149
- }
150
- if (defaults) {
151
- for (k in opts.default) {
152
- name = typeof opts.default[k];
153
- arr = opts.alias[k] = opts.alias[k] || [];
154
- if (opts[name] !== void 0) {
155
- opts[name].push(k);
156
- for (i = 0; i < arr.length; i++) {
157
- opts[name].push(arr[i]);
158
- }
159
- }
160
- }
161
- }
162
- const keys = strict ? Object.keys(opts.alias) : [];
163
- for (i = 0; i < len; i++) {
164
- arg = args[i];
165
- if (arg === "--") {
166
- out._ = out._.concat(args.slice(++i));
167
- break;
168
- }
169
- for (j = 0; j < arg.length; j++) {
170
- if (arg.charCodeAt(j) !== 45) {
171
- break;
172
- }
173
- }
174
- if (j === 0) {
175
- out._.push(arg);
176
- } else if (arg.substring(j, j + 3) === "no-") {
177
- name = arg.slice(Math.max(0, j + 3));
178
- if (strict && !~keys.indexOf(name)) {
179
- return opts.unknown(arg);
180
- }
181
- out[name] = false;
182
- } else {
183
- for (idx = j + 1; idx < arg.length; idx++) {
184
- if (arg.charCodeAt(idx) === 61) {
185
- break;
186
- }
187
- }
188
- name = arg.substring(j, idx);
189
- val = arg.slice(Math.max(0, ++idx)) || i + 1 === len || ("" + args[i + 1]).charCodeAt(0) === 45 || args[++i];
190
- arr = j === 2 ? [name] : name;
191
- for (idx = 0; idx < arr.length; idx++) {
192
- name = arr[idx];
193
- if (strict && !~keys.indexOf(name)) {
194
- return opts.unknown("-".repeat(j) + name);
195
- }
196
- toVal(out, name, idx + 1 < arr.length || val, opts);
197
- }
198
- }
199
- }
200
- if (defaults) {
201
- for (k in opts.default) {
202
- if (out[k] === void 0) {
203
- out[k] = opts.default[k];
204
- }
205
- }
206
- }
207
- if (alibi) {
208
- for (k in out) {
209
- arr = opts.alias[k] || [];
210
- while (arr.length > 0) {
211
- out[arr.shift()] = out[k];
212
- }
213
- }
214
- }
215
- return out;
216
- }
217
-
218
- function parseArgs(rawArgs, argsDef) {
219
- const parseOptions = {
220
- boolean: [],
221
- string: [],
222
- mixed: [],
223
- alias: {},
224
- default: {}
225
- };
226
- const args = resolveArgs(argsDef);
227
- for (const arg of args) {
228
- if (arg.type === "positional") {
229
- continue;
230
- }
231
- if (arg.type === "string") {
232
- parseOptions.string.push(arg.name);
233
- } else if (arg.type === "boolean") {
234
- parseOptions.boolean.push(arg.name);
235
- }
236
- if (arg.default !== void 0) {
237
- parseOptions.default[arg.name] = arg.default;
238
- }
239
- if (arg.alias) {
240
- parseOptions.alias[arg.name] = arg.alias;
241
- }
242
- }
243
- const parsed = parseRawArgs(rawArgs, parseOptions);
244
- const [...positionalArguments] = parsed._;
245
- const parsedArgsProxy = new Proxy(parsed, {
246
- get(target, prop) {
247
- return target[prop] ?? target[camelCase(prop)] ?? target[kebabCase(prop)];
248
- }
249
- });
250
- for (const [, arg] of args.entries()) {
251
- if (arg.type === "positional") {
252
- const nextPositionalArgument = positionalArguments.shift();
253
- if (nextPositionalArgument !== void 0) {
254
- parsedArgsProxy[arg.name] = nextPositionalArgument;
255
- } else if (arg.default === void 0 && arg.required !== false) {
256
- throw new CLIError(
257
- `Missing required positional argument: ${arg.name.toUpperCase()}`,
258
- "EARG"
259
- );
260
- } else {
261
- parsedArgsProxy[arg.name] = arg.default;
262
- }
263
- } else if (arg.required && parsedArgsProxy[arg.name] === void 0) {
264
- throw new CLIError(`Missing required argument: --${arg.name}`, "EARG");
265
- }
266
- }
267
- return parsedArgsProxy;
268
- }
269
- function resolveArgs(argsDef) {
270
- const args = [];
271
- for (const [name, argDef] of Object.entries(argsDef || {})) {
272
- args.push({
273
- ...argDef,
274
- name,
275
- alias: toArray(argDef.alias)
276
- });
277
- }
278
- return args;
279
- }
280
-
281
- function defineCommand(def) {
282
- return def;
283
- }
284
- async function runCommand(cmd, opts) {
285
- const cmdArgs = await resolveValue(cmd.args || {});
286
- const parsedArgs = parseArgs(opts.rawArgs, cmdArgs);
287
- const context = {
288
- rawArgs: opts.rawArgs,
289
- args: parsedArgs,
290
- data: opts.data,
291
- cmd
292
- };
293
- if (typeof cmd.setup === "function") {
294
- await cmd.setup(context);
295
- }
296
- let result;
297
- try {
298
- const subCommands = await resolveValue(cmd.subCommands);
299
- if (subCommands && Object.keys(subCommands).length > 0) {
300
- const subCommandArgIndex = opts.rawArgs.findIndex(
301
- (arg) => !arg.startsWith("-")
302
- );
303
- const subCommandName = opts.rawArgs[subCommandArgIndex];
304
- if (subCommandName) {
305
- if (!subCommands[subCommandName]) {
306
- throw new CLIError(
307
- `Unknown command \`${subCommandName}\``,
308
- "E_UNKNOWN_COMMAND"
309
- );
310
- }
311
- const subCommand = await resolveValue(subCommands[subCommandName]);
312
- if (subCommand) {
313
- await runCommand(subCommand, {
314
- rawArgs: opts.rawArgs.slice(subCommandArgIndex + 1)
315
- });
316
- }
317
- } else if (!cmd.run) {
318
- throw new CLIError(`No command specified.`, "E_NO_COMMAND");
319
- }
320
- }
321
- if (typeof cmd.run === "function") {
322
- result = await cmd.run(context);
323
- }
324
- } finally {
325
- if (typeof cmd.cleanup === "function") {
326
- await cmd.cleanup(context);
327
- }
328
- }
329
- return { result };
330
- }
331
- async function resolveSubCommand(cmd, rawArgs, parent) {
332
- const subCommands = await resolveValue(cmd.subCommands);
333
- if (subCommands && Object.keys(subCommands).length > 0) {
334
- const subCommandArgIndex = rawArgs.findIndex((arg) => !arg.startsWith("-"));
335
- const subCommandName = rawArgs[subCommandArgIndex];
336
- const subCommand = await resolveValue(subCommands[subCommandName]);
337
- if (subCommand) {
338
- return resolveSubCommand(
339
- subCommand,
340
- rawArgs.slice(subCommandArgIndex + 1),
341
- cmd
342
- );
343
- }
344
- }
345
- return [cmd, parent];
346
- }
347
-
348
- async function showUsage(cmd, parent) {
349
- try {
350
- consola__default.log(await renderUsage(cmd, parent) + "\n");
351
- } catch (error) {
352
- consola__default.error(error);
353
- }
354
- }
355
- async function renderUsage(cmd, parent) {
356
- const cmdMeta = await resolveValue(cmd.meta || {});
357
- const cmdArgs = resolveArgs(await resolveValue(cmd.args || {}));
358
- const parentMeta = await resolveValue(parent?.meta || {});
359
- const commandName = `${parentMeta.name ? `${parentMeta.name} ` : ""}` + (cmdMeta.name || process.argv[1]);
360
- const argLines = [];
361
- const posLines = [];
362
- const commandsLines = [];
363
- const usageLine = [];
364
- for (const arg of cmdArgs) {
365
- if (arg.type === "positional") {
366
- const name = arg.name.toUpperCase();
367
- const isRequired = arg.required !== false && arg.default === void 0;
368
- const defaultHint = arg.default ? `="${arg.default}"` : "";
369
- posLines.push([
370
- "`" + name + defaultHint + "`",
371
- arg.description || "",
372
- arg.valueHint ? `<${arg.valueHint}>` : ""
373
- ]);
374
- usageLine.push(isRequired ? `<${name}>` : `[${name}]`);
375
- } else {
376
- const isRequired = arg.required === true && arg.default === void 0;
377
- const argStr = (arg.type === "boolean" && arg.default === true ? [
378
- ...(arg.alias || []).map((a) => `--no-${a}`),
379
- `--no-${arg.name}`
380
- ].join(", ") : [...(arg.alias || []).map((a) => `-${a}`), `--${arg.name}`].join(
381
- ", "
382
- )) + (arg.type === "string" && (arg.valueHint || arg.default) ? `=${arg.valueHint ? `<${arg.valueHint}>` : `"${arg.default || ""}"`}` : "");
383
- argLines.push([
384
- "`" + argStr + (isRequired ? " (required)" : "") + "`",
385
- arg.description || ""
386
- ]);
387
- if (isRequired) {
388
- usageLine.push(argStr);
389
- }
390
- }
391
- }
392
- if (cmd.subCommands) {
393
- const commandNames = [];
394
- const subCommands = await resolveValue(cmd.subCommands);
395
- for (const [name, sub] of Object.entries(subCommands)) {
396
- const subCmd = await resolveValue(sub);
397
- const meta = await resolveValue(subCmd?.meta);
398
- commandsLines.push([`\`${name}\``, meta?.description || ""]);
399
- commandNames.push(name);
400
- }
401
- usageLine.push(commandNames.join("|"));
402
- }
403
- const usageLines = [];
404
- const version = cmdMeta.version || parentMeta.version;
405
- usageLines.push(
406
- utils.colors.gray(
407
- `${cmdMeta.description} (${commandName + (version ? ` v${version}` : "")})`
408
- ),
409
- ""
410
- );
411
- const hasOptions = argLines.length > 0 || posLines.length > 0;
412
- usageLines.push(
413
- `${utils.colors.underline(utils.colors.bold("USAGE"))} \`${commandName}${hasOptions ? " [OPTIONS]" : ""} ${usageLine.join(" ")}\``,
414
- ""
415
- );
416
- if (posLines.length > 0) {
417
- usageLines.push(utils.colors.underline(utils.colors.bold("ARGUMENTS")), "");
418
- usageLines.push(formatLineColumns(posLines, " "));
419
- usageLines.push("");
420
- }
421
- if (argLines.length > 0) {
422
- usageLines.push(utils.colors.underline(utils.colors.bold("OPTIONS")), "");
423
- usageLines.push(formatLineColumns(argLines, " "));
424
- usageLines.push("");
425
- }
426
- if (commandsLines.length > 0) {
427
- usageLines.push(utils.colors.underline(utils.colors.bold("COMMANDS")), "");
428
- usageLines.push(formatLineColumns(commandsLines, " "));
429
- usageLines.push(
430
- "",
431
- `Use \`${commandName} <command> --help\` for more information about a command.`
432
- );
433
- }
434
- return usageLines.filter((l) => typeof l === "string").join("\n");
435
- }
436
-
437
- async function runMain(cmd, opts = {}) {
438
- const rawArgs = opts.rawArgs || process.argv.slice(2);
439
- const showUsage$1 = opts.showUsage || showUsage;
440
- try {
441
- if (rawArgs.includes("--help") || rawArgs.includes("-h")) {
442
- await showUsage$1(...await resolveSubCommand(cmd, rawArgs));
443
- process.exit(0);
444
- } else if (rawArgs.length === 1 && rawArgs[0] === "--version") {
445
- const meta = typeof cmd.meta === "function" ? await cmd.meta() : await cmd.meta;
446
- if (!meta?.version) {
447
- throw new CLIError("No version specified", "E_NO_VERSION");
448
- }
449
- consola__default.log(meta.version);
450
- } else {
451
- await runCommand(cmd, { rawArgs });
452
- }
453
- } catch (error) {
454
- const isCLIError = error instanceof CLIError;
455
- if (!isCLIError) {
456
- consola__default.error(error, "\n");
457
- }
458
- if (isCLIError) {
459
- await showUsage$1(...await resolveSubCommand(cmd, rawArgs));
460
- }
461
- consola__default.error(error.message);
462
- process.exit(1);
463
- }
464
- }
465
- function createMain(cmd) {
466
- return (opts = {}) => runMain(cmd, opts);
467
- }
468
-
469
- exports.createMain = createMain;
470
- exports.defineCommand = defineCommand;
471
- exports.parseArgs = parseArgs;
472
- exports.renderUsage = renderUsage;
473
- exports.runCommand = runCommand;
474
- exports.runMain = runMain;
475
- exports.showUsage = showUsage;
@@ -1,80 +0,0 @@
1
- type ArgType = "boolean" | "string" | "positional" | undefined;
2
- type _ArgDef<T extends ArgType, VT extends boolean | string> = {
3
- type?: T;
4
- description?: string;
5
- valueHint?: string;
6
- alias?: string | string[];
7
- default?: VT;
8
- required?: boolean;
9
- };
10
- type BooleanArgDef = _ArgDef<"boolean", boolean>;
11
- type StringArgDef = _ArgDef<"string", string>;
12
- type PositionalArgDef = Omit<_ArgDef<"positional", string>, "alias">;
13
- type ArgDef = BooleanArgDef | StringArgDef | PositionalArgDef;
14
- type ArgsDef = Record<string, ArgDef>;
15
- type Arg = ArgDef & {
16
- name: string;
17
- alias: string[];
18
- };
19
- type ParsedArgs<T extends ArgsDef = ArgsDef> = {
20
- _: string[];
21
- } & Record<{
22
- [K in keyof T]: T[K] extends {
23
- type: "positional";
24
- } ? K : never;
25
- }[keyof T], string> & Record<{
26
- [K in keyof T]: T[K] extends {
27
- type: "string";
28
- } ? K : never;
29
- }[keyof T], string> & Record<{
30
- [K in keyof T]: T[K] extends {
31
- type: "boolean";
32
- } ? K : never;
33
- }[keyof T], boolean> & Record<string, string | boolean | string[]>;
34
- interface CommandMeta {
35
- name?: string;
36
- version?: string;
37
- description?: string;
38
- }
39
- type SubCommandsDef = Record<string, Resolvable<CommandDef<any>>>;
40
- type CommandDef<T extends ArgsDef = ArgsDef> = {
41
- meta?: Resolvable<CommandMeta>;
42
- args?: Resolvable<T>;
43
- subCommands?: Resolvable<SubCommandsDef>;
44
- setup?: (context: CommandContext<T>) => any | Promise<any>;
45
- cleanup?: (context: CommandContext<T>) => any | Promise<any>;
46
- run?: (context: CommandContext<T>) => any | Promise<any>;
47
- };
48
- type CommandContext<T extends ArgsDef = ArgsDef> = {
49
- rawArgs: string[];
50
- args: ParsedArgs<T>;
51
- cmd: CommandDef<T>;
52
- subCommand?: CommandDef<T>;
53
- data?: any;
54
- };
55
- type Awaitable<T> = () => T | Promise<T>;
56
- type Resolvable<T> = T | Promise<T> | (() => T) | (() => Promise<T>);
57
-
58
- declare function defineCommand<T extends ArgsDef = ArgsDef>(def: CommandDef<T>): CommandDef<T>;
59
- interface RunCommandOptions {
60
- rawArgs: string[];
61
- data?: any;
62
- showUsage?: boolean;
63
- }
64
- declare function runCommand<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, opts: RunCommandOptions): Promise<{
65
- result: unknown;
66
- }>;
67
-
68
- declare function showUsage<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, parent?: CommandDef<T>): Promise<void>;
69
- declare function renderUsage<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, parent?: CommandDef<T>): Promise<string>;
70
-
71
- interface RunMainOptions {
72
- rawArgs?: string[];
73
- showUsage?: typeof showUsage;
74
- }
75
- declare function runMain<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, opts?: RunMainOptions): Promise<void>;
76
- declare function createMain<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>): (opts?: RunMainOptions) => Promise<void>;
77
-
78
- declare function parseArgs<T extends ArgsDef = ArgsDef>(rawArgs: string[], argsDef: ArgsDef): ParsedArgs<T>;
79
-
80
- export { type Arg, type ArgDef, type ArgType, type ArgsDef, type Awaitable, type BooleanArgDef, type CommandContext, type CommandDef, type CommandMeta, type ParsedArgs, type PositionalArgDef, type Resolvable, type RunCommandOptions, type RunMainOptions, type StringArgDef, type SubCommandsDef, type _ArgDef, createMain, defineCommand, parseArgs, renderUsage, runCommand, runMain, showUsage };
@@ -1,80 +0,0 @@
1
- type ArgType = "boolean" | "string" | "positional" | undefined;
2
- type _ArgDef<T extends ArgType, VT extends boolean | string> = {
3
- type?: T;
4
- description?: string;
5
- valueHint?: string;
6
- alias?: string | string[];
7
- default?: VT;
8
- required?: boolean;
9
- };
10
- type BooleanArgDef = _ArgDef<"boolean", boolean>;
11
- type StringArgDef = _ArgDef<"string", string>;
12
- type PositionalArgDef = Omit<_ArgDef<"positional", string>, "alias">;
13
- type ArgDef = BooleanArgDef | StringArgDef | PositionalArgDef;
14
- type ArgsDef = Record<string, ArgDef>;
15
- type Arg = ArgDef & {
16
- name: string;
17
- alias: string[];
18
- };
19
- type ParsedArgs<T extends ArgsDef = ArgsDef> = {
20
- _: string[];
21
- } & Record<{
22
- [K in keyof T]: T[K] extends {
23
- type: "positional";
24
- } ? K : never;
25
- }[keyof T], string> & Record<{
26
- [K in keyof T]: T[K] extends {
27
- type: "string";
28
- } ? K : never;
29
- }[keyof T], string> & Record<{
30
- [K in keyof T]: T[K] extends {
31
- type: "boolean";
32
- } ? K : never;
33
- }[keyof T], boolean> & Record<string, string | boolean | string[]>;
34
- interface CommandMeta {
35
- name?: string;
36
- version?: string;
37
- description?: string;
38
- }
39
- type SubCommandsDef = Record<string, Resolvable<CommandDef<any>>>;
40
- type CommandDef<T extends ArgsDef = ArgsDef> = {
41
- meta?: Resolvable<CommandMeta>;
42
- args?: Resolvable<T>;
43
- subCommands?: Resolvable<SubCommandsDef>;
44
- setup?: (context: CommandContext<T>) => any | Promise<any>;
45
- cleanup?: (context: CommandContext<T>) => any | Promise<any>;
46
- run?: (context: CommandContext<T>) => any | Promise<any>;
47
- };
48
- type CommandContext<T extends ArgsDef = ArgsDef> = {
49
- rawArgs: string[];
50
- args: ParsedArgs<T>;
51
- cmd: CommandDef<T>;
52
- subCommand?: CommandDef<T>;
53
- data?: any;
54
- };
55
- type Awaitable<T> = () => T | Promise<T>;
56
- type Resolvable<T> = T | Promise<T> | (() => T) | (() => Promise<T>);
57
-
58
- declare function defineCommand<T extends ArgsDef = ArgsDef>(def: CommandDef<T>): CommandDef<T>;
59
- interface RunCommandOptions {
60
- rawArgs: string[];
61
- data?: any;
62
- showUsage?: boolean;
63
- }
64
- declare function runCommand<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, opts: RunCommandOptions): Promise<{
65
- result: unknown;
66
- }>;
67
-
68
- declare function showUsage<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, parent?: CommandDef<T>): Promise<void>;
69
- declare function renderUsage<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, parent?: CommandDef<T>): Promise<string>;
70
-
71
- interface RunMainOptions {
72
- rawArgs?: string[];
73
- showUsage?: typeof showUsage;
74
- }
75
- declare function runMain<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, opts?: RunMainOptions): Promise<void>;
76
- declare function createMain<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>): (opts?: RunMainOptions) => Promise<void>;
77
-
78
- declare function parseArgs<T extends ArgsDef = ArgsDef>(rawArgs: string[], argsDef: ArgsDef): ParsedArgs<T>;
79
-
80
- export { type Arg, type ArgDef, type ArgType, type ArgsDef, type Awaitable, type BooleanArgDef, type CommandContext, type CommandDef, type CommandMeta, type ParsedArgs, type PositionalArgDef, type Resolvable, type RunCommandOptions, type RunMainOptions, type StringArgDef, type SubCommandsDef, type _ArgDef, createMain, defineCommand, parseArgs, renderUsage, runCommand, runMain, showUsage };
@@ -1,47 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) Pooya Parsa <pooya@pi0.io>
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
22
-
23
- ---
24
-
25
- Prompt support is based on https://github.com/bombshell-dev/clack
26
-
27
- MIT License
28
-
29
- Copyright (c) Nate Moore
30
-
31
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
32
-
33
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
34
-
35
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36
-
37
- ---
38
-
39
- Color support is based on https://github.com/jorgebucaran/colorette
40
-
41
- Copyright © Jorge Bucaran <https://jorgebucaran.com>
42
-
43
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44
-
45
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
46
-
47
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.