knip 5.50.0 → 5.50.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 (311) hide show
  1. package/dist/CacheConsultant.d.ts +14 -0
  2. package/dist/ConfigurationChief.d.ts +182 -0
  3. package/dist/ConsoleStreamer.d.ts +12 -0
  4. package/dist/DependencyDeputy.d.ts +78 -0
  5. package/dist/IssueCollector.d.ts +39 -0
  6. package/dist/IssueFixer.d.ts +27 -0
  7. package/dist/PackageJsonPeeker.d.ts +13 -0
  8. package/dist/PrincipalFactory.d.ts +20 -0
  9. package/dist/ProjectPrincipal.d.ts +58 -0
  10. package/dist/WorkspaceWorker.d.ts +69 -0
  11. package/dist/binaries/bash-parser.d.ts +3 -0
  12. package/dist/binaries/fallback.d.ts +2 -0
  13. package/dist/binaries/index.d.ts +2 -0
  14. package/dist/binaries/package-manager/bun.d.ts +2 -0
  15. package/dist/binaries/package-manager/bunx.d.ts +3 -0
  16. package/dist/binaries/package-manager/index.d.ts +10 -0
  17. package/dist/binaries/package-manager/npm.d.ts +2 -0
  18. package/dist/binaries/package-manager/npx.d.ts +2 -0
  19. package/dist/binaries/package-manager/pnpm.d.ts +2 -0
  20. package/dist/binaries/package-manager/pnpx.d.ts +3 -0
  21. package/dist/binaries/package-manager/yarn.d.ts +2 -0
  22. package/dist/binaries/plugins.d.ts +2 -0
  23. package/dist/binaries/util.d.ts +3 -0
  24. package/dist/cli.d.ts +1 -0
  25. package/dist/compilers/astro.d.ts +6 -0
  26. package/dist/compilers/compilers.d.ts +5 -0
  27. package/dist/compilers/index.d.ts +997 -0
  28. package/dist/compilers/mdx.d.ts +6 -0
  29. package/dist/compilers/svelte.d.ts +6 -0
  30. package/dist/compilers/types.d.ts +7 -0
  31. package/dist/compilers/vue.d.ts +6 -0
  32. package/dist/constants.d.ts +26 -0
  33. package/dist/graph/analyze.d.ts +30 -0
  34. package/dist/graph/build.d.ts +40 -0
  35. package/dist/index.d.ts +11 -0
  36. package/dist/manifest/helpers.d.ts +9 -0
  37. package/dist/manifest/index.d.ts +12 -0
  38. package/dist/plugins/_template/index.d.ts +12 -0
  39. package/dist/plugins/_template/types.d.ts +4 -0
  40. package/dist/plugins/angular/index.d.ts +10 -0
  41. package/dist/plugins/angular/types.d.ts +1048 -0
  42. package/dist/plugins/astro/index.d.ts +11 -0
  43. package/dist/plugins/ava/index.d.ts +12 -0
  44. package/dist/plugins/ava/types.d.ts +8 -0
  45. package/dist/plugins/babel/helpers.d.ts +14 -0
  46. package/dist/plugins/babel/index.d.ts +12 -0
  47. package/dist/plugins/babel/types.d.ts +10 -0
  48. package/dist/plugins/c8/index.d.ts +10 -0
  49. package/dist/plugins/capacitor/index.d.ts +10 -0
  50. package/dist/plugins/capacitor/types.d.ts +3 -0
  51. package/dist/plugins/changesets/index.d.ts +11 -0
  52. package/dist/plugins/changesets/types.d.ts +3 -0
  53. package/dist/plugins/commitizen/index.d.ts +12 -0
  54. package/dist/plugins/commitizen/types.d.ts +3 -0
  55. package/dist/plugins/commitlint/index.d.ts +10 -0
  56. package/dist/plugins/commitlint/types.d.ts +12 -0
  57. package/dist/plugins/create-typescript-app/index.d.ts +8 -0
  58. package/dist/plugins/cspell/index.d.ts +10 -0
  59. package/dist/plugins/cspell/types.d.ts +3 -0
  60. package/dist/plugins/cucumber/index.d.ts +12 -0
  61. package/dist/plugins/cucumber/types.d.ts +7 -0
  62. package/dist/plugins/cypress/helpers.d.ts +3 -0
  63. package/dist/plugins/cypress/index.d.ts +12 -0
  64. package/dist/plugins/cypress/types.d.ts +6 -0
  65. package/dist/plugins/dependency-cruiser/index.d.ts +12 -0
  66. package/dist/plugins/dotenv/index.d.ts +8 -0
  67. package/dist/plugins/drizzle/index.d.ts +10 -0
  68. package/dist/plugins/drizzle/types.d.ts +3 -0
  69. package/dist/plugins/eleventy/helpers.d.ts +138 -0
  70. package/dist/plugins/eleventy/index.d.ts +14 -0
  71. package/dist/plugins/eleventy/types.d.ts +10 -0
  72. package/dist/plugins/eslint/helpers.d.ts +4 -0
  73. package/dist/plugins/eslint/index.d.ts +15 -0
  74. package/dist/plugins/eslint/types.d.ts +29 -0
  75. package/dist/plugins/expo/helpers.d.ts +20 -0
  76. package/dist/plugins/expo/index.d.ts +14 -0
  77. package/dist/plugins/expo/types.d.ts +28 -0
  78. package/dist/plugins/gatsby/index.d.ts +11 -0
  79. package/dist/plugins/gatsby/types.d.ts +15 -0
  80. package/dist/plugins/github-action/index.d.ts +9 -0
  81. package/dist/plugins/github-actions/index.d.ts +11 -0
  82. package/dist/plugins/github-actions/types.d.ts +20 -0
  83. package/dist/plugins/glob/index.d.ts +12 -0
  84. package/dist/plugins/graphql-codegen/index.d.ts +11 -0
  85. package/dist/plugins/graphql-codegen/types.d.ts +37 -0
  86. package/dist/plugins/husky/index.d.ts +10 -0
  87. package/dist/plugins/index.d.ts +788 -0
  88. package/dist/plugins/jest/helpers.d.ts +4 -0
  89. package/dist/plugins/jest/index.d.ts +15 -0
  90. package/dist/plugins/jest/types.d.ts +3 -0
  91. package/dist/plugins/karma/helpers.d.ts +7 -0
  92. package/dist/plugins/karma/index.d.ts +12 -0
  93. package/dist/plugins/karma/types.d.ts +22 -0
  94. package/dist/plugins/ladle/index.d.ts +13 -0
  95. package/dist/plugins/ladle/types.d.ts +4 -0
  96. package/dist/plugins/lefthook/index.d.ts +9 -0
  97. package/dist/plugins/lint-staged/index.d.ts +11 -0
  98. package/dist/plugins/lint-staged/types.d.ts +5 -0
  99. package/dist/plugins/linthtml/index.d.ts +11 -0
  100. package/dist/plugins/linthtml/types.d.ts +4 -0
  101. package/dist/plugins/lockfile-lint/index.d.ts +8 -0
  102. package/dist/plugins/lost-pixel/index.d.ts +8 -0
  103. package/dist/plugins/markdownlint/helpers.d.ts +1 -0
  104. package/dist/plugins/markdownlint/index.d.ts +10 -0
  105. package/dist/plugins/markdownlint/types.d.ts +3 -0
  106. package/dist/plugins/metro/index.d.ts +15 -0
  107. package/dist/plugins/metro/types.d.ts +13 -0
  108. package/dist/plugins/mocha/index.d.ts +15 -0
  109. package/dist/plugins/mocha/types.d.ts +4 -0
  110. package/dist/plugins/moonrepo/index.d.ts +11 -0
  111. package/dist/plugins/moonrepo/types.d.ts +7 -0
  112. package/dist/plugins/msw/index.d.ts +11 -0
  113. package/dist/plugins/msw/types.d.ts +3 -0
  114. package/dist/plugins/nest/index.d.ts +10 -0
  115. package/dist/plugins/nest/types.d.ts +3 -0
  116. package/dist/plugins/netlify/helpers.d.ts +2 -0
  117. package/dist/plugins/netlify/index.d.ts +12 -0
  118. package/dist/plugins/netlify/types.d.ts +11 -0
  119. package/dist/plugins/next/index.d.ts +10 -0
  120. package/dist/plugins/next/resolveFromAST.d.ts +2 -0
  121. package/dist/plugins/node/index.d.ts +16 -0
  122. package/dist/plugins/nodemon/index.d.ts +10 -0
  123. package/dist/plugins/npm-package-json-lint/index.d.ts +11 -0
  124. package/dist/plugins/npm-package-json-lint/types.d.ts +3 -0
  125. package/dist/plugins/nuxt/index.d.ts +14 -0
  126. package/dist/plugins/nuxt/types.d.ts +8 -0
  127. package/dist/plugins/nx/index.d.ts +14 -0
  128. package/dist/plugins/nx/types.d.ts +19 -0
  129. package/dist/plugins/nyc/index.d.ts +10 -0
  130. package/dist/plugins/nyc/types.d.ts +4 -0
  131. package/dist/plugins/oclif/index.d.ts +10 -0
  132. package/dist/plugins/oclif/types.d.ts +4 -0
  133. package/dist/plugins/playwright/index.d.ts +21 -0
  134. package/dist/plugins/playwright/types.d.ts +36 -0
  135. package/dist/plugins/playwright-ct/index.d.ts +11 -0
  136. package/dist/plugins/playwright-test/index.d.ts +13 -0
  137. package/dist/plugins/plop/index.d.ts +8 -0
  138. package/dist/plugins/postcss/index.d.ts +10 -0
  139. package/dist/plugins/postcss/types.d.ts +3 -0
  140. package/dist/plugins/preconstruct/index.d.ts +10 -0
  141. package/dist/plugins/preconstruct/types.d.ts +3 -0
  142. package/dist/plugins/prettier/index.d.ts +10 -0
  143. package/dist/plugins/prettier/types.d.ts +8 -0
  144. package/dist/plugins/react-cosmos/index.d.ts +12 -0
  145. package/dist/plugins/react-cosmos/types.d.ts +5 -0
  146. package/dist/plugins/react-router/index.d.ts +10 -0
  147. package/dist/plugins/react-router/types.d.ts +7 -0
  148. package/dist/plugins/release-it/index.d.ts +10 -0
  149. package/dist/plugins/release-it/types.d.ts +10 -0
  150. package/dist/plugins/remark/index.d.ts +11 -0
  151. package/dist/plugins/remark/types.d.ts +3 -0
  152. package/dist/plugins/remix/index.d.ts +9 -0
  153. package/dist/plugins/rollup/index.d.ts +10 -0
  154. package/dist/plugins/rsbuild/index.d.ts +10 -0
  155. package/dist/plugins/rsbuild/types.d.ts +3 -0
  156. package/dist/plugins/rspack/index.d.ts +10 -0
  157. package/dist/plugins/semantic-release/index.d.ts +12 -0
  158. package/dist/plugins/semantic-release/types.d.ts +3 -0
  159. package/dist/plugins/sentry/index.d.ts +8 -0
  160. package/dist/plugins/simple-git-hooks/index.d.ts +10 -0
  161. package/dist/plugins/simple-git-hooks/types.d.ts +3 -0
  162. package/dist/plugins/size-limit/index.d.ts +8 -0
  163. package/dist/plugins/sst/index.d.ts +9 -0
  164. package/dist/plugins/sst/resolveFromAST.d.ts +2 -0
  165. package/dist/plugins/starlight/index.d.ts +9 -0
  166. package/dist/plugins/starlight/resolveFromAST.d.ts +2 -0
  167. package/dist/plugins/storybook/index.d.ts +13 -0
  168. package/dist/plugins/storybook/types.d.ts +20 -0
  169. package/dist/plugins/stryker/index.d.ts +10 -0
  170. package/dist/plugins/stryker/types.d.ts +5 -0
  171. package/dist/plugins/stylelint/index.d.ts +10 -0
  172. package/dist/plugins/stylelint/types.d.ts +8 -0
  173. package/dist/plugins/svelte/index.d.ts +9 -0
  174. package/dist/plugins/syncpack/index.d.ts +8 -0
  175. package/dist/plugins/tailwind/index.d.ts +8 -0
  176. package/dist/plugins/tanstack-router/index.d.ts +12 -0
  177. package/dist/plugins/tanstack-router/resolveFromAST.d.ts +2 -0
  178. package/dist/plugins/tanstack-router/types.d.ts +7 -0
  179. package/dist/plugins/travis/index.d.ts +10 -0
  180. package/dist/plugins/ts-node/index.d.ts +15 -0
  181. package/dist/plugins/tsup/index.d.ts +13 -0
  182. package/dist/plugins/tsup/types.d.ts +7 -0
  183. package/dist/plugins/tsx/index.d.ts +9 -0
  184. package/dist/plugins/typedoc/index.d.ts +16 -0
  185. package/dist/plugins/typedoc/types.d.ts +4 -0
  186. package/dist/plugins/typescript/index.d.ts +21 -0
  187. package/dist/plugins/unbuild/index.d.ts +10 -0
  188. package/dist/plugins/unbuild/types.d.ts +13 -0
  189. package/dist/plugins/unocss/index.d.ts +8 -0
  190. package/dist/plugins/vercel-og/index.d.ts +8 -0
  191. package/dist/plugins/vike/index.d.ts +8 -0
  192. package/dist/plugins/vite/index.d.ts +11 -0
  193. package/dist/plugins/vitest/helpers.d.ts +3 -0
  194. package/dist/plugins/vitest/index.d.ts +17 -0
  195. package/dist/plugins/vitest/types.d.ts +39 -0
  196. package/dist/plugins/vue/index.d.ts +10 -0
  197. package/dist/plugins/vue/types.d.ts +5 -0
  198. package/dist/plugins/webdriver-io/index.d.ts +10 -0
  199. package/dist/plugins/webdriver-io/types.d.ts +3 -0
  200. package/dist/plugins/webpack/index.d.ts +19 -0
  201. package/dist/plugins/webpack/types.d.ts +12 -0
  202. package/dist/plugins/wireit/index.d.ts +10 -0
  203. package/dist/plugins/wireit/types.d.ts +3 -0
  204. package/dist/plugins/wrangler/index.d.ts +10 -0
  205. package/dist/plugins/wrangler/types.d.ts +3 -0
  206. package/dist/plugins/xo/index.d.ts +11 -0
  207. package/dist/plugins/xo/types.d.ts +12 -0
  208. package/dist/plugins/yarn/index.d.ts +9 -0
  209. package/dist/plugins/yorkie/index.d.ts +11 -0
  210. package/dist/plugins.d.ts +7 -0
  211. package/dist/reporters/codeclimate.d.ts +3 -0
  212. package/dist/reporters/codeowners.d.ts +3 -0
  213. package/dist/reporters/compact.d.ts +3 -0
  214. package/dist/reporters/disclosure.d.ts +3 -0
  215. package/dist/reporters/index.d.ts +10 -0
  216. package/dist/reporters/json.d.ts +3 -0
  217. package/dist/reporters/markdown.d.ts +3 -0
  218. package/dist/reporters/symbols.d.ts +3 -0
  219. package/dist/reporters/util.d.ts +22 -0
  220. package/dist/reporters/watch.d.ts +12 -0
  221. package/dist/schema/configuration.d.ts +5495 -0
  222. package/dist/schema/plugins.d.ts +2227 -0
  223. package/dist/types/PluginNames.d.ts +2 -0
  224. package/dist/types/args.d.ts +14 -0
  225. package/dist/types/cli.d.ts +27 -0
  226. package/dist/types/config.d.ts +119 -0
  227. package/dist/types/exports.d.ts +24 -0
  228. package/dist/types/imports.d.ts +12 -0
  229. package/dist/types/issues.d.ts +88 -0
  230. package/dist/types/module-graph.d.ts +67 -0
  231. package/dist/types/package-json.d.ts +53 -0
  232. package/dist/types/project.d.ts +18 -0
  233. package/dist/types/workspace.d.ts +27 -0
  234. package/dist/typescript/SourceFile.d.ts +35 -0
  235. package/dist/typescript/SourceFileManager.d.ts +19 -0
  236. package/dist/typescript/ast-helpers.d.ts +38 -0
  237. package/dist/typescript/create-hosts.d.ts +21 -0
  238. package/dist/typescript/find-internal-references.d.ts +4 -0
  239. package/dist/typescript/get-imports-and-exports.d.ts +18 -0
  240. package/dist/typescript/resolve-module-names.d.ts +4 -0
  241. package/dist/typescript/visitors/dynamic-imports/importCall.d.ts +3 -0
  242. package/dist/typescript/visitors/dynamic-imports/importType.d.ts +3 -0
  243. package/dist/typescript/visitors/dynamic-imports/index.d.ts +3 -0
  244. package/dist/typescript/visitors/dynamic-imports/jsDocType.d.ts +4 -0
  245. package/dist/typescript/visitors/dynamic-imports/requireCall.d.ts +3 -0
  246. package/dist/typescript/visitors/dynamic-imports/resolveCall.d.ts +3 -0
  247. package/dist/typescript/visitors/exports/exportAssignment.d.ts +3 -0
  248. package/dist/typescript/visitors/exports/exportDeclaration.d.ts +3 -0
  249. package/dist/typescript/visitors/exports/exportKeyword.d.ts +3 -0
  250. package/dist/typescript/visitors/exports/exportsAccessExpression.d.ts +3 -0
  251. package/dist/typescript/visitors/exports/index.d.ts +3 -0
  252. package/dist/typescript/visitors/exports/moduleExportsAccessExpression.d.ts +3 -0
  253. package/dist/typescript/visitors/helpers.d.ts +8 -0
  254. package/dist/typescript/visitors/imports/importDeclaration.d.ts +3 -0
  255. package/dist/typescript/visitors/imports/importEqualsDeclaration.d.ts +3 -0
  256. package/dist/typescript/visitors/imports/index.d.ts +3 -0
  257. package/dist/typescript/visitors/imports/reExportDeclaration.d.ts +3 -0
  258. package/dist/typescript/visitors/index.d.ts +12 -0
  259. package/dist/typescript/visitors/scripts/bun.d.ts +3 -0
  260. package/dist/typescript/visitors/scripts/execa.d.ts +3 -0
  261. package/dist/typescript/visitors/scripts/index.d.ts +3 -0
  262. package/dist/typescript/visitors/scripts/zx.d.ts +3 -0
  263. package/dist/util/Performance.d.ts +26 -0
  264. package/dist/util/array.d.ts +5 -0
  265. package/dist/util/cli-arguments.d.ts +44 -0
  266. package/dist/util/codeowners.d.ts +2 -0
  267. package/dist/util/create-workspace-graph.d.ts +3 -0
  268. package/dist/util/debug.d.ts +4 -0
  269. package/dist/util/empty.d.ts +1 -0
  270. package/dist/util/errors.d.ts +13 -0
  271. package/dist/util/file-entry-cache.d.ts +29 -0
  272. package/dist/util/fs.d.ts +9 -0
  273. package/dist/util/get-included-issue-types.d.ts +18 -0
  274. package/dist/util/get-referenced-inputs.d.ts +5 -0
  275. package/dist/util/git.d.ts +1 -0
  276. package/dist/util/glob-core.d.ts +28 -0
  277. package/dist/util/glob.d.ts +16 -0
  278. package/dist/util/graph-sequencer.d.ts +9 -0
  279. package/dist/util/has-strictly-ns-references.d.ts +4 -0
  280. package/dist/util/input.d.ts +43 -0
  281. package/dist/util/is-identifier-referenced.d.ts +9 -0
  282. package/dist/util/issue-initializers.d.ts +4 -0
  283. package/dist/util/jiti.d.ts +1 -0
  284. package/dist/util/loader.d.ts +1 -0
  285. package/dist/util/log.d.ts +2 -0
  286. package/dist/util/map-workspaces.d.ts +5 -0
  287. package/dist/util/math.d.ts +6 -0
  288. package/dist/util/module-graph.d.ts +6 -0
  289. package/dist/util/modules.d.ts +10 -0
  290. package/dist/util/object.d.ts +4 -0
  291. package/dist/util/package-json.d.ts +14 -0
  292. package/dist/util/package-name.d.ts +2 -0
  293. package/dist/util/path.d.ts +13 -0
  294. package/dist/util/plugin-config.d.ts +24 -0
  295. package/dist/util/plugin.d.ts +9 -0
  296. package/dist/util/regex.d.ts +3 -0
  297. package/dist/util/remove-export.d.ts +8 -0
  298. package/dist/util/reporter.d.ts +3 -0
  299. package/dist/util/require.d.ts +1 -0
  300. package/dist/util/resolve.d.ts +2 -0
  301. package/dist/util/string.d.ts +1 -0
  302. package/dist/util/tag.d.ts +5 -0
  303. package/dist/util/to-source-path.d.ts +5 -0
  304. package/dist/util/trace.d.ts +20 -0
  305. package/dist/util/tsconfig-loader.d.ts +6 -0
  306. package/dist/util/unwrap-function.d.ts +1 -0
  307. package/dist/util/watch.d.ts +25 -0
  308. package/dist/util/workspace.d.ts +1 -0
  309. package/dist/version.d.ts +1 -0
  310. package/dist/version.js +1 -1
  311. package/package.json +1 -1
@@ -0,0 +1,2227 @@
1
+ import { z } from 'zod';
2
+ export declare const globSchema: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
3
+ export declare const pluginSchema: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
4
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
5
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
6
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ config?: string | string[] | undefined;
9
+ entry?: string | string[] | undefined;
10
+ project?: string | string[] | undefined;
11
+ }, {
12
+ config?: string | string[] | undefined;
13
+ entry?: string | string[] | undefined;
14
+ project?: string | string[] | undefined;
15
+ }>]>;
16
+ export declare const pluginsSchema: z.ZodObject<{
17
+ angular: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
18
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
19
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
20
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
21
+ }, "strip", z.ZodTypeAny, {
22
+ config?: string | string[] | undefined;
23
+ entry?: string | string[] | undefined;
24
+ project?: string | string[] | undefined;
25
+ }, {
26
+ config?: string | string[] | undefined;
27
+ entry?: string | string[] | undefined;
28
+ project?: string | string[] | undefined;
29
+ }>]>;
30
+ astro: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
31
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
32
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
33
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
34
+ }, "strip", z.ZodTypeAny, {
35
+ config?: string | string[] | undefined;
36
+ entry?: string | string[] | undefined;
37
+ project?: string | string[] | undefined;
38
+ }, {
39
+ config?: string | string[] | undefined;
40
+ entry?: string | string[] | undefined;
41
+ project?: string | string[] | undefined;
42
+ }>]>;
43
+ ava: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
44
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
45
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
46
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ config?: string | string[] | undefined;
49
+ entry?: string | string[] | undefined;
50
+ project?: string | string[] | undefined;
51
+ }, {
52
+ config?: string | string[] | undefined;
53
+ entry?: string | string[] | undefined;
54
+ project?: string | string[] | undefined;
55
+ }>]>;
56
+ babel: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
57
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
58
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
59
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
60
+ }, "strip", z.ZodTypeAny, {
61
+ config?: string | string[] | undefined;
62
+ entry?: string | string[] | undefined;
63
+ project?: string | string[] | undefined;
64
+ }, {
65
+ config?: string | string[] | undefined;
66
+ entry?: string | string[] | undefined;
67
+ project?: string | string[] | undefined;
68
+ }>]>;
69
+ c8: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
70
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
71
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
72
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
73
+ }, "strip", z.ZodTypeAny, {
74
+ config?: string | string[] | undefined;
75
+ entry?: string | string[] | undefined;
76
+ project?: string | string[] | undefined;
77
+ }, {
78
+ config?: string | string[] | undefined;
79
+ entry?: string | string[] | undefined;
80
+ project?: string | string[] | undefined;
81
+ }>]>;
82
+ capacitor: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
83
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
84
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
85
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
86
+ }, "strip", z.ZodTypeAny, {
87
+ config?: string | string[] | undefined;
88
+ entry?: string | string[] | undefined;
89
+ project?: string | string[] | undefined;
90
+ }, {
91
+ config?: string | string[] | undefined;
92
+ entry?: string | string[] | undefined;
93
+ project?: string | string[] | undefined;
94
+ }>]>;
95
+ changesets: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
96
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
97
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
98
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
99
+ }, "strip", z.ZodTypeAny, {
100
+ config?: string | string[] | undefined;
101
+ entry?: string | string[] | undefined;
102
+ project?: string | string[] | undefined;
103
+ }, {
104
+ config?: string | string[] | undefined;
105
+ entry?: string | string[] | undefined;
106
+ project?: string | string[] | undefined;
107
+ }>]>;
108
+ commitizen: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
109
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
110
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
111
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
112
+ }, "strip", z.ZodTypeAny, {
113
+ config?: string | string[] | undefined;
114
+ entry?: string | string[] | undefined;
115
+ project?: string | string[] | undefined;
116
+ }, {
117
+ config?: string | string[] | undefined;
118
+ entry?: string | string[] | undefined;
119
+ project?: string | string[] | undefined;
120
+ }>]>;
121
+ commitlint: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
122
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
123
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
124
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
125
+ }, "strip", z.ZodTypeAny, {
126
+ config?: string | string[] | undefined;
127
+ entry?: string | string[] | undefined;
128
+ project?: string | string[] | undefined;
129
+ }, {
130
+ config?: string | string[] | undefined;
131
+ entry?: string | string[] | undefined;
132
+ project?: string | string[] | undefined;
133
+ }>]>;
134
+ 'create-typescript-app': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
135
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
136
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
137
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
138
+ }, "strip", z.ZodTypeAny, {
139
+ config?: string | string[] | undefined;
140
+ entry?: string | string[] | undefined;
141
+ project?: string | string[] | undefined;
142
+ }, {
143
+ config?: string | string[] | undefined;
144
+ entry?: string | string[] | undefined;
145
+ project?: string | string[] | undefined;
146
+ }>]>;
147
+ cspell: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
148
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
149
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
150
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
151
+ }, "strip", z.ZodTypeAny, {
152
+ config?: string | string[] | undefined;
153
+ entry?: string | string[] | undefined;
154
+ project?: string | string[] | undefined;
155
+ }, {
156
+ config?: string | string[] | undefined;
157
+ entry?: string | string[] | undefined;
158
+ project?: string | string[] | undefined;
159
+ }>]>;
160
+ cucumber: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
161
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
162
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
163
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
164
+ }, "strip", z.ZodTypeAny, {
165
+ config?: string | string[] | undefined;
166
+ entry?: string | string[] | undefined;
167
+ project?: string | string[] | undefined;
168
+ }, {
169
+ config?: string | string[] | undefined;
170
+ entry?: string | string[] | undefined;
171
+ project?: string | string[] | undefined;
172
+ }>]>;
173
+ cypress: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
174
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
175
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
176
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
177
+ }, "strip", z.ZodTypeAny, {
178
+ config?: string | string[] | undefined;
179
+ entry?: string | string[] | undefined;
180
+ project?: string | string[] | undefined;
181
+ }, {
182
+ config?: string | string[] | undefined;
183
+ entry?: string | string[] | undefined;
184
+ project?: string | string[] | undefined;
185
+ }>]>;
186
+ 'dependency-cruiser': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
187
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
188
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
189
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
190
+ }, "strip", z.ZodTypeAny, {
191
+ config?: string | string[] | undefined;
192
+ entry?: string | string[] | undefined;
193
+ project?: string | string[] | undefined;
194
+ }, {
195
+ config?: string | string[] | undefined;
196
+ entry?: string | string[] | undefined;
197
+ project?: string | string[] | undefined;
198
+ }>]>;
199
+ dotenv: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
200
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
201
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
202
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
203
+ }, "strip", z.ZodTypeAny, {
204
+ config?: string | string[] | undefined;
205
+ entry?: string | string[] | undefined;
206
+ project?: string | string[] | undefined;
207
+ }, {
208
+ config?: string | string[] | undefined;
209
+ entry?: string | string[] | undefined;
210
+ project?: string | string[] | undefined;
211
+ }>]>;
212
+ drizzle: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
213
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
214
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
215
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
216
+ }, "strip", z.ZodTypeAny, {
217
+ config?: string | string[] | undefined;
218
+ entry?: string | string[] | undefined;
219
+ project?: string | string[] | undefined;
220
+ }, {
221
+ config?: string | string[] | undefined;
222
+ entry?: string | string[] | undefined;
223
+ project?: string | string[] | undefined;
224
+ }>]>;
225
+ eleventy: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
226
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
227
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
228
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
229
+ }, "strip", z.ZodTypeAny, {
230
+ config?: string | string[] | undefined;
231
+ entry?: string | string[] | undefined;
232
+ project?: string | string[] | undefined;
233
+ }, {
234
+ config?: string | string[] | undefined;
235
+ entry?: string | string[] | undefined;
236
+ project?: string | string[] | undefined;
237
+ }>]>;
238
+ eslint: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
239
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
240
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
241
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
242
+ }, "strip", z.ZodTypeAny, {
243
+ config?: string | string[] | undefined;
244
+ entry?: string | string[] | undefined;
245
+ project?: string | string[] | undefined;
246
+ }, {
247
+ config?: string | string[] | undefined;
248
+ entry?: string | string[] | undefined;
249
+ project?: string | string[] | undefined;
250
+ }>]>;
251
+ expo: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
252
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
253
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
254
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
255
+ }, "strip", z.ZodTypeAny, {
256
+ config?: string | string[] | undefined;
257
+ entry?: string | string[] | undefined;
258
+ project?: string | string[] | undefined;
259
+ }, {
260
+ config?: string | string[] | undefined;
261
+ entry?: string | string[] | undefined;
262
+ project?: string | string[] | undefined;
263
+ }>]>;
264
+ gatsby: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
265
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
266
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
267
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
268
+ }, "strip", z.ZodTypeAny, {
269
+ config?: string | string[] | undefined;
270
+ entry?: string | string[] | undefined;
271
+ project?: string | string[] | undefined;
272
+ }, {
273
+ config?: string | string[] | undefined;
274
+ entry?: string | string[] | undefined;
275
+ project?: string | string[] | undefined;
276
+ }>]>;
277
+ 'github-action': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
278
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
279
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
280
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
281
+ }, "strip", z.ZodTypeAny, {
282
+ config?: string | string[] | undefined;
283
+ entry?: string | string[] | undefined;
284
+ project?: string | string[] | undefined;
285
+ }, {
286
+ config?: string | string[] | undefined;
287
+ entry?: string | string[] | undefined;
288
+ project?: string | string[] | undefined;
289
+ }>]>;
290
+ 'github-actions': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
291
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
292
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
293
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
294
+ }, "strip", z.ZodTypeAny, {
295
+ config?: string | string[] | undefined;
296
+ entry?: string | string[] | undefined;
297
+ project?: string | string[] | undefined;
298
+ }, {
299
+ config?: string | string[] | undefined;
300
+ entry?: string | string[] | undefined;
301
+ project?: string | string[] | undefined;
302
+ }>]>;
303
+ glob: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
304
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
305
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
306
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
307
+ }, "strip", z.ZodTypeAny, {
308
+ config?: string | string[] | undefined;
309
+ entry?: string | string[] | undefined;
310
+ project?: string | string[] | undefined;
311
+ }, {
312
+ config?: string | string[] | undefined;
313
+ entry?: string | string[] | undefined;
314
+ project?: string | string[] | undefined;
315
+ }>]>;
316
+ 'graphql-codegen': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
317
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
318
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
319
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
320
+ }, "strip", z.ZodTypeAny, {
321
+ config?: string | string[] | undefined;
322
+ entry?: string | string[] | undefined;
323
+ project?: string | string[] | undefined;
324
+ }, {
325
+ config?: string | string[] | undefined;
326
+ entry?: string | string[] | undefined;
327
+ project?: string | string[] | undefined;
328
+ }>]>;
329
+ husky: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
330
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
331
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
332
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
333
+ }, "strip", z.ZodTypeAny, {
334
+ config?: string | string[] | undefined;
335
+ entry?: string | string[] | undefined;
336
+ project?: string | string[] | undefined;
337
+ }, {
338
+ config?: string | string[] | undefined;
339
+ entry?: string | string[] | undefined;
340
+ project?: string | string[] | undefined;
341
+ }>]>;
342
+ jest: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
343
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
344
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
345
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
346
+ }, "strip", z.ZodTypeAny, {
347
+ config?: string | string[] | undefined;
348
+ entry?: string | string[] | undefined;
349
+ project?: string | string[] | undefined;
350
+ }, {
351
+ config?: string | string[] | undefined;
352
+ entry?: string | string[] | undefined;
353
+ project?: string | string[] | undefined;
354
+ }>]>;
355
+ karma: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
356
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
357
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
358
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
359
+ }, "strip", z.ZodTypeAny, {
360
+ config?: string | string[] | undefined;
361
+ entry?: string | string[] | undefined;
362
+ project?: string | string[] | undefined;
363
+ }, {
364
+ config?: string | string[] | undefined;
365
+ entry?: string | string[] | undefined;
366
+ project?: string | string[] | undefined;
367
+ }>]>;
368
+ ladle: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
369
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
370
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
371
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
372
+ }, "strip", z.ZodTypeAny, {
373
+ config?: string | string[] | undefined;
374
+ entry?: string | string[] | undefined;
375
+ project?: string | string[] | undefined;
376
+ }, {
377
+ config?: string | string[] | undefined;
378
+ entry?: string | string[] | undefined;
379
+ project?: string | string[] | undefined;
380
+ }>]>;
381
+ lefthook: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
382
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
383
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
384
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
385
+ }, "strip", z.ZodTypeAny, {
386
+ config?: string | string[] | undefined;
387
+ entry?: string | string[] | undefined;
388
+ project?: string | string[] | undefined;
389
+ }, {
390
+ config?: string | string[] | undefined;
391
+ entry?: string | string[] | undefined;
392
+ project?: string | string[] | undefined;
393
+ }>]>;
394
+ 'lint-staged': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
395
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
396
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
397
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
398
+ }, "strip", z.ZodTypeAny, {
399
+ config?: string | string[] | undefined;
400
+ entry?: string | string[] | undefined;
401
+ project?: string | string[] | undefined;
402
+ }, {
403
+ config?: string | string[] | undefined;
404
+ entry?: string | string[] | undefined;
405
+ project?: string | string[] | undefined;
406
+ }>]>;
407
+ linthtml: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
408
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
409
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
410
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
411
+ }, "strip", z.ZodTypeAny, {
412
+ config?: string | string[] | undefined;
413
+ entry?: string | string[] | undefined;
414
+ project?: string | string[] | undefined;
415
+ }, {
416
+ config?: string | string[] | undefined;
417
+ entry?: string | string[] | undefined;
418
+ project?: string | string[] | undefined;
419
+ }>]>;
420
+ 'lockfile-lint': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
421
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
422
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
423
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
424
+ }, "strip", z.ZodTypeAny, {
425
+ config?: string | string[] | undefined;
426
+ entry?: string | string[] | undefined;
427
+ project?: string | string[] | undefined;
428
+ }, {
429
+ config?: string | string[] | undefined;
430
+ entry?: string | string[] | undefined;
431
+ project?: string | string[] | undefined;
432
+ }>]>;
433
+ 'lost-pixel': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
434
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
435
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
436
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
437
+ }, "strip", z.ZodTypeAny, {
438
+ config?: string | string[] | undefined;
439
+ entry?: string | string[] | undefined;
440
+ project?: string | string[] | undefined;
441
+ }, {
442
+ config?: string | string[] | undefined;
443
+ entry?: string | string[] | undefined;
444
+ project?: string | string[] | undefined;
445
+ }>]>;
446
+ markdownlint: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
447
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
448
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
449
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
450
+ }, "strip", z.ZodTypeAny, {
451
+ config?: string | string[] | undefined;
452
+ entry?: string | string[] | undefined;
453
+ project?: string | string[] | undefined;
454
+ }, {
455
+ config?: string | string[] | undefined;
456
+ entry?: string | string[] | undefined;
457
+ project?: string | string[] | undefined;
458
+ }>]>;
459
+ metro: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
460
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
461
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
462
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
463
+ }, "strip", z.ZodTypeAny, {
464
+ config?: string | string[] | undefined;
465
+ entry?: string | string[] | undefined;
466
+ project?: string | string[] | undefined;
467
+ }, {
468
+ config?: string | string[] | undefined;
469
+ entry?: string | string[] | undefined;
470
+ project?: string | string[] | undefined;
471
+ }>]>;
472
+ mocha: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
473
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
474
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
475
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
476
+ }, "strip", z.ZodTypeAny, {
477
+ config?: string | string[] | undefined;
478
+ entry?: string | string[] | undefined;
479
+ project?: string | string[] | undefined;
480
+ }, {
481
+ config?: string | string[] | undefined;
482
+ entry?: string | string[] | undefined;
483
+ project?: string | string[] | undefined;
484
+ }>]>;
485
+ moonrepo: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
486
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
487
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
488
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
489
+ }, "strip", z.ZodTypeAny, {
490
+ config?: string | string[] | undefined;
491
+ entry?: string | string[] | undefined;
492
+ project?: string | string[] | undefined;
493
+ }, {
494
+ config?: string | string[] | undefined;
495
+ entry?: string | string[] | undefined;
496
+ project?: string | string[] | undefined;
497
+ }>]>;
498
+ msw: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
499
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
500
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
501
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
502
+ }, "strip", z.ZodTypeAny, {
503
+ config?: string | string[] | undefined;
504
+ entry?: string | string[] | undefined;
505
+ project?: string | string[] | undefined;
506
+ }, {
507
+ config?: string | string[] | undefined;
508
+ entry?: string | string[] | undefined;
509
+ project?: string | string[] | undefined;
510
+ }>]>;
511
+ nest: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
512
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
513
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
514
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
515
+ }, "strip", z.ZodTypeAny, {
516
+ config?: string | string[] | undefined;
517
+ entry?: string | string[] | undefined;
518
+ project?: string | string[] | undefined;
519
+ }, {
520
+ config?: string | string[] | undefined;
521
+ entry?: string | string[] | undefined;
522
+ project?: string | string[] | undefined;
523
+ }>]>;
524
+ netlify: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
525
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
526
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
527
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
528
+ }, "strip", z.ZodTypeAny, {
529
+ config?: string | string[] | undefined;
530
+ entry?: string | string[] | undefined;
531
+ project?: string | string[] | undefined;
532
+ }, {
533
+ config?: string | string[] | undefined;
534
+ entry?: string | string[] | undefined;
535
+ project?: string | string[] | undefined;
536
+ }>]>;
537
+ next: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
538
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
539
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
540
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
541
+ }, "strip", z.ZodTypeAny, {
542
+ config?: string | string[] | undefined;
543
+ entry?: string | string[] | undefined;
544
+ project?: string | string[] | undefined;
545
+ }, {
546
+ config?: string | string[] | undefined;
547
+ entry?: string | string[] | undefined;
548
+ project?: string | string[] | undefined;
549
+ }>]>;
550
+ node: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
551
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
552
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
553
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
554
+ }, "strip", z.ZodTypeAny, {
555
+ config?: string | string[] | undefined;
556
+ entry?: string | string[] | undefined;
557
+ project?: string | string[] | undefined;
558
+ }, {
559
+ config?: string | string[] | undefined;
560
+ entry?: string | string[] | undefined;
561
+ project?: string | string[] | undefined;
562
+ }>]>;
563
+ nodemon: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
564
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
565
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
566
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
567
+ }, "strip", z.ZodTypeAny, {
568
+ config?: string | string[] | undefined;
569
+ entry?: string | string[] | undefined;
570
+ project?: string | string[] | undefined;
571
+ }, {
572
+ config?: string | string[] | undefined;
573
+ entry?: string | string[] | undefined;
574
+ project?: string | string[] | undefined;
575
+ }>]>;
576
+ 'npm-package-json-lint': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
577
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
578
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
579
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
580
+ }, "strip", z.ZodTypeAny, {
581
+ config?: string | string[] | undefined;
582
+ entry?: string | string[] | undefined;
583
+ project?: string | string[] | undefined;
584
+ }, {
585
+ config?: string | string[] | undefined;
586
+ entry?: string | string[] | undefined;
587
+ project?: string | string[] | undefined;
588
+ }>]>;
589
+ nuxt: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
590
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
591
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
592
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
593
+ }, "strip", z.ZodTypeAny, {
594
+ config?: string | string[] | undefined;
595
+ entry?: string | string[] | undefined;
596
+ project?: string | string[] | undefined;
597
+ }, {
598
+ config?: string | string[] | undefined;
599
+ entry?: string | string[] | undefined;
600
+ project?: string | string[] | undefined;
601
+ }>]>;
602
+ nx: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
603
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
604
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
605
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
606
+ }, "strip", z.ZodTypeAny, {
607
+ config?: string | string[] | undefined;
608
+ entry?: string | string[] | undefined;
609
+ project?: string | string[] | undefined;
610
+ }, {
611
+ config?: string | string[] | undefined;
612
+ entry?: string | string[] | undefined;
613
+ project?: string | string[] | undefined;
614
+ }>]>;
615
+ nyc: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
616
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
617
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
618
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
619
+ }, "strip", z.ZodTypeAny, {
620
+ config?: string | string[] | undefined;
621
+ entry?: string | string[] | undefined;
622
+ project?: string | string[] | undefined;
623
+ }, {
624
+ config?: string | string[] | undefined;
625
+ entry?: string | string[] | undefined;
626
+ project?: string | string[] | undefined;
627
+ }>]>;
628
+ oclif: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
629
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
630
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
631
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
632
+ }, "strip", z.ZodTypeAny, {
633
+ config?: string | string[] | undefined;
634
+ entry?: string | string[] | undefined;
635
+ project?: string | string[] | undefined;
636
+ }, {
637
+ config?: string | string[] | undefined;
638
+ entry?: string | string[] | undefined;
639
+ project?: string | string[] | undefined;
640
+ }>]>;
641
+ playwright: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
642
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
643
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
644
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
645
+ }, "strip", z.ZodTypeAny, {
646
+ config?: string | string[] | undefined;
647
+ entry?: string | string[] | undefined;
648
+ project?: string | string[] | undefined;
649
+ }, {
650
+ config?: string | string[] | undefined;
651
+ entry?: string | string[] | undefined;
652
+ project?: string | string[] | undefined;
653
+ }>]>;
654
+ 'playwright-ct': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
655
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
656
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
657
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
658
+ }, "strip", z.ZodTypeAny, {
659
+ config?: string | string[] | undefined;
660
+ entry?: string | string[] | undefined;
661
+ project?: string | string[] | undefined;
662
+ }, {
663
+ config?: string | string[] | undefined;
664
+ entry?: string | string[] | undefined;
665
+ project?: string | string[] | undefined;
666
+ }>]>;
667
+ 'playwright-test': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
668
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
669
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
670
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
671
+ }, "strip", z.ZodTypeAny, {
672
+ config?: string | string[] | undefined;
673
+ entry?: string | string[] | undefined;
674
+ project?: string | string[] | undefined;
675
+ }, {
676
+ config?: string | string[] | undefined;
677
+ entry?: string | string[] | undefined;
678
+ project?: string | string[] | undefined;
679
+ }>]>;
680
+ plop: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
681
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
682
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
683
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
684
+ }, "strip", z.ZodTypeAny, {
685
+ config?: string | string[] | undefined;
686
+ entry?: string | string[] | undefined;
687
+ project?: string | string[] | undefined;
688
+ }, {
689
+ config?: string | string[] | undefined;
690
+ entry?: string | string[] | undefined;
691
+ project?: string | string[] | undefined;
692
+ }>]>;
693
+ postcss: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
694
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
695
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
696
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
697
+ }, "strip", z.ZodTypeAny, {
698
+ config?: string | string[] | undefined;
699
+ entry?: string | string[] | undefined;
700
+ project?: string | string[] | undefined;
701
+ }, {
702
+ config?: string | string[] | undefined;
703
+ entry?: string | string[] | undefined;
704
+ project?: string | string[] | undefined;
705
+ }>]>;
706
+ preconstruct: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
707
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
708
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
709
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
710
+ }, "strip", z.ZodTypeAny, {
711
+ config?: string | string[] | undefined;
712
+ entry?: string | string[] | undefined;
713
+ project?: string | string[] | undefined;
714
+ }, {
715
+ config?: string | string[] | undefined;
716
+ entry?: string | string[] | undefined;
717
+ project?: string | string[] | undefined;
718
+ }>]>;
719
+ prettier: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
720
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
721
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
722
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
723
+ }, "strip", z.ZodTypeAny, {
724
+ config?: string | string[] | undefined;
725
+ entry?: string | string[] | undefined;
726
+ project?: string | string[] | undefined;
727
+ }, {
728
+ config?: string | string[] | undefined;
729
+ entry?: string | string[] | undefined;
730
+ project?: string | string[] | undefined;
731
+ }>]>;
732
+ 'react-cosmos': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
733
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
734
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
735
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
736
+ }, "strip", z.ZodTypeAny, {
737
+ config?: string | string[] | undefined;
738
+ entry?: string | string[] | undefined;
739
+ project?: string | string[] | undefined;
740
+ }, {
741
+ config?: string | string[] | undefined;
742
+ entry?: string | string[] | undefined;
743
+ project?: string | string[] | undefined;
744
+ }>]>;
745
+ 'react-router': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
746
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
747
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
748
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
749
+ }, "strip", z.ZodTypeAny, {
750
+ config?: string | string[] | undefined;
751
+ entry?: string | string[] | undefined;
752
+ project?: string | string[] | undefined;
753
+ }, {
754
+ config?: string | string[] | undefined;
755
+ entry?: string | string[] | undefined;
756
+ project?: string | string[] | undefined;
757
+ }>]>;
758
+ 'release-it': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
759
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
760
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
761
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
762
+ }, "strip", z.ZodTypeAny, {
763
+ config?: string | string[] | undefined;
764
+ entry?: string | string[] | undefined;
765
+ project?: string | string[] | undefined;
766
+ }, {
767
+ config?: string | string[] | undefined;
768
+ entry?: string | string[] | undefined;
769
+ project?: string | string[] | undefined;
770
+ }>]>;
771
+ remark: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
772
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
773
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
774
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
775
+ }, "strip", z.ZodTypeAny, {
776
+ config?: string | string[] | undefined;
777
+ entry?: string | string[] | undefined;
778
+ project?: string | string[] | undefined;
779
+ }, {
780
+ config?: string | string[] | undefined;
781
+ entry?: string | string[] | undefined;
782
+ project?: string | string[] | undefined;
783
+ }>]>;
784
+ remix: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
785
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
786
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
787
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
788
+ }, "strip", z.ZodTypeAny, {
789
+ config?: string | string[] | undefined;
790
+ entry?: string | string[] | undefined;
791
+ project?: string | string[] | undefined;
792
+ }, {
793
+ config?: string | string[] | undefined;
794
+ entry?: string | string[] | undefined;
795
+ project?: string | string[] | undefined;
796
+ }>]>;
797
+ rollup: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
798
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
799
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
800
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
801
+ }, "strip", z.ZodTypeAny, {
802
+ config?: string | string[] | undefined;
803
+ entry?: string | string[] | undefined;
804
+ project?: string | string[] | undefined;
805
+ }, {
806
+ config?: string | string[] | undefined;
807
+ entry?: string | string[] | undefined;
808
+ project?: string | string[] | undefined;
809
+ }>]>;
810
+ rsbuild: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
811
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
812
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
813
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
814
+ }, "strip", z.ZodTypeAny, {
815
+ config?: string | string[] | undefined;
816
+ entry?: string | string[] | undefined;
817
+ project?: string | string[] | undefined;
818
+ }, {
819
+ config?: string | string[] | undefined;
820
+ entry?: string | string[] | undefined;
821
+ project?: string | string[] | undefined;
822
+ }>]>;
823
+ rspack: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
824
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
825
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
826
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
827
+ }, "strip", z.ZodTypeAny, {
828
+ config?: string | string[] | undefined;
829
+ entry?: string | string[] | undefined;
830
+ project?: string | string[] | undefined;
831
+ }, {
832
+ config?: string | string[] | undefined;
833
+ entry?: string | string[] | undefined;
834
+ project?: string | string[] | undefined;
835
+ }>]>;
836
+ 'semantic-release': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
837
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
838
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
839
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
840
+ }, "strip", z.ZodTypeAny, {
841
+ config?: string | string[] | undefined;
842
+ entry?: string | string[] | undefined;
843
+ project?: string | string[] | undefined;
844
+ }, {
845
+ config?: string | string[] | undefined;
846
+ entry?: string | string[] | undefined;
847
+ project?: string | string[] | undefined;
848
+ }>]>;
849
+ sentry: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
850
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
851
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
852
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
853
+ }, "strip", z.ZodTypeAny, {
854
+ config?: string | string[] | undefined;
855
+ entry?: string | string[] | undefined;
856
+ project?: string | string[] | undefined;
857
+ }, {
858
+ config?: string | string[] | undefined;
859
+ entry?: string | string[] | undefined;
860
+ project?: string | string[] | undefined;
861
+ }>]>;
862
+ 'simple-git-hooks': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
863
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
864
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
865
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
866
+ }, "strip", z.ZodTypeAny, {
867
+ config?: string | string[] | undefined;
868
+ entry?: string | string[] | undefined;
869
+ project?: string | string[] | undefined;
870
+ }, {
871
+ config?: string | string[] | undefined;
872
+ entry?: string | string[] | undefined;
873
+ project?: string | string[] | undefined;
874
+ }>]>;
875
+ 'size-limit': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
876
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
877
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
878
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
879
+ }, "strip", z.ZodTypeAny, {
880
+ config?: string | string[] | undefined;
881
+ entry?: string | string[] | undefined;
882
+ project?: string | string[] | undefined;
883
+ }, {
884
+ config?: string | string[] | undefined;
885
+ entry?: string | string[] | undefined;
886
+ project?: string | string[] | undefined;
887
+ }>]>;
888
+ sst: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
889
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
890
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
891
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
892
+ }, "strip", z.ZodTypeAny, {
893
+ config?: string | string[] | undefined;
894
+ entry?: string | string[] | undefined;
895
+ project?: string | string[] | undefined;
896
+ }, {
897
+ config?: string | string[] | undefined;
898
+ entry?: string | string[] | undefined;
899
+ project?: string | string[] | undefined;
900
+ }>]>;
901
+ starlight: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
902
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
903
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
904
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
905
+ }, "strip", z.ZodTypeAny, {
906
+ config?: string | string[] | undefined;
907
+ entry?: string | string[] | undefined;
908
+ project?: string | string[] | undefined;
909
+ }, {
910
+ config?: string | string[] | undefined;
911
+ entry?: string | string[] | undefined;
912
+ project?: string | string[] | undefined;
913
+ }>]>;
914
+ storybook: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
915
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
916
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
917
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
918
+ }, "strip", z.ZodTypeAny, {
919
+ config?: string | string[] | undefined;
920
+ entry?: string | string[] | undefined;
921
+ project?: string | string[] | undefined;
922
+ }, {
923
+ config?: string | string[] | undefined;
924
+ entry?: string | string[] | undefined;
925
+ project?: string | string[] | undefined;
926
+ }>]>;
927
+ stryker: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
928
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
929
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
930
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
931
+ }, "strip", z.ZodTypeAny, {
932
+ config?: string | string[] | undefined;
933
+ entry?: string | string[] | undefined;
934
+ project?: string | string[] | undefined;
935
+ }, {
936
+ config?: string | string[] | undefined;
937
+ entry?: string | string[] | undefined;
938
+ project?: string | string[] | undefined;
939
+ }>]>;
940
+ stylelint: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
941
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
942
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
943
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
944
+ }, "strip", z.ZodTypeAny, {
945
+ config?: string | string[] | undefined;
946
+ entry?: string | string[] | undefined;
947
+ project?: string | string[] | undefined;
948
+ }, {
949
+ config?: string | string[] | undefined;
950
+ entry?: string | string[] | undefined;
951
+ project?: string | string[] | undefined;
952
+ }>]>;
953
+ svelte: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
954
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
955
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
956
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
957
+ }, "strip", z.ZodTypeAny, {
958
+ config?: string | string[] | undefined;
959
+ entry?: string | string[] | undefined;
960
+ project?: string | string[] | undefined;
961
+ }, {
962
+ config?: string | string[] | undefined;
963
+ entry?: string | string[] | undefined;
964
+ project?: string | string[] | undefined;
965
+ }>]>;
966
+ syncpack: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
967
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
968
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
969
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
970
+ }, "strip", z.ZodTypeAny, {
971
+ config?: string | string[] | undefined;
972
+ entry?: string | string[] | undefined;
973
+ project?: string | string[] | undefined;
974
+ }, {
975
+ config?: string | string[] | undefined;
976
+ entry?: string | string[] | undefined;
977
+ project?: string | string[] | undefined;
978
+ }>]>;
979
+ tailwind: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
980
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
981
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
982
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
983
+ }, "strip", z.ZodTypeAny, {
984
+ config?: string | string[] | undefined;
985
+ entry?: string | string[] | undefined;
986
+ project?: string | string[] | undefined;
987
+ }, {
988
+ config?: string | string[] | undefined;
989
+ entry?: string | string[] | undefined;
990
+ project?: string | string[] | undefined;
991
+ }>]>;
992
+ 'tanstack-router': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
993
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
994
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
995
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
996
+ }, "strip", z.ZodTypeAny, {
997
+ config?: string | string[] | undefined;
998
+ entry?: string | string[] | undefined;
999
+ project?: string | string[] | undefined;
1000
+ }, {
1001
+ config?: string | string[] | undefined;
1002
+ entry?: string | string[] | undefined;
1003
+ project?: string | string[] | undefined;
1004
+ }>]>;
1005
+ travis: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1006
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1007
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1008
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1009
+ }, "strip", z.ZodTypeAny, {
1010
+ config?: string | string[] | undefined;
1011
+ entry?: string | string[] | undefined;
1012
+ project?: string | string[] | undefined;
1013
+ }, {
1014
+ config?: string | string[] | undefined;
1015
+ entry?: string | string[] | undefined;
1016
+ project?: string | string[] | undefined;
1017
+ }>]>;
1018
+ 'ts-node': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1019
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1020
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1021
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1022
+ }, "strip", z.ZodTypeAny, {
1023
+ config?: string | string[] | undefined;
1024
+ entry?: string | string[] | undefined;
1025
+ project?: string | string[] | undefined;
1026
+ }, {
1027
+ config?: string | string[] | undefined;
1028
+ entry?: string | string[] | undefined;
1029
+ project?: string | string[] | undefined;
1030
+ }>]>;
1031
+ tsup: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1032
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1033
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1034
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1035
+ }, "strip", z.ZodTypeAny, {
1036
+ config?: string | string[] | undefined;
1037
+ entry?: string | string[] | undefined;
1038
+ project?: string | string[] | undefined;
1039
+ }, {
1040
+ config?: string | string[] | undefined;
1041
+ entry?: string | string[] | undefined;
1042
+ project?: string | string[] | undefined;
1043
+ }>]>;
1044
+ tsx: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1045
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1046
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1047
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1048
+ }, "strip", z.ZodTypeAny, {
1049
+ config?: string | string[] | undefined;
1050
+ entry?: string | string[] | undefined;
1051
+ project?: string | string[] | undefined;
1052
+ }, {
1053
+ config?: string | string[] | undefined;
1054
+ entry?: string | string[] | undefined;
1055
+ project?: string | string[] | undefined;
1056
+ }>]>;
1057
+ typedoc: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1058
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1059
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1060
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1061
+ }, "strip", z.ZodTypeAny, {
1062
+ config?: string | string[] | undefined;
1063
+ entry?: string | string[] | undefined;
1064
+ project?: string | string[] | undefined;
1065
+ }, {
1066
+ config?: string | string[] | undefined;
1067
+ entry?: string | string[] | undefined;
1068
+ project?: string | string[] | undefined;
1069
+ }>]>;
1070
+ typescript: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1071
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1072
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1073
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1074
+ }, "strip", z.ZodTypeAny, {
1075
+ config?: string | string[] | undefined;
1076
+ entry?: string | string[] | undefined;
1077
+ project?: string | string[] | undefined;
1078
+ }, {
1079
+ config?: string | string[] | undefined;
1080
+ entry?: string | string[] | undefined;
1081
+ project?: string | string[] | undefined;
1082
+ }>]>;
1083
+ unbuild: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1084
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1085
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1086
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1087
+ }, "strip", z.ZodTypeAny, {
1088
+ config?: string | string[] | undefined;
1089
+ entry?: string | string[] | undefined;
1090
+ project?: string | string[] | undefined;
1091
+ }, {
1092
+ config?: string | string[] | undefined;
1093
+ entry?: string | string[] | undefined;
1094
+ project?: string | string[] | undefined;
1095
+ }>]>;
1096
+ unocss: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1097
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1098
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1099
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1100
+ }, "strip", z.ZodTypeAny, {
1101
+ config?: string | string[] | undefined;
1102
+ entry?: string | string[] | undefined;
1103
+ project?: string | string[] | undefined;
1104
+ }, {
1105
+ config?: string | string[] | undefined;
1106
+ entry?: string | string[] | undefined;
1107
+ project?: string | string[] | undefined;
1108
+ }>]>;
1109
+ 'vercel-og': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1110
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1111
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1112
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1113
+ }, "strip", z.ZodTypeAny, {
1114
+ config?: string | string[] | undefined;
1115
+ entry?: string | string[] | undefined;
1116
+ project?: string | string[] | undefined;
1117
+ }, {
1118
+ config?: string | string[] | undefined;
1119
+ entry?: string | string[] | undefined;
1120
+ project?: string | string[] | undefined;
1121
+ }>]>;
1122
+ vike: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1123
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1124
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1125
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1126
+ }, "strip", z.ZodTypeAny, {
1127
+ config?: string | string[] | undefined;
1128
+ entry?: string | string[] | undefined;
1129
+ project?: string | string[] | undefined;
1130
+ }, {
1131
+ config?: string | string[] | undefined;
1132
+ entry?: string | string[] | undefined;
1133
+ project?: string | string[] | undefined;
1134
+ }>]>;
1135
+ vite: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1136
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1137
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1138
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1139
+ }, "strip", z.ZodTypeAny, {
1140
+ config?: string | string[] | undefined;
1141
+ entry?: string | string[] | undefined;
1142
+ project?: string | string[] | undefined;
1143
+ }, {
1144
+ config?: string | string[] | undefined;
1145
+ entry?: string | string[] | undefined;
1146
+ project?: string | string[] | undefined;
1147
+ }>]>;
1148
+ vitest: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1149
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1150
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1151
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1152
+ }, "strip", z.ZodTypeAny, {
1153
+ config?: string | string[] | undefined;
1154
+ entry?: string | string[] | undefined;
1155
+ project?: string | string[] | undefined;
1156
+ }, {
1157
+ config?: string | string[] | undefined;
1158
+ entry?: string | string[] | undefined;
1159
+ project?: string | string[] | undefined;
1160
+ }>]>;
1161
+ vue: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1162
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1163
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1164
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1165
+ }, "strip", z.ZodTypeAny, {
1166
+ config?: string | string[] | undefined;
1167
+ entry?: string | string[] | undefined;
1168
+ project?: string | string[] | undefined;
1169
+ }, {
1170
+ config?: string | string[] | undefined;
1171
+ entry?: string | string[] | undefined;
1172
+ project?: string | string[] | undefined;
1173
+ }>]>;
1174
+ 'webdriver-io': z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1175
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1176
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1177
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1178
+ }, "strip", z.ZodTypeAny, {
1179
+ config?: string | string[] | undefined;
1180
+ entry?: string | string[] | undefined;
1181
+ project?: string | string[] | undefined;
1182
+ }, {
1183
+ config?: string | string[] | undefined;
1184
+ entry?: string | string[] | undefined;
1185
+ project?: string | string[] | undefined;
1186
+ }>]>;
1187
+ webpack: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1188
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1189
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1190
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1191
+ }, "strip", z.ZodTypeAny, {
1192
+ config?: string | string[] | undefined;
1193
+ entry?: string | string[] | undefined;
1194
+ project?: string | string[] | undefined;
1195
+ }, {
1196
+ config?: string | string[] | undefined;
1197
+ entry?: string | string[] | undefined;
1198
+ project?: string | string[] | undefined;
1199
+ }>]>;
1200
+ wireit: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1201
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1202
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1203
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1204
+ }, "strip", z.ZodTypeAny, {
1205
+ config?: string | string[] | undefined;
1206
+ entry?: string | string[] | undefined;
1207
+ project?: string | string[] | undefined;
1208
+ }, {
1209
+ config?: string | string[] | undefined;
1210
+ entry?: string | string[] | undefined;
1211
+ project?: string | string[] | undefined;
1212
+ }>]>;
1213
+ wrangler: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1214
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1215
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1216
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1217
+ }, "strip", z.ZodTypeAny, {
1218
+ config?: string | string[] | undefined;
1219
+ entry?: string | string[] | undefined;
1220
+ project?: string | string[] | undefined;
1221
+ }, {
1222
+ config?: string | string[] | undefined;
1223
+ entry?: string | string[] | undefined;
1224
+ project?: string | string[] | undefined;
1225
+ }>]>;
1226
+ xo: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1227
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1228
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1229
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1230
+ }, "strip", z.ZodTypeAny, {
1231
+ config?: string | string[] | undefined;
1232
+ entry?: string | string[] | undefined;
1233
+ project?: string | string[] | undefined;
1234
+ }, {
1235
+ config?: string | string[] | undefined;
1236
+ entry?: string | string[] | undefined;
1237
+ project?: string | string[] | undefined;
1238
+ }>]>;
1239
+ yarn: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1240
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1241
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1242
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1243
+ }, "strip", z.ZodTypeAny, {
1244
+ config?: string | string[] | undefined;
1245
+ entry?: string | string[] | undefined;
1246
+ project?: string | string[] | undefined;
1247
+ }, {
1248
+ config?: string | string[] | undefined;
1249
+ entry?: string | string[] | undefined;
1250
+ project?: string | string[] | undefined;
1251
+ }>]>;
1252
+ yorkie: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
1253
+ config: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1254
+ entry: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1255
+ project: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1256
+ }, "strip", z.ZodTypeAny, {
1257
+ config?: string | string[] | undefined;
1258
+ entry?: string | string[] | undefined;
1259
+ project?: string | string[] | undefined;
1260
+ }, {
1261
+ config?: string | string[] | undefined;
1262
+ entry?: string | string[] | undefined;
1263
+ project?: string | string[] | undefined;
1264
+ }>]>;
1265
+ }, "strip", z.ZodTypeAny, {
1266
+ node: string | boolean | string[] | {
1267
+ config?: string | string[] | undefined;
1268
+ entry?: string | string[] | undefined;
1269
+ project?: string | string[] | undefined;
1270
+ };
1271
+ angular: string | boolean | string[] | {
1272
+ config?: string | string[] | undefined;
1273
+ entry?: string | string[] | undefined;
1274
+ project?: string | string[] | undefined;
1275
+ };
1276
+ astro: string | boolean | string[] | {
1277
+ config?: string | string[] | undefined;
1278
+ entry?: string | string[] | undefined;
1279
+ project?: string | string[] | undefined;
1280
+ };
1281
+ ava: string | boolean | string[] | {
1282
+ config?: string | string[] | undefined;
1283
+ entry?: string | string[] | undefined;
1284
+ project?: string | string[] | undefined;
1285
+ };
1286
+ babel: string | boolean | string[] | {
1287
+ config?: string | string[] | undefined;
1288
+ entry?: string | string[] | undefined;
1289
+ project?: string | string[] | undefined;
1290
+ };
1291
+ c8: string | boolean | string[] | {
1292
+ config?: string | string[] | undefined;
1293
+ entry?: string | string[] | undefined;
1294
+ project?: string | string[] | undefined;
1295
+ };
1296
+ capacitor: string | boolean | string[] | {
1297
+ config?: string | string[] | undefined;
1298
+ entry?: string | string[] | undefined;
1299
+ project?: string | string[] | undefined;
1300
+ };
1301
+ changesets: string | boolean | string[] | {
1302
+ config?: string | string[] | undefined;
1303
+ entry?: string | string[] | undefined;
1304
+ project?: string | string[] | undefined;
1305
+ };
1306
+ commitizen: string | boolean | string[] | {
1307
+ config?: string | string[] | undefined;
1308
+ entry?: string | string[] | undefined;
1309
+ project?: string | string[] | undefined;
1310
+ };
1311
+ commitlint: string | boolean | string[] | {
1312
+ config?: string | string[] | undefined;
1313
+ entry?: string | string[] | undefined;
1314
+ project?: string | string[] | undefined;
1315
+ };
1316
+ 'create-typescript-app': string | boolean | string[] | {
1317
+ config?: string | string[] | undefined;
1318
+ entry?: string | string[] | undefined;
1319
+ project?: string | string[] | undefined;
1320
+ };
1321
+ cspell: string | boolean | string[] | {
1322
+ config?: string | string[] | undefined;
1323
+ entry?: string | string[] | undefined;
1324
+ project?: string | string[] | undefined;
1325
+ };
1326
+ cucumber: string | boolean | string[] | {
1327
+ config?: string | string[] | undefined;
1328
+ entry?: string | string[] | undefined;
1329
+ project?: string | string[] | undefined;
1330
+ };
1331
+ cypress: string | boolean | string[] | {
1332
+ config?: string | string[] | undefined;
1333
+ entry?: string | string[] | undefined;
1334
+ project?: string | string[] | undefined;
1335
+ };
1336
+ 'dependency-cruiser': string | boolean | string[] | {
1337
+ config?: string | string[] | undefined;
1338
+ entry?: string | string[] | undefined;
1339
+ project?: string | string[] | undefined;
1340
+ };
1341
+ dotenv: string | boolean | string[] | {
1342
+ config?: string | string[] | undefined;
1343
+ entry?: string | string[] | undefined;
1344
+ project?: string | string[] | undefined;
1345
+ };
1346
+ drizzle: string | boolean | string[] | {
1347
+ config?: string | string[] | undefined;
1348
+ entry?: string | string[] | undefined;
1349
+ project?: string | string[] | undefined;
1350
+ };
1351
+ eleventy: string | boolean | string[] | {
1352
+ config?: string | string[] | undefined;
1353
+ entry?: string | string[] | undefined;
1354
+ project?: string | string[] | undefined;
1355
+ };
1356
+ eslint: string | boolean | string[] | {
1357
+ config?: string | string[] | undefined;
1358
+ entry?: string | string[] | undefined;
1359
+ project?: string | string[] | undefined;
1360
+ };
1361
+ expo: string | boolean | string[] | {
1362
+ config?: string | string[] | undefined;
1363
+ entry?: string | string[] | undefined;
1364
+ project?: string | string[] | undefined;
1365
+ };
1366
+ gatsby: string | boolean | string[] | {
1367
+ config?: string | string[] | undefined;
1368
+ entry?: string | string[] | undefined;
1369
+ project?: string | string[] | undefined;
1370
+ };
1371
+ 'github-action': string | boolean | string[] | {
1372
+ config?: string | string[] | undefined;
1373
+ entry?: string | string[] | undefined;
1374
+ project?: string | string[] | undefined;
1375
+ };
1376
+ 'github-actions': string | boolean | string[] | {
1377
+ config?: string | string[] | undefined;
1378
+ entry?: string | string[] | undefined;
1379
+ project?: string | string[] | undefined;
1380
+ };
1381
+ glob: string | boolean | string[] | {
1382
+ config?: string | string[] | undefined;
1383
+ entry?: string | string[] | undefined;
1384
+ project?: string | string[] | undefined;
1385
+ };
1386
+ 'graphql-codegen': string | boolean | string[] | {
1387
+ config?: string | string[] | undefined;
1388
+ entry?: string | string[] | undefined;
1389
+ project?: string | string[] | undefined;
1390
+ };
1391
+ husky: string | boolean | string[] | {
1392
+ config?: string | string[] | undefined;
1393
+ entry?: string | string[] | undefined;
1394
+ project?: string | string[] | undefined;
1395
+ };
1396
+ jest: string | boolean | string[] | {
1397
+ config?: string | string[] | undefined;
1398
+ entry?: string | string[] | undefined;
1399
+ project?: string | string[] | undefined;
1400
+ };
1401
+ karma: string | boolean | string[] | {
1402
+ config?: string | string[] | undefined;
1403
+ entry?: string | string[] | undefined;
1404
+ project?: string | string[] | undefined;
1405
+ };
1406
+ ladle: string | boolean | string[] | {
1407
+ config?: string | string[] | undefined;
1408
+ entry?: string | string[] | undefined;
1409
+ project?: string | string[] | undefined;
1410
+ };
1411
+ lefthook: string | boolean | string[] | {
1412
+ config?: string | string[] | undefined;
1413
+ entry?: string | string[] | undefined;
1414
+ project?: string | string[] | undefined;
1415
+ };
1416
+ 'lint-staged': string | boolean | string[] | {
1417
+ config?: string | string[] | undefined;
1418
+ entry?: string | string[] | undefined;
1419
+ project?: string | string[] | undefined;
1420
+ };
1421
+ linthtml: string | boolean | string[] | {
1422
+ config?: string | string[] | undefined;
1423
+ entry?: string | string[] | undefined;
1424
+ project?: string | string[] | undefined;
1425
+ };
1426
+ 'lockfile-lint': string | boolean | string[] | {
1427
+ config?: string | string[] | undefined;
1428
+ entry?: string | string[] | undefined;
1429
+ project?: string | string[] | undefined;
1430
+ };
1431
+ 'lost-pixel': string | boolean | string[] | {
1432
+ config?: string | string[] | undefined;
1433
+ entry?: string | string[] | undefined;
1434
+ project?: string | string[] | undefined;
1435
+ };
1436
+ markdownlint: string | boolean | string[] | {
1437
+ config?: string | string[] | undefined;
1438
+ entry?: string | string[] | undefined;
1439
+ project?: string | string[] | undefined;
1440
+ };
1441
+ metro: string | boolean | string[] | {
1442
+ config?: string | string[] | undefined;
1443
+ entry?: string | string[] | undefined;
1444
+ project?: string | string[] | undefined;
1445
+ };
1446
+ mocha: string | boolean | string[] | {
1447
+ config?: string | string[] | undefined;
1448
+ entry?: string | string[] | undefined;
1449
+ project?: string | string[] | undefined;
1450
+ };
1451
+ moonrepo: string | boolean | string[] | {
1452
+ config?: string | string[] | undefined;
1453
+ entry?: string | string[] | undefined;
1454
+ project?: string | string[] | undefined;
1455
+ };
1456
+ msw: string | boolean | string[] | {
1457
+ config?: string | string[] | undefined;
1458
+ entry?: string | string[] | undefined;
1459
+ project?: string | string[] | undefined;
1460
+ };
1461
+ nest: string | boolean | string[] | {
1462
+ config?: string | string[] | undefined;
1463
+ entry?: string | string[] | undefined;
1464
+ project?: string | string[] | undefined;
1465
+ };
1466
+ netlify: string | boolean | string[] | {
1467
+ config?: string | string[] | undefined;
1468
+ entry?: string | string[] | undefined;
1469
+ project?: string | string[] | undefined;
1470
+ };
1471
+ next: string | boolean | string[] | {
1472
+ config?: string | string[] | undefined;
1473
+ entry?: string | string[] | undefined;
1474
+ project?: string | string[] | undefined;
1475
+ };
1476
+ nodemon: string | boolean | string[] | {
1477
+ config?: string | string[] | undefined;
1478
+ entry?: string | string[] | undefined;
1479
+ project?: string | string[] | undefined;
1480
+ };
1481
+ 'npm-package-json-lint': string | boolean | string[] | {
1482
+ config?: string | string[] | undefined;
1483
+ entry?: string | string[] | undefined;
1484
+ project?: string | string[] | undefined;
1485
+ };
1486
+ nuxt: string | boolean | string[] | {
1487
+ config?: string | string[] | undefined;
1488
+ entry?: string | string[] | undefined;
1489
+ project?: string | string[] | undefined;
1490
+ };
1491
+ nx: string | boolean | string[] | {
1492
+ config?: string | string[] | undefined;
1493
+ entry?: string | string[] | undefined;
1494
+ project?: string | string[] | undefined;
1495
+ };
1496
+ nyc: string | boolean | string[] | {
1497
+ config?: string | string[] | undefined;
1498
+ entry?: string | string[] | undefined;
1499
+ project?: string | string[] | undefined;
1500
+ };
1501
+ oclif: string | boolean | string[] | {
1502
+ config?: string | string[] | undefined;
1503
+ entry?: string | string[] | undefined;
1504
+ project?: string | string[] | undefined;
1505
+ };
1506
+ playwright: string | boolean | string[] | {
1507
+ config?: string | string[] | undefined;
1508
+ entry?: string | string[] | undefined;
1509
+ project?: string | string[] | undefined;
1510
+ };
1511
+ 'playwright-ct': string | boolean | string[] | {
1512
+ config?: string | string[] | undefined;
1513
+ entry?: string | string[] | undefined;
1514
+ project?: string | string[] | undefined;
1515
+ };
1516
+ 'playwright-test': string | boolean | string[] | {
1517
+ config?: string | string[] | undefined;
1518
+ entry?: string | string[] | undefined;
1519
+ project?: string | string[] | undefined;
1520
+ };
1521
+ plop: string | boolean | string[] | {
1522
+ config?: string | string[] | undefined;
1523
+ entry?: string | string[] | undefined;
1524
+ project?: string | string[] | undefined;
1525
+ };
1526
+ postcss: string | boolean | string[] | {
1527
+ config?: string | string[] | undefined;
1528
+ entry?: string | string[] | undefined;
1529
+ project?: string | string[] | undefined;
1530
+ };
1531
+ preconstruct: string | boolean | string[] | {
1532
+ config?: string | string[] | undefined;
1533
+ entry?: string | string[] | undefined;
1534
+ project?: string | string[] | undefined;
1535
+ };
1536
+ prettier: string | boolean | string[] | {
1537
+ config?: string | string[] | undefined;
1538
+ entry?: string | string[] | undefined;
1539
+ project?: string | string[] | undefined;
1540
+ };
1541
+ 'react-cosmos': string | boolean | string[] | {
1542
+ config?: string | string[] | undefined;
1543
+ entry?: string | string[] | undefined;
1544
+ project?: string | string[] | undefined;
1545
+ };
1546
+ 'react-router': string | boolean | string[] | {
1547
+ config?: string | string[] | undefined;
1548
+ entry?: string | string[] | undefined;
1549
+ project?: string | string[] | undefined;
1550
+ };
1551
+ 'release-it': string | boolean | string[] | {
1552
+ config?: string | string[] | undefined;
1553
+ entry?: string | string[] | undefined;
1554
+ project?: string | string[] | undefined;
1555
+ };
1556
+ remark: string | boolean | string[] | {
1557
+ config?: string | string[] | undefined;
1558
+ entry?: string | string[] | undefined;
1559
+ project?: string | string[] | undefined;
1560
+ };
1561
+ remix: string | boolean | string[] | {
1562
+ config?: string | string[] | undefined;
1563
+ entry?: string | string[] | undefined;
1564
+ project?: string | string[] | undefined;
1565
+ };
1566
+ rollup: string | boolean | string[] | {
1567
+ config?: string | string[] | undefined;
1568
+ entry?: string | string[] | undefined;
1569
+ project?: string | string[] | undefined;
1570
+ };
1571
+ rsbuild: string | boolean | string[] | {
1572
+ config?: string | string[] | undefined;
1573
+ entry?: string | string[] | undefined;
1574
+ project?: string | string[] | undefined;
1575
+ };
1576
+ rspack: string | boolean | string[] | {
1577
+ config?: string | string[] | undefined;
1578
+ entry?: string | string[] | undefined;
1579
+ project?: string | string[] | undefined;
1580
+ };
1581
+ 'semantic-release': string | boolean | string[] | {
1582
+ config?: string | string[] | undefined;
1583
+ entry?: string | string[] | undefined;
1584
+ project?: string | string[] | undefined;
1585
+ };
1586
+ sentry: string | boolean | string[] | {
1587
+ config?: string | string[] | undefined;
1588
+ entry?: string | string[] | undefined;
1589
+ project?: string | string[] | undefined;
1590
+ };
1591
+ 'simple-git-hooks': string | boolean | string[] | {
1592
+ config?: string | string[] | undefined;
1593
+ entry?: string | string[] | undefined;
1594
+ project?: string | string[] | undefined;
1595
+ };
1596
+ 'size-limit': string | boolean | string[] | {
1597
+ config?: string | string[] | undefined;
1598
+ entry?: string | string[] | undefined;
1599
+ project?: string | string[] | undefined;
1600
+ };
1601
+ sst: string | boolean | string[] | {
1602
+ config?: string | string[] | undefined;
1603
+ entry?: string | string[] | undefined;
1604
+ project?: string | string[] | undefined;
1605
+ };
1606
+ starlight: string | boolean | string[] | {
1607
+ config?: string | string[] | undefined;
1608
+ entry?: string | string[] | undefined;
1609
+ project?: string | string[] | undefined;
1610
+ };
1611
+ storybook: string | boolean | string[] | {
1612
+ config?: string | string[] | undefined;
1613
+ entry?: string | string[] | undefined;
1614
+ project?: string | string[] | undefined;
1615
+ };
1616
+ stryker: string | boolean | string[] | {
1617
+ config?: string | string[] | undefined;
1618
+ entry?: string | string[] | undefined;
1619
+ project?: string | string[] | undefined;
1620
+ };
1621
+ stylelint: string | boolean | string[] | {
1622
+ config?: string | string[] | undefined;
1623
+ entry?: string | string[] | undefined;
1624
+ project?: string | string[] | undefined;
1625
+ };
1626
+ svelte: string | boolean | string[] | {
1627
+ config?: string | string[] | undefined;
1628
+ entry?: string | string[] | undefined;
1629
+ project?: string | string[] | undefined;
1630
+ };
1631
+ syncpack: string | boolean | string[] | {
1632
+ config?: string | string[] | undefined;
1633
+ entry?: string | string[] | undefined;
1634
+ project?: string | string[] | undefined;
1635
+ };
1636
+ tailwind: string | boolean | string[] | {
1637
+ config?: string | string[] | undefined;
1638
+ entry?: string | string[] | undefined;
1639
+ project?: string | string[] | undefined;
1640
+ };
1641
+ 'tanstack-router': string | boolean | string[] | {
1642
+ config?: string | string[] | undefined;
1643
+ entry?: string | string[] | undefined;
1644
+ project?: string | string[] | undefined;
1645
+ };
1646
+ travis: string | boolean | string[] | {
1647
+ config?: string | string[] | undefined;
1648
+ entry?: string | string[] | undefined;
1649
+ project?: string | string[] | undefined;
1650
+ };
1651
+ 'ts-node': string | boolean | string[] | {
1652
+ config?: string | string[] | undefined;
1653
+ entry?: string | string[] | undefined;
1654
+ project?: string | string[] | undefined;
1655
+ };
1656
+ tsup: string | boolean | string[] | {
1657
+ config?: string | string[] | undefined;
1658
+ entry?: string | string[] | undefined;
1659
+ project?: string | string[] | undefined;
1660
+ };
1661
+ tsx: string | boolean | string[] | {
1662
+ config?: string | string[] | undefined;
1663
+ entry?: string | string[] | undefined;
1664
+ project?: string | string[] | undefined;
1665
+ };
1666
+ typedoc: string | boolean | string[] | {
1667
+ config?: string | string[] | undefined;
1668
+ entry?: string | string[] | undefined;
1669
+ project?: string | string[] | undefined;
1670
+ };
1671
+ typescript: string | boolean | string[] | {
1672
+ config?: string | string[] | undefined;
1673
+ entry?: string | string[] | undefined;
1674
+ project?: string | string[] | undefined;
1675
+ };
1676
+ unbuild: string | boolean | string[] | {
1677
+ config?: string | string[] | undefined;
1678
+ entry?: string | string[] | undefined;
1679
+ project?: string | string[] | undefined;
1680
+ };
1681
+ unocss: string | boolean | string[] | {
1682
+ config?: string | string[] | undefined;
1683
+ entry?: string | string[] | undefined;
1684
+ project?: string | string[] | undefined;
1685
+ };
1686
+ 'vercel-og': string | boolean | string[] | {
1687
+ config?: string | string[] | undefined;
1688
+ entry?: string | string[] | undefined;
1689
+ project?: string | string[] | undefined;
1690
+ };
1691
+ vike: string | boolean | string[] | {
1692
+ config?: string | string[] | undefined;
1693
+ entry?: string | string[] | undefined;
1694
+ project?: string | string[] | undefined;
1695
+ };
1696
+ vite: string | boolean | string[] | {
1697
+ config?: string | string[] | undefined;
1698
+ entry?: string | string[] | undefined;
1699
+ project?: string | string[] | undefined;
1700
+ };
1701
+ vitest: string | boolean | string[] | {
1702
+ config?: string | string[] | undefined;
1703
+ entry?: string | string[] | undefined;
1704
+ project?: string | string[] | undefined;
1705
+ };
1706
+ vue: string | boolean | string[] | {
1707
+ config?: string | string[] | undefined;
1708
+ entry?: string | string[] | undefined;
1709
+ project?: string | string[] | undefined;
1710
+ };
1711
+ 'webdriver-io': string | boolean | string[] | {
1712
+ config?: string | string[] | undefined;
1713
+ entry?: string | string[] | undefined;
1714
+ project?: string | string[] | undefined;
1715
+ };
1716
+ webpack: string | boolean | string[] | {
1717
+ config?: string | string[] | undefined;
1718
+ entry?: string | string[] | undefined;
1719
+ project?: string | string[] | undefined;
1720
+ };
1721
+ wireit: string | boolean | string[] | {
1722
+ config?: string | string[] | undefined;
1723
+ entry?: string | string[] | undefined;
1724
+ project?: string | string[] | undefined;
1725
+ };
1726
+ wrangler: string | boolean | string[] | {
1727
+ config?: string | string[] | undefined;
1728
+ entry?: string | string[] | undefined;
1729
+ project?: string | string[] | undefined;
1730
+ };
1731
+ xo: string | boolean | string[] | {
1732
+ config?: string | string[] | undefined;
1733
+ entry?: string | string[] | undefined;
1734
+ project?: string | string[] | undefined;
1735
+ };
1736
+ yarn: string | boolean | string[] | {
1737
+ config?: string | string[] | undefined;
1738
+ entry?: string | string[] | undefined;
1739
+ project?: string | string[] | undefined;
1740
+ };
1741
+ yorkie: string | boolean | string[] | {
1742
+ config?: string | string[] | undefined;
1743
+ entry?: string | string[] | undefined;
1744
+ project?: string | string[] | undefined;
1745
+ };
1746
+ }, {
1747
+ node: string | boolean | string[] | {
1748
+ config?: string | string[] | undefined;
1749
+ entry?: string | string[] | undefined;
1750
+ project?: string | string[] | undefined;
1751
+ };
1752
+ angular: string | boolean | string[] | {
1753
+ config?: string | string[] | undefined;
1754
+ entry?: string | string[] | undefined;
1755
+ project?: string | string[] | undefined;
1756
+ };
1757
+ astro: string | boolean | string[] | {
1758
+ config?: string | string[] | undefined;
1759
+ entry?: string | string[] | undefined;
1760
+ project?: string | string[] | undefined;
1761
+ };
1762
+ ava: string | boolean | string[] | {
1763
+ config?: string | string[] | undefined;
1764
+ entry?: string | string[] | undefined;
1765
+ project?: string | string[] | undefined;
1766
+ };
1767
+ babel: string | boolean | string[] | {
1768
+ config?: string | string[] | undefined;
1769
+ entry?: string | string[] | undefined;
1770
+ project?: string | string[] | undefined;
1771
+ };
1772
+ c8: string | boolean | string[] | {
1773
+ config?: string | string[] | undefined;
1774
+ entry?: string | string[] | undefined;
1775
+ project?: string | string[] | undefined;
1776
+ };
1777
+ capacitor: string | boolean | string[] | {
1778
+ config?: string | string[] | undefined;
1779
+ entry?: string | string[] | undefined;
1780
+ project?: string | string[] | undefined;
1781
+ };
1782
+ changesets: string | boolean | string[] | {
1783
+ config?: string | string[] | undefined;
1784
+ entry?: string | string[] | undefined;
1785
+ project?: string | string[] | undefined;
1786
+ };
1787
+ commitizen: string | boolean | string[] | {
1788
+ config?: string | string[] | undefined;
1789
+ entry?: string | string[] | undefined;
1790
+ project?: string | string[] | undefined;
1791
+ };
1792
+ commitlint: string | boolean | string[] | {
1793
+ config?: string | string[] | undefined;
1794
+ entry?: string | string[] | undefined;
1795
+ project?: string | string[] | undefined;
1796
+ };
1797
+ 'create-typescript-app': string | boolean | string[] | {
1798
+ config?: string | string[] | undefined;
1799
+ entry?: string | string[] | undefined;
1800
+ project?: string | string[] | undefined;
1801
+ };
1802
+ cspell: string | boolean | string[] | {
1803
+ config?: string | string[] | undefined;
1804
+ entry?: string | string[] | undefined;
1805
+ project?: string | string[] | undefined;
1806
+ };
1807
+ cucumber: string | boolean | string[] | {
1808
+ config?: string | string[] | undefined;
1809
+ entry?: string | string[] | undefined;
1810
+ project?: string | string[] | undefined;
1811
+ };
1812
+ cypress: string | boolean | string[] | {
1813
+ config?: string | string[] | undefined;
1814
+ entry?: string | string[] | undefined;
1815
+ project?: string | string[] | undefined;
1816
+ };
1817
+ 'dependency-cruiser': string | boolean | string[] | {
1818
+ config?: string | string[] | undefined;
1819
+ entry?: string | string[] | undefined;
1820
+ project?: string | string[] | undefined;
1821
+ };
1822
+ dotenv: string | boolean | string[] | {
1823
+ config?: string | string[] | undefined;
1824
+ entry?: string | string[] | undefined;
1825
+ project?: string | string[] | undefined;
1826
+ };
1827
+ drizzle: string | boolean | string[] | {
1828
+ config?: string | string[] | undefined;
1829
+ entry?: string | string[] | undefined;
1830
+ project?: string | string[] | undefined;
1831
+ };
1832
+ eleventy: string | boolean | string[] | {
1833
+ config?: string | string[] | undefined;
1834
+ entry?: string | string[] | undefined;
1835
+ project?: string | string[] | undefined;
1836
+ };
1837
+ eslint: string | boolean | string[] | {
1838
+ config?: string | string[] | undefined;
1839
+ entry?: string | string[] | undefined;
1840
+ project?: string | string[] | undefined;
1841
+ };
1842
+ expo: string | boolean | string[] | {
1843
+ config?: string | string[] | undefined;
1844
+ entry?: string | string[] | undefined;
1845
+ project?: string | string[] | undefined;
1846
+ };
1847
+ gatsby: string | boolean | string[] | {
1848
+ config?: string | string[] | undefined;
1849
+ entry?: string | string[] | undefined;
1850
+ project?: string | string[] | undefined;
1851
+ };
1852
+ 'github-action': string | boolean | string[] | {
1853
+ config?: string | string[] | undefined;
1854
+ entry?: string | string[] | undefined;
1855
+ project?: string | string[] | undefined;
1856
+ };
1857
+ 'github-actions': string | boolean | string[] | {
1858
+ config?: string | string[] | undefined;
1859
+ entry?: string | string[] | undefined;
1860
+ project?: string | string[] | undefined;
1861
+ };
1862
+ glob: string | boolean | string[] | {
1863
+ config?: string | string[] | undefined;
1864
+ entry?: string | string[] | undefined;
1865
+ project?: string | string[] | undefined;
1866
+ };
1867
+ 'graphql-codegen': string | boolean | string[] | {
1868
+ config?: string | string[] | undefined;
1869
+ entry?: string | string[] | undefined;
1870
+ project?: string | string[] | undefined;
1871
+ };
1872
+ husky: string | boolean | string[] | {
1873
+ config?: string | string[] | undefined;
1874
+ entry?: string | string[] | undefined;
1875
+ project?: string | string[] | undefined;
1876
+ };
1877
+ jest: string | boolean | string[] | {
1878
+ config?: string | string[] | undefined;
1879
+ entry?: string | string[] | undefined;
1880
+ project?: string | string[] | undefined;
1881
+ };
1882
+ karma: string | boolean | string[] | {
1883
+ config?: string | string[] | undefined;
1884
+ entry?: string | string[] | undefined;
1885
+ project?: string | string[] | undefined;
1886
+ };
1887
+ ladle: string | boolean | string[] | {
1888
+ config?: string | string[] | undefined;
1889
+ entry?: string | string[] | undefined;
1890
+ project?: string | string[] | undefined;
1891
+ };
1892
+ lefthook: string | boolean | string[] | {
1893
+ config?: string | string[] | undefined;
1894
+ entry?: string | string[] | undefined;
1895
+ project?: string | string[] | undefined;
1896
+ };
1897
+ 'lint-staged': string | boolean | string[] | {
1898
+ config?: string | string[] | undefined;
1899
+ entry?: string | string[] | undefined;
1900
+ project?: string | string[] | undefined;
1901
+ };
1902
+ linthtml: string | boolean | string[] | {
1903
+ config?: string | string[] | undefined;
1904
+ entry?: string | string[] | undefined;
1905
+ project?: string | string[] | undefined;
1906
+ };
1907
+ 'lockfile-lint': string | boolean | string[] | {
1908
+ config?: string | string[] | undefined;
1909
+ entry?: string | string[] | undefined;
1910
+ project?: string | string[] | undefined;
1911
+ };
1912
+ 'lost-pixel': string | boolean | string[] | {
1913
+ config?: string | string[] | undefined;
1914
+ entry?: string | string[] | undefined;
1915
+ project?: string | string[] | undefined;
1916
+ };
1917
+ markdownlint: string | boolean | string[] | {
1918
+ config?: string | string[] | undefined;
1919
+ entry?: string | string[] | undefined;
1920
+ project?: string | string[] | undefined;
1921
+ };
1922
+ metro: string | boolean | string[] | {
1923
+ config?: string | string[] | undefined;
1924
+ entry?: string | string[] | undefined;
1925
+ project?: string | string[] | undefined;
1926
+ };
1927
+ mocha: string | boolean | string[] | {
1928
+ config?: string | string[] | undefined;
1929
+ entry?: string | string[] | undefined;
1930
+ project?: string | string[] | undefined;
1931
+ };
1932
+ moonrepo: string | boolean | string[] | {
1933
+ config?: string | string[] | undefined;
1934
+ entry?: string | string[] | undefined;
1935
+ project?: string | string[] | undefined;
1936
+ };
1937
+ msw: string | boolean | string[] | {
1938
+ config?: string | string[] | undefined;
1939
+ entry?: string | string[] | undefined;
1940
+ project?: string | string[] | undefined;
1941
+ };
1942
+ nest: string | boolean | string[] | {
1943
+ config?: string | string[] | undefined;
1944
+ entry?: string | string[] | undefined;
1945
+ project?: string | string[] | undefined;
1946
+ };
1947
+ netlify: string | boolean | string[] | {
1948
+ config?: string | string[] | undefined;
1949
+ entry?: string | string[] | undefined;
1950
+ project?: string | string[] | undefined;
1951
+ };
1952
+ next: string | boolean | string[] | {
1953
+ config?: string | string[] | undefined;
1954
+ entry?: string | string[] | undefined;
1955
+ project?: string | string[] | undefined;
1956
+ };
1957
+ nodemon: string | boolean | string[] | {
1958
+ config?: string | string[] | undefined;
1959
+ entry?: string | string[] | undefined;
1960
+ project?: string | string[] | undefined;
1961
+ };
1962
+ 'npm-package-json-lint': string | boolean | string[] | {
1963
+ config?: string | string[] | undefined;
1964
+ entry?: string | string[] | undefined;
1965
+ project?: string | string[] | undefined;
1966
+ };
1967
+ nuxt: string | boolean | string[] | {
1968
+ config?: string | string[] | undefined;
1969
+ entry?: string | string[] | undefined;
1970
+ project?: string | string[] | undefined;
1971
+ };
1972
+ nx: string | boolean | string[] | {
1973
+ config?: string | string[] | undefined;
1974
+ entry?: string | string[] | undefined;
1975
+ project?: string | string[] | undefined;
1976
+ };
1977
+ nyc: string | boolean | string[] | {
1978
+ config?: string | string[] | undefined;
1979
+ entry?: string | string[] | undefined;
1980
+ project?: string | string[] | undefined;
1981
+ };
1982
+ oclif: string | boolean | string[] | {
1983
+ config?: string | string[] | undefined;
1984
+ entry?: string | string[] | undefined;
1985
+ project?: string | string[] | undefined;
1986
+ };
1987
+ playwright: string | boolean | string[] | {
1988
+ config?: string | string[] | undefined;
1989
+ entry?: string | string[] | undefined;
1990
+ project?: string | string[] | undefined;
1991
+ };
1992
+ 'playwright-ct': string | boolean | string[] | {
1993
+ config?: string | string[] | undefined;
1994
+ entry?: string | string[] | undefined;
1995
+ project?: string | string[] | undefined;
1996
+ };
1997
+ 'playwright-test': string | boolean | string[] | {
1998
+ config?: string | string[] | undefined;
1999
+ entry?: string | string[] | undefined;
2000
+ project?: string | string[] | undefined;
2001
+ };
2002
+ plop: string | boolean | string[] | {
2003
+ config?: string | string[] | undefined;
2004
+ entry?: string | string[] | undefined;
2005
+ project?: string | string[] | undefined;
2006
+ };
2007
+ postcss: string | boolean | string[] | {
2008
+ config?: string | string[] | undefined;
2009
+ entry?: string | string[] | undefined;
2010
+ project?: string | string[] | undefined;
2011
+ };
2012
+ preconstruct: string | boolean | string[] | {
2013
+ config?: string | string[] | undefined;
2014
+ entry?: string | string[] | undefined;
2015
+ project?: string | string[] | undefined;
2016
+ };
2017
+ prettier: string | boolean | string[] | {
2018
+ config?: string | string[] | undefined;
2019
+ entry?: string | string[] | undefined;
2020
+ project?: string | string[] | undefined;
2021
+ };
2022
+ 'react-cosmos': string | boolean | string[] | {
2023
+ config?: string | string[] | undefined;
2024
+ entry?: string | string[] | undefined;
2025
+ project?: string | string[] | undefined;
2026
+ };
2027
+ 'react-router': string | boolean | string[] | {
2028
+ config?: string | string[] | undefined;
2029
+ entry?: string | string[] | undefined;
2030
+ project?: string | string[] | undefined;
2031
+ };
2032
+ 'release-it': string | boolean | string[] | {
2033
+ config?: string | string[] | undefined;
2034
+ entry?: string | string[] | undefined;
2035
+ project?: string | string[] | undefined;
2036
+ };
2037
+ remark: string | boolean | string[] | {
2038
+ config?: string | string[] | undefined;
2039
+ entry?: string | string[] | undefined;
2040
+ project?: string | string[] | undefined;
2041
+ };
2042
+ remix: string | boolean | string[] | {
2043
+ config?: string | string[] | undefined;
2044
+ entry?: string | string[] | undefined;
2045
+ project?: string | string[] | undefined;
2046
+ };
2047
+ rollup: string | boolean | string[] | {
2048
+ config?: string | string[] | undefined;
2049
+ entry?: string | string[] | undefined;
2050
+ project?: string | string[] | undefined;
2051
+ };
2052
+ rsbuild: string | boolean | string[] | {
2053
+ config?: string | string[] | undefined;
2054
+ entry?: string | string[] | undefined;
2055
+ project?: string | string[] | undefined;
2056
+ };
2057
+ rspack: string | boolean | string[] | {
2058
+ config?: string | string[] | undefined;
2059
+ entry?: string | string[] | undefined;
2060
+ project?: string | string[] | undefined;
2061
+ };
2062
+ 'semantic-release': string | boolean | string[] | {
2063
+ config?: string | string[] | undefined;
2064
+ entry?: string | string[] | undefined;
2065
+ project?: string | string[] | undefined;
2066
+ };
2067
+ sentry: string | boolean | string[] | {
2068
+ config?: string | string[] | undefined;
2069
+ entry?: string | string[] | undefined;
2070
+ project?: string | string[] | undefined;
2071
+ };
2072
+ 'simple-git-hooks': string | boolean | string[] | {
2073
+ config?: string | string[] | undefined;
2074
+ entry?: string | string[] | undefined;
2075
+ project?: string | string[] | undefined;
2076
+ };
2077
+ 'size-limit': string | boolean | string[] | {
2078
+ config?: string | string[] | undefined;
2079
+ entry?: string | string[] | undefined;
2080
+ project?: string | string[] | undefined;
2081
+ };
2082
+ sst: string | boolean | string[] | {
2083
+ config?: string | string[] | undefined;
2084
+ entry?: string | string[] | undefined;
2085
+ project?: string | string[] | undefined;
2086
+ };
2087
+ starlight: string | boolean | string[] | {
2088
+ config?: string | string[] | undefined;
2089
+ entry?: string | string[] | undefined;
2090
+ project?: string | string[] | undefined;
2091
+ };
2092
+ storybook: string | boolean | string[] | {
2093
+ config?: string | string[] | undefined;
2094
+ entry?: string | string[] | undefined;
2095
+ project?: string | string[] | undefined;
2096
+ };
2097
+ stryker: string | boolean | string[] | {
2098
+ config?: string | string[] | undefined;
2099
+ entry?: string | string[] | undefined;
2100
+ project?: string | string[] | undefined;
2101
+ };
2102
+ stylelint: string | boolean | string[] | {
2103
+ config?: string | string[] | undefined;
2104
+ entry?: string | string[] | undefined;
2105
+ project?: string | string[] | undefined;
2106
+ };
2107
+ svelte: string | boolean | string[] | {
2108
+ config?: string | string[] | undefined;
2109
+ entry?: string | string[] | undefined;
2110
+ project?: string | string[] | undefined;
2111
+ };
2112
+ syncpack: string | boolean | string[] | {
2113
+ config?: string | string[] | undefined;
2114
+ entry?: string | string[] | undefined;
2115
+ project?: string | string[] | undefined;
2116
+ };
2117
+ tailwind: string | boolean | string[] | {
2118
+ config?: string | string[] | undefined;
2119
+ entry?: string | string[] | undefined;
2120
+ project?: string | string[] | undefined;
2121
+ };
2122
+ 'tanstack-router': string | boolean | string[] | {
2123
+ config?: string | string[] | undefined;
2124
+ entry?: string | string[] | undefined;
2125
+ project?: string | string[] | undefined;
2126
+ };
2127
+ travis: string | boolean | string[] | {
2128
+ config?: string | string[] | undefined;
2129
+ entry?: string | string[] | undefined;
2130
+ project?: string | string[] | undefined;
2131
+ };
2132
+ 'ts-node': string | boolean | string[] | {
2133
+ config?: string | string[] | undefined;
2134
+ entry?: string | string[] | undefined;
2135
+ project?: string | string[] | undefined;
2136
+ };
2137
+ tsup: string | boolean | string[] | {
2138
+ config?: string | string[] | undefined;
2139
+ entry?: string | string[] | undefined;
2140
+ project?: string | string[] | undefined;
2141
+ };
2142
+ tsx: string | boolean | string[] | {
2143
+ config?: string | string[] | undefined;
2144
+ entry?: string | string[] | undefined;
2145
+ project?: string | string[] | undefined;
2146
+ };
2147
+ typedoc: string | boolean | string[] | {
2148
+ config?: string | string[] | undefined;
2149
+ entry?: string | string[] | undefined;
2150
+ project?: string | string[] | undefined;
2151
+ };
2152
+ typescript: string | boolean | string[] | {
2153
+ config?: string | string[] | undefined;
2154
+ entry?: string | string[] | undefined;
2155
+ project?: string | string[] | undefined;
2156
+ };
2157
+ unbuild: string | boolean | string[] | {
2158
+ config?: string | string[] | undefined;
2159
+ entry?: string | string[] | undefined;
2160
+ project?: string | string[] | undefined;
2161
+ };
2162
+ unocss: string | boolean | string[] | {
2163
+ config?: string | string[] | undefined;
2164
+ entry?: string | string[] | undefined;
2165
+ project?: string | string[] | undefined;
2166
+ };
2167
+ 'vercel-og': string | boolean | string[] | {
2168
+ config?: string | string[] | undefined;
2169
+ entry?: string | string[] | undefined;
2170
+ project?: string | string[] | undefined;
2171
+ };
2172
+ vike: string | boolean | string[] | {
2173
+ config?: string | string[] | undefined;
2174
+ entry?: string | string[] | undefined;
2175
+ project?: string | string[] | undefined;
2176
+ };
2177
+ vite: string | boolean | string[] | {
2178
+ config?: string | string[] | undefined;
2179
+ entry?: string | string[] | undefined;
2180
+ project?: string | string[] | undefined;
2181
+ };
2182
+ vitest: string | boolean | string[] | {
2183
+ config?: string | string[] | undefined;
2184
+ entry?: string | string[] | undefined;
2185
+ project?: string | string[] | undefined;
2186
+ };
2187
+ vue: string | boolean | string[] | {
2188
+ config?: string | string[] | undefined;
2189
+ entry?: string | string[] | undefined;
2190
+ project?: string | string[] | undefined;
2191
+ };
2192
+ 'webdriver-io': string | boolean | string[] | {
2193
+ config?: string | string[] | undefined;
2194
+ entry?: string | string[] | undefined;
2195
+ project?: string | string[] | undefined;
2196
+ };
2197
+ webpack: string | boolean | string[] | {
2198
+ config?: string | string[] | undefined;
2199
+ entry?: string | string[] | undefined;
2200
+ project?: string | string[] | undefined;
2201
+ };
2202
+ wireit: string | boolean | string[] | {
2203
+ config?: string | string[] | undefined;
2204
+ entry?: string | string[] | undefined;
2205
+ project?: string | string[] | undefined;
2206
+ };
2207
+ wrangler: string | boolean | string[] | {
2208
+ config?: string | string[] | undefined;
2209
+ entry?: string | string[] | undefined;
2210
+ project?: string | string[] | undefined;
2211
+ };
2212
+ xo: string | boolean | string[] | {
2213
+ config?: string | string[] | undefined;
2214
+ entry?: string | string[] | undefined;
2215
+ project?: string | string[] | undefined;
2216
+ };
2217
+ yarn: string | boolean | string[] | {
2218
+ config?: string | string[] | undefined;
2219
+ entry?: string | string[] | undefined;
2220
+ project?: string | string[] | undefined;
2221
+ };
2222
+ yorkie: string | boolean | string[] | {
2223
+ config?: string | string[] | undefined;
2224
+ entry?: string | string[] | undefined;
2225
+ project?: string | string[] | undefined;
2226
+ };
2227
+ }>;