@next-vibe/checker 1.0.11 → 1.0.12
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.
- package/.dist/bin/vibe-runtime.js +10 -19
- package/.dist/bin/vibe-runtime.js.map +3 -3
- package/check.config.ts +4 -4
- package/package.json +2 -9
- package/src/app/api/[locale]/LICENSE +674 -0
- package/src/app/api/[locale]/i18n/de/index.ts +13 -0
- package/src/app/api/[locale]/i18n/en/index.ts +12 -0
- package/src/app/api/[locale]/i18n/pl/index.ts +11 -0
- package/src/app/api/[locale]/shared/i18n/de/index.ts +85 -0
- package/src/app/api/[locale]/shared/i18n/en/index.ts +83 -0
- package/src/app/api/[locale]/shared/i18n/pl/index.ts +85 -0
- package/src/app/api/[locale]/shared/stats-filtering.ts +202 -0
- package/src/app/api/[locale]/shared/types/common.schema.ts +55 -0
- package/src/app/api/[locale]/shared/types/response.schema.ts +372 -0
- package/src/app/api/[locale]/shared/types/stats-filtering.schema.ts +375 -0
- package/src/app/api/[locale]/shared/types/utils.ts +190 -0
- package/src/app/api/[locale]/shared/utils/base64.ts +49 -0
- package/src/app/api/[locale]/shared/utils/env-util.ts +40 -0
- package/src/app/api/[locale]/shared/utils/i18n/de/index.ts +21 -0
- package/src/app/api/[locale]/shared/utils/i18n/en/index.ts +19 -0
- package/src/app/api/[locale]/shared/utils/i18n/pl/index.ts +21 -0
- package/src/app/api/[locale]/shared/utils/index.ts +11 -0
- package/src/app/api/[locale]/shared/utils/object-path.ts +41 -0
- package/src/app/api/[locale]/shared/utils/object.test.ts +82 -0
- package/src/app/api/[locale]/shared/utils/object.ts +75 -0
- package/src/app/api/[locale]/shared/utils/parse-error.ts +134 -0
- package/src/app/api/[locale]/shared/utils/parse-json.ts +70 -0
- package/src/app/api/[locale]/shared/utils/time.ts +53 -0
- package/src/app/api/[locale]/shared/utils/validation.ts +127 -0
- package/src/app/api/[locale]/shared/utils/zod-required-fields.ts +116 -0
- package/src/app/api/[locale]/system/builder/definition.ts +1942 -0
- package/src/app/api/[locale]/system/builder/enum.ts +77 -0
- package/src/app/api/[locale]/system/builder/i18n/de/index.ts +677 -0
- package/src/app/api/[locale]/system/builder/i18n/en/index.ts +665 -0
- package/src/app/api/[locale]/system/builder/i18n/pl/index.ts +668 -0
- package/src/app/api/[locale]/system/builder/repository/build-executor.test.ts +182 -0
- package/src/app/api/[locale]/system/builder/repository/build-executor.ts +583 -0
- package/src/app/api/[locale]/system/builder/repository/bun-compiler.ts +261 -0
- package/src/app/api/[locale]/system/builder/repository/bundle-analyzer.ts +197 -0
- package/src/app/api/[locale]/system/builder/repository/config-loader.ts +159 -0
- package/src/app/api/[locale]/system/builder/repository/config-validator.ts +97 -0
- package/src/app/api/[locale]/system/builder/repository/constants.ts +125 -0
- package/src/app/api/[locale]/system/builder/repository/error-suggester.ts +75 -0
- package/src/app/api/[locale]/system/builder/repository/file-copier.ts +98 -0
- package/src/app/api/[locale]/system/builder/repository/folder-cleaner.ts +80 -0
- package/src/app/api/[locale]/system/builder/repository/index.ts +2 -0
- package/src/app/api/[locale]/system/builder/repository/npm-package-generator.ts +146 -0
- package/src/app/api/[locale]/system/builder/repository/output-formatter.ts +104 -0
- package/src/app/api/[locale]/system/builder/repository/profile-service.ts +79 -0
- package/src/app/api/[locale]/system/builder/repository/report-generator.ts +125 -0
- package/src/app/api/[locale]/system/builder/repository/vite-compiler.ts +291 -0
- package/src/app/api/[locale]/system/builder/route.ts +21 -0
- package/src/app/api/[locale]/system/builder/test-files/file1.ts +2 -0
- package/src/app/api/[locale]/system/builder/test-files/file2.tsx +10 -0
- package/src/app/api/[locale]/system/builder/test-files/file3.tsx +16 -0
- package/src/app/api/[locale]/system/builder/test-files/folderToCopy/fileInFolder.ts +2 -0
- package/src/app/api/[locale]/system/builder/test-files/test-config.ts +38 -0
- package/src/app/api/[locale]/system/builder/test-files/test-delete-config.ts +8 -0
- package/src/app/api/[locale]/system/builder/test-files/test-project/package.json +24 -0
- package/src/app/api/[locale]/system/builder/test-files/test-project/src/constants.ts +6 -0
- package/src/app/api/[locale]/system/builder/test-files/test-project/src/greet.ts +18 -0
- package/src/app/api/[locale]/system/builder/test-files/test-project/src/index.ts +7 -0
- package/src/app/api/[locale]/system/builder/test-files/test-project/src/utils/calculate.ts +27 -0
- package/src/app/api/[locale]/system/builder/test-files/test-project/tsconfig.json +19 -0
- package/src/app/api/[locale]/system/builder/test-files/test-project/tsconfig.tsbuildinfo +1 -0
- package/src/app/api/[locale]/system/builder/test-files/test3.css +1 -0
- package/src/app/api/[locale]/system/check/config/repository.ts +819 -0
- package/src/app/api/[locale]/system/check/config/shared.ts +396 -0
- package/src/app/api/[locale]/system/check/config/types.ts +616 -0
- package/src/app/api/[locale]/system/check/config/utils.ts +171 -0
- package/src/app/api/[locale]/system/check/i18n/de/index.ts +15 -0
- package/src/app/api/[locale]/system/check/i18n/en/index.ts +14 -0
- package/src/app/api/[locale]/system/check/i18n/pl/index.ts +15 -0
- package/src/app/api/[locale]/system/check/lint/definition.ts +414 -0
- package/src/app/api/[locale]/system/check/lint/enum.ts +37 -0
- package/src/app/api/[locale]/system/check/lint/i18n/de/index.ts +164 -0
- package/src/app/api/[locale]/system/check/lint/i18n/en/index.ts +162 -0
- package/src/app/api/[locale]/system/check/lint/i18n/pl/index.ts +164 -0
- package/src/app/api/[locale]/system/check/lint/repository.ts +753 -0
- package/src/app/api/[locale]/system/check/lint/route.ts +21 -0
- package/src/app/api/[locale]/system/check/oxlint/README.md +190 -0
- package/src/app/api/[locale]/system/check/oxlint/definition.ts +414 -0
- package/src/app/api/[locale]/system/check/oxlint/enum.ts +37 -0
- package/src/app/api/[locale]/system/check/oxlint/i18n/de/index.ts +171 -0
- package/src/app/api/[locale]/system/check/oxlint/i18n/en/index.ts +168 -0
- package/src/app/api/[locale]/system/check/oxlint/i18n/pl/index.ts +172 -0
- package/src/app/api/[locale]/system/check/oxlint/plugins/i18n/src/index.ts +372 -0
- package/src/app/api/[locale]/system/check/oxlint/plugins/jsx-capitalization/README.md +246 -0
- package/src/app/api/[locale]/system/check/oxlint/plugins/jsx-capitalization/src/index.ts +583 -0
- package/src/app/api/[locale]/system/check/oxlint/plugins/restricted-syntax/src/index.ts +500 -0
- package/src/app/api/[locale]/system/check/oxlint/plugins/restricted-syntax/test.tsx +74 -0
- package/src/app/api/[locale]/system/check/oxlint/plugins/shared/config-loader.ts +305 -0
- package/src/app/api/[locale]/system/check/oxlint/repository.ts +959 -0
- package/src/app/api/[locale]/system/check/oxlint/route.ts +21 -0
- package/src/app/api/[locale]/system/check/oxlint/types.ts +193 -0
- package/src/app/api/[locale]/system/check/test-project/bun.lock +449 -0
- package/src/app/api/[locale]/system/check/test-project/check.config.ts +989 -0
- package/src/app/api/[locale]/system/check/test-project/package.json +20 -0
- package/src/app/api/[locale]/system/check/test-project/src/constants.ts +6 -0
- package/src/app/api/[locale]/system/check/test-project/src/greet.ts +18 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/a11y-issues.tsx +107 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/eslint-issues.tsx +37 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/general-issues.ts +137 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/i18n-issues.tsx +129 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/jsx-capitalization-issues.tsx +131 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/nextjs-issues.tsx +95 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/promise-issues.ts +76 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/react-issues.tsx +95 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/restricted-syntax-issues.tsx +61 -0
- package/src/app/api/[locale]/system/check/test-project/src/test-issues/typescript-issues.ts +80 -0
- package/src/app/api/[locale]/system/check/test-project/src/utils/calculate.ts +27 -0
- package/src/app/api/[locale]/system/check/test-project/tsconfig.json +38 -0
- package/src/app/api/[locale]/system/check/test-project/tsconfig.tsbuildinfo +1 -0
- package/src/app/api/[locale]/system/check/typecheck/definition.ts +369 -0
- package/src/app/api/[locale]/system/check/typecheck/enum.ts +37 -0
- package/src/app/api/[locale]/system/check/typecheck/i18n/de/index.ts +159 -0
- package/src/app/api/[locale]/system/check/typecheck/i18n/en/index.ts +150 -0
- package/src/app/api/[locale]/system/check/typecheck/i18n/pl/index.ts +155 -0
- package/src/app/api/[locale]/system/check/typecheck/repository.ts +919 -0
- package/src/app/api/[locale]/system/check/typecheck/route.ts +22 -0
- package/src/app/api/[locale]/system/check/typecheck/utils.ts +168 -0
- package/src/app/api/[locale]/system/check/vibe-check/definition.ts +568 -0
- package/src/app/api/[locale]/system/check/vibe-check/enum.ts +69 -0
- package/src/app/api/[locale]/system/check/vibe-check/i18n/de/index.ts +192 -0
- package/src/app/api/[locale]/system/check/vibe-check/i18n/en/index.ts +189 -0
- package/src/app/api/[locale]/system/check/vibe-check/i18n/pl/index.ts +192 -0
- package/src/app/api/[locale]/system/check/vibe-check/repository.ts +545 -0
- package/src/app/api/[locale]/system/check/vibe-check/route.test.ts +1142 -0
- package/src/app/api/[locale]/system/check/vibe-check/route.ts +21 -0
- package/src/app/api/[locale]/system/generated/endpoint.ts +313 -0
- package/src/app/api/[locale]/system/generated/endpoints.ts +156 -0
- package/src/app/api/[locale]/system/generated/route-handlers.ts +224 -0
- package/src/app/api/[locale]/system/generators/endpoint/definition.ts +193 -0
- package/src/app/api/[locale]/system/generators/endpoint/i18n/de/index.ts +48 -0
- package/src/app/api/[locale]/system/generators/endpoint/i18n/en/index.ts +48 -0
- package/src/app/api/[locale]/system/generators/endpoint/i18n/pl/index.ts +50 -0
- package/src/app/api/[locale]/system/generators/endpoint/repository.ts +291 -0
- package/src/app/api/[locale]/system/generators/endpoint/route.ts +21 -0
- package/src/app/api/[locale]/system/generators/endpoints/definition.ts +246 -0
- package/src/app/api/[locale]/system/generators/endpoints/i18n/de/index.ts +54 -0
- package/src/app/api/[locale]/system/generators/endpoints/i18n/en/index.ts +52 -0
- package/src/app/api/[locale]/system/generators/endpoints/i18n/pl/index.ts +54 -0
- package/src/app/api/[locale]/system/generators/endpoints/options-repository.ts +463 -0
- package/src/app/api/[locale]/system/generators/endpoints/repository.ts +383 -0
- package/src/app/api/[locale]/system/generators/endpoints/route.ts +18 -0
- package/src/app/api/[locale]/system/generators/endpoints-index/definition.ts +194 -0
- package/src/app/api/[locale]/system/generators/endpoints-index/i18n/de/index.ts +71 -0
- package/src/app/api/[locale]/system/generators/endpoints-index/i18n/en/index.ts +69 -0
- package/src/app/api/[locale]/system/generators/endpoints-index/i18n/pl/index.ts +71 -0
- package/src/app/api/[locale]/system/generators/endpoints-index/repository.ts +294 -0
- package/src/app/api/[locale]/system/generators/endpoints-index/route.ts +18 -0
- package/src/app/api/[locale]/system/generators/generate-all/definition.ts +355 -0
- package/src/app/api/[locale]/system/generators/generate-all/i18n/de/index.ts +96 -0
- package/src/app/api/[locale]/system/generators/generate-all/i18n/en/index.ts +94 -0
- package/src/app/api/[locale]/system/generators/generate-all/i18n/pl/index.ts +96 -0
- package/src/app/api/[locale]/system/generators/generate-all/repository.ts +257 -0
- package/src/app/api/[locale]/system/generators/generate-all/route.ts +20 -0
- package/src/app/api/[locale]/system/generators/i18n/de/index.ts +15 -0
- package/src/app/api/[locale]/system/generators/i18n/en/index.ts +14 -0
- package/src/app/api/[locale]/system/generators/i18n/pl/index.ts +15 -0
- package/src/app/api/[locale]/system/generators/route-handlers/definition.ts +198 -0
- package/src/app/api/[locale]/system/generators/route-handlers/i18n/de/index.ts +48 -0
- package/src/app/api/[locale]/system/generators/route-handlers/i18n/en/index.ts +48 -0
- package/src/app/api/[locale]/system/generators/route-handlers/i18n/pl/index.ts +50 -0
- package/src/app/api/[locale]/system/generators/route-handlers/repository.ts +277 -0
- package/src/app/api/[locale]/system/generators/route-handlers/route.ts +17 -0
- package/src/app/api/[locale]/system/generators/shared/utils.ts +233 -0
- package/src/app/api/[locale]/system/help/definition.ts +445 -0
- package/src/app/api/[locale]/system/help/i18n/de/index.ts +267 -0
- package/src/app/api/[locale]/system/help/i18n/en/index.ts +262 -0
- package/src/app/api/[locale]/system/help/i18n/pl/index.ts +265 -0
- package/src/app/api/[locale]/system/help/interactive/definition.ts +125 -0
- package/src/app/api/[locale]/system/help/interactive/i18n/de/index.ts +22 -0
- package/src/app/api/[locale]/system/help/interactive/i18n/en/index.ts +19 -0
- package/src/app/api/[locale]/system/help/interactive/i18n/pl/index.ts +22 -0
- package/src/app/api/[locale]/system/help/interactive/repository.ts +1025 -0
- package/src/app/api/[locale]/system/help/interactive/route.ts +53 -0
- package/src/app/api/[locale]/system/help/list/definition.ts +372 -0
- package/src/app/api/[locale]/system/help/list/repository.ts +110 -0
- package/src/app/api/[locale]/system/help/list/route.ts +21 -0
- package/src/app/api/[locale]/system/help/repository.ts +212 -0
- package/src/app/api/[locale]/system/help/route.ts +16 -0
- package/src/app/api/[locale]/system/i18n/de/index.ts +68 -0
- package/src/app/api/[locale]/system/i18n/en/index.ts +65 -0
- package/src/app/api/[locale]/system/i18n/pl/index.ts +66 -0
- package/src/app/api/[locale]/system/release-tool/definition.ts +3104 -0
- package/src/app/api/[locale]/system/release-tool/i18n/de/index.ts +813 -0
- package/src/app/api/[locale]/system/release-tool/i18n/en/index.ts +797 -0
- package/src/app/api/[locale]/system/release-tool/i18n/pl/index.ts +810 -0
- package/src/app/api/[locale]/system/release-tool/repository/asset-zipper.ts +128 -0
- package/src/app/api/[locale]/system/release-tool/repository/changelog-generator.ts +212 -0
- package/src/app/api/[locale]/system/release-tool/repository/ci-detector.ts +566 -0
- package/src/app/api/[locale]/system/release-tool/repository/config.ts +113 -0
- package/src/app/api/[locale]/system/release-tool/repository/constants.ts +407 -0
- package/src/app/api/[locale]/system/release-tool/repository/dependency-manager.ts +527 -0
- package/src/app/api/[locale]/system/release-tool/repository/git-service.ts +403 -0
- package/src/app/api/[locale]/system/release-tool/repository/hook-runner.ts +100 -0
- package/src/app/api/[locale]/system/release-tool/repository/index.ts +1 -0
- package/src/app/api/[locale]/system/release-tool/repository/notification-service.ts +638 -0
- package/src/app/api/[locale]/system/release-tool/repository/package-service.ts +169 -0
- package/src/app/api/[locale]/system/release-tool/repository/publisher.ts +253 -0
- package/src/app/api/[locale]/system/release-tool/repository/quality-runner.ts +428 -0
- package/src/app/api/[locale]/system/release-tool/repository/release-creator.ts +293 -0
- package/src/app/api/[locale]/system/release-tool/repository/release-executor.ts +1198 -0
- package/src/app/api/[locale]/system/release-tool/repository/snyk-service.ts +136 -0
- package/src/app/api/[locale]/system/release-tool/repository/utils.ts +642 -0
- package/src/app/api/[locale]/system/release-tool/repository/validation.ts +288 -0
- package/src/app/api/[locale]/system/release-tool/repository/version-service.ts +297 -0
- package/src/app/api/[locale]/system/release-tool/route.ts +21 -0
- package/src/app/api/[locale]/system/unified-interface/README.md +328 -0
- package/src/app/api/[locale]/system/unified-interface/cli/README.md +349 -0
- package/src/app/api/[locale]/system/unified-interface/cli/auth/cli-handler.ts +95 -0
- package/src/app/api/[locale]/system/unified-interface/cli/auth/cli-user.ts +146 -0
- package/src/app/api/[locale]/system/unified-interface/cli/auth/session-file.ts +266 -0
- package/src/app/api/[locale]/system/unified-interface/cli/env.ts +26 -0
- package/src/app/api/[locale]/system/unified-interface/cli/i18n/de/index.ts +157 -0
- package/src/app/api/[locale]/system/unified-interface/cli/i18n/en/index.ts +155 -0
- package/src/app/api/[locale]/system/unified-interface/cli/i18n/pl/index.ts +158 -0
- package/src/app/api/[locale]/system/unified-interface/cli/runtime/debug.ts +595 -0
- package/src/app/api/[locale]/system/unified-interface/cli/runtime/entry-point.ts +129 -0
- package/src/app/api/[locale]/system/unified-interface/cli/runtime/environment.ts +155 -0
- package/src/app/api/[locale]/system/unified-interface/cli/runtime/execution-errors.ts +452 -0
- package/src/app/api/[locale]/system/unified-interface/cli/runtime/parsing.ts +297 -0
- package/src/app/api/[locale]/system/unified-interface/cli/runtime/route-executor.ts +859 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/i18n/de/index.ts +12 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/i18n/en/index.ts +11 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/i18n/pl/index.ts +12 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/install/definition.ts +262 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/install/i18n/de/index.ts +54 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/install/i18n/en/index.ts +52 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/install/i18n/pl/index.ts +54 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/install/repository.ts +421 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/install/route.ts +25 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/status/definition.ts +181 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/status/i18n/de/index.ts +61 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/status/i18n/en/index.ts +59 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/status/i18n/pl/index.ts +61 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/status/repository.ts +195 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/status/route.ts +22 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/uninstall/definition.ts +188 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/uninstall/i18n/de/index.ts +54 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/uninstall/i18n/en/index.ts +52 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/uninstall/i18n/pl/index.ts +54 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/uninstall/repository.ts +209 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/uninstall/route.ts +24 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/update/definition.ts +200 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/update/i18n/de/index.ts +54 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/update/i18n/en/index.ts +52 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/update/i18n/pl/index.ts +54 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/update/repository.ts +113 -0
- package/src/app/api/[locale]/system/unified-interface/cli/setup/update/route.ts +22 -0
- package/src/app/api/[locale]/system/unified-interface/cli/vibe-runtime.ts +304 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/core/base-renderer.ts +270 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/core/registry.ts +309 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/core/types.ts +126 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/i18n/de/index.ts +67 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/i18n/en/index.ts +65 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/i18n/pl/index.ts +67 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/accordion.ts +74 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/avatar.ts +39 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/badge.ts +54 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/code-output.ts +298 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/code-quality-files.ts +89 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/code-quality-list.ts +298 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/code-quality-summary.ts +96 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/container.ts +186 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/data-card.ts +65 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/data-cards.ts +570 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/data-list.ts +80 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/data-table.ts +385 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/editable-text.ts +99 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/empty-state.ts +55 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/errors.ts +67 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/grouped-list.ts +729 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/link-card.ts +87 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/link-list.ts +112 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/link.ts +59 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/loading.ts +50 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/markdown.ts +131 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/metric.ts +291 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/section.ts +120 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/stats-grid.ts +149 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/tabs.ts +61 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/text.ts +78 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/implementations/title.ts +42 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/renderers/response-renderer.ts +418 -0
- package/src/app/api/[locale]/system/unified-interface/cli/widgets/renderers/schema-handler.ts +534 -0
- package/src/app/api/[locale]/system/unified-interface/i18n/de/index.ts +42 -0
- package/src/app/api/[locale]/system/unified-interface/i18n/en/index.ts +40 -0
- package/src/app/api/[locale]/system/unified-interface/i18n/pl/index.ts +43 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/README.md +114 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/converter.ts +146 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/i18n/de/index.ts +182 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/i18n/en/index.ts +179 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/i18n/pl/index.ts +181 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/registry.ts +343 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/serve/definition.ts +147 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/serve/repository.ts +38 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/serve/route.ts +14 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/server/protocol-handler.ts +309 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/server/server.ts +154 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/server/stdio-transport.ts +193 -0
- package/src/app/api/[locale]/system/unified-interface/mcp/types.ts +246 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/definition/create-form.ts +1510 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/definition/create.ts +581 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/definition/endpoint-to-metadata.ts +52 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/definition/loader.ts +152 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/definitions/registry.ts +265 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/permissions/registry.ts +680 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/route/executor.ts +220 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/route/handler.ts +325 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/route/multi.ts +184 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/route/request-validator.ts +201 -0
- package/src/app/api/[locale]/system/unified-interface/shared/endpoints/route/single.ts +58 -0
- package/src/app/api/[locale]/system/unified-interface/shared/env/define-env-client.ts +49 -0
- package/src/app/api/[locale]/system/unified-interface/shared/env/define-env.ts +47 -0
- package/src/app/api/[locale]/system/unified-interface/shared/env/validation-logger.ts +58 -0
- package/src/app/api/[locale]/system/unified-interface/shared/field/enum.ts +110 -0
- package/src/app/api/[locale]/system/unified-interface/shared/field/specialized.ts +339 -0
- package/src/app/api/[locale]/system/unified-interface/shared/field/utils.test.ts +408 -0
- package/src/app/api/[locale]/system/unified-interface/shared/field/utils.ts +1349 -0
- package/src/app/api/[locale]/system/unified-interface/shared/field-config/endpoint-field-types.ts +107 -0
- package/src/app/api/[locale]/system/unified-interface/shared/field-config/field-config-types.ts +268 -0
- package/src/app/api/[locale]/system/unified-interface/shared/logger/colors.ts +114 -0
- package/src/app/api/[locale]/system/unified-interface/shared/logger/endpoint.ts +169 -0
- package/src/app/api/[locale]/system/unified-interface/shared/logger/file-logger.ts +88 -0
- package/src/app/api/[locale]/system/unified-interface/shared/logger/formatters.ts +177 -0
- package/src/app/api/[locale]/system/unified-interface/shared/server-only/auth/base-auth-handler.ts +82 -0
- package/src/app/api/[locale]/system/unified-interface/shared/server-only/auth/factory.ts +33 -0
- package/src/app/api/[locale]/system/unified-interface/shared/server-only/server-only.ts +4 -0
- package/src/app/api/[locale]/system/unified-interface/shared/types/actions.ts +289 -0
- package/src/app/api/[locale]/system/unified-interface/shared/types/endpoint.ts +1167 -0
- package/src/app/api/[locale]/system/unified-interface/shared/types/enums.ts +382 -0
- package/src/app/api/[locale]/system/unified-interface/shared/types/platform.ts +34 -0
- package/src/app/api/[locale]/system/unified-interface/shared/types/types.ts +80 -0
- package/src/app/api/[locale]/system/unified-interface/shared/types/ui-config.ts +76 -0
- package/src/app/api/[locale]/system/unified-interface/shared/utils/error-types.ts +27 -0
- package/src/app/api/[locale]/system/unified-interface/shared/utils/path.ts +63 -0
- package/src/app/api/[locale]/system/unified-interface/shared/utils/scanner.ts +241 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/actions.ts +256 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/configs.ts +1158 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/helpers.ts +80 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/accordion.ts +82 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/avatar.ts +75 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/badge.ts +89 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/code-output.ts +302 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/code-quality-list.ts +202 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/container.ts +129 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/data-card.ts +81 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/data-cards.ts +258 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/data-list.ts +123 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/data-table.ts +387 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/editable-text.ts +89 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/empty-state.ts +78 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/errors.ts +93 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/grouped-list.ts +448 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/index.ts +38 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/link-card.ts +130 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/link-list.ts +127 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/link.ts +68 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/loading.ts +81 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/markdown.ts +176 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/metric-card.ts +241 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/section.ts +90 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/stats-grid.ts +71 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/tabs.ts +80 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/text.ts +105 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/logic/title.ts +72 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/types.ts +240 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/utils/field-helpers.ts +137 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/utils/formatting.ts +437 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/utils/url.ts +40 -0
- package/src/app/api/[locale]/system/unified-interface/shared/widgets/utils/widget-helpers.ts +465 -0
- package/src/app/api/[locale]/user/auth/enum.ts +16 -0
- package/src/app/api/[locale]/user/auth/i18n/de/index.ts +227 -0
- package/src/app/api/[locale]/user/auth/i18n/en/index.ts +205 -0
- package/src/app/api/[locale]/user/auth/i18n/pl/index.ts +219 -0
- package/src/app/api/[locale]/user/auth/types.ts +110 -0
- package/src/app/api/[locale]/user/enum.ts +64 -0
- package/src/app/api/[locale]/user/private/i18n/de/index.ts +3 -0
- package/src/app/api/[locale]/user/private/i18n/en/index.ts +1 -0
- package/src/app/api/[locale]/user/private/i18n/pl/index.ts +3 -0
- package/src/app/api/[locale]/user/types.ts +118 -0
- package/src/app/api/[locale]/user/user-roles/enum.ts +112 -0
- package/src/app/api/[locale]/user/user-roles/i18n/de/index.ts +85 -0
- package/src/app/api/[locale]/user/user-roles/i18n/en/index.ts +83 -0
- package/src/app/api/[locale]/user/user-roles/i18n/pl/index.ts +86 -0
- package/src/app/api/[locale]/user/user-roles/types.ts +34 -0
- package/src/app/api/i18n/de/index.ts +6 -0
- package/src/app/api/i18n/en/index.ts +5 -0
- package/src/app/api/i18n/pl/index.ts +5 -0
- package/src/app/i18n/de/index.ts +6 -0
- package/src/app/i18n/en/index.ts +5 -0
- package/src/app/i18n/pl/index.ts +5 -0
|
@@ -0,0 +1,665 @@
|
|
|
1
|
+
export const translations = {
|
|
2
|
+
category: "Builder",
|
|
3
|
+
description: "Build and bundle tool for the project",
|
|
4
|
+
cli: {
|
|
5
|
+
build: {
|
|
6
|
+
description: "Build type: build",
|
|
7
|
+
configOption: "specify the config file path",
|
|
8
|
+
defaultConfig: "build.config.ts",
|
|
9
|
+
},
|
|
10
|
+
},
|
|
11
|
+
enums: {
|
|
12
|
+
profile: {
|
|
13
|
+
development: "Development",
|
|
14
|
+
production: "Production",
|
|
15
|
+
},
|
|
16
|
+
buildType: {
|
|
17
|
+
reactTailwind: "React + Tailwind",
|
|
18
|
+
react: "React",
|
|
19
|
+
vanilla: "Vanilla JS",
|
|
20
|
+
executable: "Executable (Bun)",
|
|
21
|
+
},
|
|
22
|
+
bunTarget: {
|
|
23
|
+
bun: "Bun Runtime",
|
|
24
|
+
node: "Node.js",
|
|
25
|
+
browser: "Browser",
|
|
26
|
+
},
|
|
27
|
+
sourcemap: {
|
|
28
|
+
external: "External (.map file)",
|
|
29
|
+
inline: "Inline (embedded)",
|
|
30
|
+
none: "None (disabled)",
|
|
31
|
+
},
|
|
32
|
+
format: {
|
|
33
|
+
esm: "ES Module",
|
|
34
|
+
cjs: "CommonJS",
|
|
35
|
+
iife: "IIFE (Browser)",
|
|
36
|
+
},
|
|
37
|
+
viteMinify: {
|
|
38
|
+
esbuild: "esbuild (fast)",
|
|
39
|
+
terser: "Terser (small)",
|
|
40
|
+
false: "Disabled",
|
|
41
|
+
},
|
|
42
|
+
viteLibFormat: {
|
|
43
|
+
es: "ES Module",
|
|
44
|
+
cjs: "CommonJS",
|
|
45
|
+
umd: "UMD",
|
|
46
|
+
iife: "IIFE",
|
|
47
|
+
},
|
|
48
|
+
viteSourcemap: {
|
|
49
|
+
true: "Enabled",
|
|
50
|
+
false: "Disabled",
|
|
51
|
+
inline: "Inline",
|
|
52
|
+
hidden: "Hidden",
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
errors: {
|
|
56
|
+
inputFileNotFound: "Input file {{filePath}} does not exist",
|
|
57
|
+
invalidOutputFileName: "Output file name is invalid",
|
|
58
|
+
invalidBuildConfig:
|
|
59
|
+
"Invalid build config format. Ensure the config exports a default BuildConfig object.",
|
|
60
|
+
configNotFound: "Config file not found: {{path}}",
|
|
61
|
+
inputRequired: "Input file is required for this build target",
|
|
62
|
+
emptyConfig: "Empty configuration - no build steps defined",
|
|
63
|
+
},
|
|
64
|
+
warnings: {
|
|
65
|
+
outputIsDirectory:
|
|
66
|
+
"Output path should be a file, not a directory: {{path}}",
|
|
67
|
+
sourceNotFound: "Source file not found: {{path}}",
|
|
68
|
+
},
|
|
69
|
+
suggestions: {
|
|
70
|
+
checkFilePaths: "Check that all file paths are correct and files exist",
|
|
71
|
+
runFromProjectRoot:
|
|
72
|
+
"Make sure you're running from the project root directory",
|
|
73
|
+
checkPermissions: "Check file permissions for input and output directories",
|
|
74
|
+
checkDependencies: "Some dependencies may be missing - check imports",
|
|
75
|
+
runInstall:
|
|
76
|
+
"Try running 'bun install' to ensure all dependencies are available",
|
|
77
|
+
increaseMemory:
|
|
78
|
+
"For large builds, try increasing memory: NODE_OPTIONS=--max-old-space-size=4096",
|
|
79
|
+
useExternals: "Consider marking large dependencies as external",
|
|
80
|
+
checkSyntax: "Check for syntax errors in your source files",
|
|
81
|
+
runTypecheck: "Run 'bun typecheck' to check for type errors",
|
|
82
|
+
increaseTimeout: "Increase the timeout value for the build operation",
|
|
83
|
+
checkNetworkConnection: "Check your network connection",
|
|
84
|
+
checkDiskSpace: "Check available disk space",
|
|
85
|
+
cleanBuildCache: "Try cleaning the build cache and temporary files",
|
|
86
|
+
},
|
|
87
|
+
messages: {
|
|
88
|
+
buildStart: "Starting build...",
|
|
89
|
+
cleaningDist: "Cleaning output directory...",
|
|
90
|
+
cleaningFolders: "Cleaning folders...",
|
|
91
|
+
buildingVersion: "Building version {{version}}...",
|
|
92
|
+
bundlingCli: "Bundling CLI with Bun...",
|
|
93
|
+
bundleFailed: "Bundle failed",
|
|
94
|
+
bundleSuccess: "CLI bundled successfully",
|
|
95
|
+
creatingPackageJson: "Creating package.json...",
|
|
96
|
+
copyingFiles: "Copying README and LICENSE...",
|
|
97
|
+
copyingAdditionalFiles: "Copying additional files...",
|
|
98
|
+
publishInstructions: "To publish:",
|
|
99
|
+
buildComplete: "Build complete!",
|
|
100
|
+
buildFailed: "Build failed",
|
|
101
|
+
loadingConfig: "Loading config from {{path}}...",
|
|
102
|
+
cleaningFolder: "Cleaning folder: {{folder}}",
|
|
103
|
+
compilingFiles: "Compiling files with Vite...",
|
|
104
|
+
compilingFile: "Compiling: {{file}}",
|
|
105
|
+
fileCompiled: "Compiled: {{file}}",
|
|
106
|
+
buildingWithVite: "Building with Vite ({{type}})...",
|
|
107
|
+
usingInlineConfig: "Using inline configuration...",
|
|
108
|
+
filesCopied: "Files copied successfully",
|
|
109
|
+
dryRunMode: "[DRY RUN] No changes will be made",
|
|
110
|
+
buildSummary: "Build Summary:",
|
|
111
|
+
totalDuration: "Total Duration",
|
|
112
|
+
filesBuilt: "Files Built",
|
|
113
|
+
filesCopiedCount: "Files Copied",
|
|
114
|
+
stepsCompleted: "Steps Completed",
|
|
115
|
+
usingProfile: "Using profile: {{profile}}",
|
|
116
|
+
runningPreBuild: "Running pre-build hook...",
|
|
117
|
+
runningPostBuild: "Running post-build hook...",
|
|
118
|
+
preBuildComplete: "Pre-build hook completed",
|
|
119
|
+
postBuildComplete: "Post-build hook completed",
|
|
120
|
+
analyzingBundles: "Analyzing bundle sizes...",
|
|
121
|
+
bundleAnalysis: "Bundle Analysis",
|
|
122
|
+
optimizationTips: "Optimization Tips",
|
|
123
|
+
suggestions: "Suggestions",
|
|
124
|
+
validatingConfig: "Validating build configuration...",
|
|
125
|
+
configValid: "Configuration is valid",
|
|
126
|
+
configWarnings: "Configuration warnings",
|
|
127
|
+
tsEntrypointWithNode:
|
|
128
|
+
"TypeScript entrypoint with Node target - consider using Bun target for better compatibility",
|
|
129
|
+
watchModeStarted: "Watch mode started - waiting for file changes...",
|
|
130
|
+
watchModeRebuild: "File changed: {{file}} - rebuilding...",
|
|
131
|
+
watchModeReady: "Build complete - watching for changes...",
|
|
132
|
+
watchModeError: "Watch mode error: {{error}}",
|
|
133
|
+
watchModeStopped: "Watch mode stopped",
|
|
134
|
+
parallelCompiling: "Compiling {{count}} files in parallel...",
|
|
135
|
+
parallelComplete:
|
|
136
|
+
"Parallel compilation complete: {{count}} files in {{duration}}ms",
|
|
137
|
+
cacheHit: "Cache hit: {{file}} (skipped)",
|
|
138
|
+
cacheMiss: "Cache miss: {{file}} (rebuilding)",
|
|
139
|
+
cacheCleared: "Build cache cleared",
|
|
140
|
+
cacheStats:
|
|
141
|
+
"Cache: {{hits}} hits, {{misses}} misses ({{hitRate}}% hit rate)",
|
|
142
|
+
generatingReport: "Generating build report...",
|
|
143
|
+
reportGenerated: "Build report generated: {{path}}",
|
|
144
|
+
progress: "[{{current}}/{{total}}] {{step}}",
|
|
145
|
+
spinnerBuilding: "Building...",
|
|
146
|
+
spinnerCompiling: "Compiling...",
|
|
147
|
+
spinnerBundling: "Bundling...",
|
|
148
|
+
},
|
|
149
|
+
post: {
|
|
150
|
+
title: "Build Package",
|
|
151
|
+
description:
|
|
152
|
+
"Comprehensive build tool supporting CLI bundling, Vite builds, React/Tailwind, and npm distribution",
|
|
153
|
+
form: {
|
|
154
|
+
title: "Build Configuration",
|
|
155
|
+
description: "Configure build settings or use a build.config.ts file",
|
|
156
|
+
},
|
|
157
|
+
fields: {
|
|
158
|
+
// Config file path
|
|
159
|
+
configPath: {
|
|
160
|
+
title: "Config File Path",
|
|
161
|
+
description: "Path to build configuration file (build.config.ts)",
|
|
162
|
+
placeholder: "build.config.ts",
|
|
163
|
+
},
|
|
164
|
+
// Config object
|
|
165
|
+
configObject: {
|
|
166
|
+
title: "Build Options",
|
|
167
|
+
description: "Inline build configuration (overrides config file)",
|
|
168
|
+
},
|
|
169
|
+
// Runtime options
|
|
170
|
+
profile: {
|
|
171
|
+
title: "Build Profile",
|
|
172
|
+
description:
|
|
173
|
+
"Development (fast, debug) or Production (optimized, minified)",
|
|
174
|
+
},
|
|
175
|
+
dryRun: {
|
|
176
|
+
title: "Dry Run",
|
|
177
|
+
description: "Preview what would be built without actually executing",
|
|
178
|
+
},
|
|
179
|
+
verbose: {
|
|
180
|
+
title: "Verbose Output",
|
|
181
|
+
description: "Show detailed build information and progress",
|
|
182
|
+
},
|
|
183
|
+
analyze: {
|
|
184
|
+
title: "Bundle Analysis",
|
|
185
|
+
description:
|
|
186
|
+
"Analyze bundle sizes and identify optimization opportunities",
|
|
187
|
+
},
|
|
188
|
+
watch: {
|
|
189
|
+
title: "Watch Mode",
|
|
190
|
+
description: "Watch for file changes and rebuild automatically",
|
|
191
|
+
},
|
|
192
|
+
parallel: {
|
|
193
|
+
title: "Parallel Build",
|
|
194
|
+
description: "Compile multiple files in parallel for faster builds",
|
|
195
|
+
},
|
|
196
|
+
cache: {
|
|
197
|
+
title: "Build Cache",
|
|
198
|
+
description: "Cache build artifacts to skip unchanged files",
|
|
199
|
+
},
|
|
200
|
+
report: {
|
|
201
|
+
title: "Generate Report",
|
|
202
|
+
description: "Generate a JSON build report with detailed metrics",
|
|
203
|
+
},
|
|
204
|
+
minify: {
|
|
205
|
+
title: "Minify",
|
|
206
|
+
description: "Minify the output bundle (overrides profile setting)",
|
|
207
|
+
},
|
|
208
|
+
// Folders to clean
|
|
209
|
+
foldersToClean: {
|
|
210
|
+
title: "Folders to Clean",
|
|
211
|
+
description: "Folders to delete before building (e.g., dist, build)",
|
|
212
|
+
placeholder: "dist, build, .cache",
|
|
213
|
+
},
|
|
214
|
+
// Files to compile
|
|
215
|
+
filesToCompile: {
|
|
216
|
+
title: "Files to Compile",
|
|
217
|
+
description: "List of files to compile with Vite or Bun",
|
|
218
|
+
},
|
|
219
|
+
fileToCompile: {
|
|
220
|
+
title: "File Configuration",
|
|
221
|
+
},
|
|
222
|
+
input: {
|
|
223
|
+
title: "Input File",
|
|
224
|
+
description: "Entry point file path (e.g., src/index.ts)",
|
|
225
|
+
placeholder: "src/index.ts",
|
|
226
|
+
},
|
|
227
|
+
output: {
|
|
228
|
+
title: "Output File",
|
|
229
|
+
description: "Output file path (e.g., dist/index.js)",
|
|
230
|
+
placeholder: "dist/index.js",
|
|
231
|
+
},
|
|
232
|
+
type: {
|
|
233
|
+
title: "Build Type",
|
|
234
|
+
description: "Type of build: React, Vanilla JS, or Executable",
|
|
235
|
+
},
|
|
236
|
+
modulesToExternalize: {
|
|
237
|
+
title: "External Modules",
|
|
238
|
+
description: "Modules to exclude from bundle (e.g., react, lodash)",
|
|
239
|
+
placeholder: "react, react-dom, lodash",
|
|
240
|
+
},
|
|
241
|
+
inlineCss: {
|
|
242
|
+
title: "Inline CSS",
|
|
243
|
+
description: "Inject CSS directly into JavaScript bundle",
|
|
244
|
+
},
|
|
245
|
+
bundleReact: {
|
|
246
|
+
title: "Bundle React",
|
|
247
|
+
description: "Include React in the bundle instead of as external",
|
|
248
|
+
},
|
|
249
|
+
// Package config
|
|
250
|
+
packageConfig: {
|
|
251
|
+
title: "Package Config",
|
|
252
|
+
description: "Settings for library builds with TypeScript declarations",
|
|
253
|
+
},
|
|
254
|
+
isPackage: {
|
|
255
|
+
title: "Is Package",
|
|
256
|
+
description: "Enable library mode with package exports",
|
|
257
|
+
},
|
|
258
|
+
dtsInclude: {
|
|
259
|
+
title: "DTS Include",
|
|
260
|
+
description:
|
|
261
|
+
"Glob patterns for TypeScript files to include in declarations",
|
|
262
|
+
placeholder: "src/**/*.ts",
|
|
263
|
+
},
|
|
264
|
+
dtsEntryRoot: {
|
|
265
|
+
title: "DTS Entry Root",
|
|
266
|
+
description: "Root directory for declaration file generation",
|
|
267
|
+
placeholder: "src",
|
|
268
|
+
},
|
|
269
|
+
// Bun options
|
|
270
|
+
bunOptions: {
|
|
271
|
+
title: "Bun Options",
|
|
272
|
+
description: "Bun-specific build options for executable builds",
|
|
273
|
+
},
|
|
274
|
+
bunTarget: {
|
|
275
|
+
title: "Target Runtime",
|
|
276
|
+
description: "Target runtime: Bun, Node.js, or Browser",
|
|
277
|
+
},
|
|
278
|
+
bunMinify: {
|
|
279
|
+
title: "Minify",
|
|
280
|
+
description: "Enable minification for smaller output",
|
|
281
|
+
},
|
|
282
|
+
sourcemap: {
|
|
283
|
+
title: "Source Maps",
|
|
284
|
+
description: "Generate source maps for debugging",
|
|
285
|
+
},
|
|
286
|
+
external: {
|
|
287
|
+
title: "External Modules",
|
|
288
|
+
description: "Modules to exclude from the bundle",
|
|
289
|
+
placeholder: "react, react-dom",
|
|
290
|
+
},
|
|
291
|
+
define: {
|
|
292
|
+
title: "Define Constants",
|
|
293
|
+
description:
|
|
294
|
+
"Compile-time constants as JSON (e.g., process.env.NODE_ENV)",
|
|
295
|
+
placeholder: '{"process.env.NODE_ENV": "\\"production\\""}',
|
|
296
|
+
},
|
|
297
|
+
splitting: {
|
|
298
|
+
title: "Code Splitting",
|
|
299
|
+
description: "Enable code splitting for shared chunks",
|
|
300
|
+
},
|
|
301
|
+
format: {
|
|
302
|
+
title: "Output Format",
|
|
303
|
+
description: "Module format: ESM, CommonJS, or IIFE",
|
|
304
|
+
},
|
|
305
|
+
bytecode: {
|
|
306
|
+
title: "Bytecode",
|
|
307
|
+
description: "Compile to Bun bytecode for faster startup",
|
|
308
|
+
},
|
|
309
|
+
banner: {
|
|
310
|
+
title: "Banner",
|
|
311
|
+
description: "Text to prepend to output (e.g., shebang line)",
|
|
312
|
+
placeholder: "#!/usr/bin/env node",
|
|
313
|
+
},
|
|
314
|
+
footer: {
|
|
315
|
+
title: "Footer",
|
|
316
|
+
description: "Text to append to output",
|
|
317
|
+
placeholder: "// End of file",
|
|
318
|
+
},
|
|
319
|
+
publicPath: {
|
|
320
|
+
title: "Public Path",
|
|
321
|
+
label: "Public Path",
|
|
322
|
+
description: "Public path prefix for assets",
|
|
323
|
+
},
|
|
324
|
+
naming: {
|
|
325
|
+
title: "Naming",
|
|
326
|
+
label: "Naming",
|
|
327
|
+
description: "Output naming pattern",
|
|
328
|
+
},
|
|
329
|
+
root: {
|
|
330
|
+
title: "Root",
|
|
331
|
+
label: "Root",
|
|
332
|
+
description: "Root directory",
|
|
333
|
+
},
|
|
334
|
+
conditions: {
|
|
335
|
+
title: "Conditions",
|
|
336
|
+
label: "Conditions",
|
|
337
|
+
description: "Export conditions",
|
|
338
|
+
},
|
|
339
|
+
loader: {
|
|
340
|
+
title: "Loader",
|
|
341
|
+
label: "Loader",
|
|
342
|
+
description: "File loaders mapping",
|
|
343
|
+
},
|
|
344
|
+
drop: {
|
|
345
|
+
title: "Drop",
|
|
346
|
+
label: "Drop",
|
|
347
|
+
description: "Identifiers to drop",
|
|
348
|
+
},
|
|
349
|
+
// Vite options
|
|
350
|
+
viteOptions: {
|
|
351
|
+
title: "Vite Options",
|
|
352
|
+
description: "Advanced Vite build configuration",
|
|
353
|
+
},
|
|
354
|
+
viteTarget: {
|
|
355
|
+
title: "Build Target",
|
|
356
|
+
description: "Browser/environment targets (e.g., es2020, chrome80)",
|
|
357
|
+
placeholder: "es2020, chrome80, node18",
|
|
358
|
+
},
|
|
359
|
+
viteOutDir: {
|
|
360
|
+
title: "Output Directory",
|
|
361
|
+
description: "Directory for build output",
|
|
362
|
+
placeholder: "dist",
|
|
363
|
+
},
|
|
364
|
+
viteAssetsDir: {
|
|
365
|
+
title: "Assets Directory",
|
|
366
|
+
description: "Subdirectory for static assets",
|
|
367
|
+
placeholder: "assets",
|
|
368
|
+
},
|
|
369
|
+
viteAssetsInlineLimit: {
|
|
370
|
+
title: "Inline Limit",
|
|
371
|
+
description: "Max size (bytes) to inline assets as base64",
|
|
372
|
+
placeholder: "4096",
|
|
373
|
+
},
|
|
374
|
+
viteChunkSizeWarningLimit: {
|
|
375
|
+
title: "Chunk Size Warning",
|
|
376
|
+
description: "Chunk size (KB) that triggers a warning",
|
|
377
|
+
placeholder: "500",
|
|
378
|
+
},
|
|
379
|
+
viteCssCodeSplit: {
|
|
380
|
+
title: "CSS Code Split",
|
|
381
|
+
description: "Split CSS into separate files per chunk",
|
|
382
|
+
},
|
|
383
|
+
viteSourcemap: {
|
|
384
|
+
title: "Source Maps",
|
|
385
|
+
description: "Source map generation mode",
|
|
386
|
+
},
|
|
387
|
+
viteMinify: {
|
|
388
|
+
title: "Minifier",
|
|
389
|
+
description: "Minification tool: esbuild or terser",
|
|
390
|
+
},
|
|
391
|
+
viteEmptyOutDir: {
|
|
392
|
+
title: "Empty Output Dir",
|
|
393
|
+
description: "Clean output directory before build",
|
|
394
|
+
},
|
|
395
|
+
viteReportCompressedSize: {
|
|
396
|
+
title: "Report Compressed",
|
|
397
|
+
description: "Report gzipped bundle sizes",
|
|
398
|
+
},
|
|
399
|
+
viteManifest: {
|
|
400
|
+
title: "Build Manifest",
|
|
401
|
+
description: "Generate a manifest.json for asset fingerprinting",
|
|
402
|
+
},
|
|
403
|
+
// Vite lib options
|
|
404
|
+
viteLib: {
|
|
405
|
+
title: "Library Mode",
|
|
406
|
+
description: "Configure Vite library build mode",
|
|
407
|
+
},
|
|
408
|
+
viteLibEntry: {
|
|
409
|
+
title: "Entry Point",
|
|
410
|
+
description: "Library entry point file(s)",
|
|
411
|
+
placeholder: "src/index.ts",
|
|
412
|
+
},
|
|
413
|
+
viteLibName: {
|
|
414
|
+
title: "Library Name",
|
|
415
|
+
description: "Global variable name for UMD/IIFE builds",
|
|
416
|
+
placeholder: "MyLibrary",
|
|
417
|
+
},
|
|
418
|
+
viteLibFormats: {
|
|
419
|
+
title: "Output Formats",
|
|
420
|
+
description: "Library output formats (ES, CJS, UMD, IIFE)",
|
|
421
|
+
},
|
|
422
|
+
viteLibFileName: {
|
|
423
|
+
title: "File Name",
|
|
424
|
+
description: "Output file name (without extension)",
|
|
425
|
+
placeholder: "my-library",
|
|
426
|
+
},
|
|
427
|
+
// Rollup options
|
|
428
|
+
viteRollupOptions: {
|
|
429
|
+
title: "Rollup Options",
|
|
430
|
+
description: "Advanced Rollup bundler configuration",
|
|
431
|
+
},
|
|
432
|
+
rollupExternal: {
|
|
433
|
+
title: "External Modules",
|
|
434
|
+
description: "Modules to exclude from bundle",
|
|
435
|
+
placeholder: "react, react-dom",
|
|
436
|
+
},
|
|
437
|
+
rollupTreeshake: {
|
|
438
|
+
title: "Tree Shaking",
|
|
439
|
+
description: "Remove unused code from bundle",
|
|
440
|
+
},
|
|
441
|
+
rollupOutput: {
|
|
442
|
+
title: "Rollup Output Options",
|
|
443
|
+
label: "Rollup Output Options",
|
|
444
|
+
description: "Passthrough rollup output options",
|
|
445
|
+
},
|
|
446
|
+
vitePlugins: {
|
|
447
|
+
title: "Vite Plugins",
|
|
448
|
+
label: "Vite Plugins",
|
|
449
|
+
description: "Raw Vite plugins array (for programmatic use)",
|
|
450
|
+
},
|
|
451
|
+
viteBuild: {
|
|
452
|
+
title: "Raw Build Options",
|
|
453
|
+
label: "Raw Build Options",
|
|
454
|
+
description: "Passthrough Vite build options",
|
|
455
|
+
},
|
|
456
|
+
// Files to copy
|
|
457
|
+
filesOrFoldersToCopy: {
|
|
458
|
+
title: "Files to Copy",
|
|
459
|
+
description: "Files or folders to copy after compilation",
|
|
460
|
+
},
|
|
461
|
+
copyConfig: {
|
|
462
|
+
title: "Copy Configuration",
|
|
463
|
+
},
|
|
464
|
+
copyInput: {
|
|
465
|
+
title: "Source",
|
|
466
|
+
description: "Source file or folder path",
|
|
467
|
+
placeholder: "README.md",
|
|
468
|
+
},
|
|
469
|
+
copyOutput: {
|
|
470
|
+
title: "Destination",
|
|
471
|
+
description: "Destination file or folder path",
|
|
472
|
+
placeholder: "dist/README.md",
|
|
473
|
+
},
|
|
474
|
+
copyPattern: {
|
|
475
|
+
title: "Pattern",
|
|
476
|
+
description: "Glob pattern for filtering files",
|
|
477
|
+
placeholder: "**/*.json",
|
|
478
|
+
},
|
|
479
|
+
// NPM package
|
|
480
|
+
npmPackage: {
|
|
481
|
+
title: "NPM Package",
|
|
482
|
+
description: "Generate package.json for npm distribution",
|
|
483
|
+
},
|
|
484
|
+
packageName: {
|
|
485
|
+
title: "Package Name",
|
|
486
|
+
description: "npm package name (e.g., @scope/package)",
|
|
487
|
+
placeholder: "@myorg/package-name",
|
|
488
|
+
},
|
|
489
|
+
packageVersion: {
|
|
490
|
+
title: "Version",
|
|
491
|
+
description: "Package version (defaults to root package.json)",
|
|
492
|
+
placeholder: "1.0.0",
|
|
493
|
+
},
|
|
494
|
+
packageDescription: {
|
|
495
|
+
title: "Description",
|
|
496
|
+
description: "Brief package description for npm",
|
|
497
|
+
placeholder: "A brief description of your package",
|
|
498
|
+
},
|
|
499
|
+
packageMain: {
|
|
500
|
+
title: "Main Entry",
|
|
501
|
+
description: "CommonJS entry point (main field)",
|
|
502
|
+
placeholder: "./dist/index.cjs",
|
|
503
|
+
},
|
|
504
|
+
packageModule: {
|
|
505
|
+
title: "Module Entry",
|
|
506
|
+
description: "ES module entry point (module field)",
|
|
507
|
+
placeholder: "./dist/index.mjs",
|
|
508
|
+
},
|
|
509
|
+
packageTypes: {
|
|
510
|
+
title: "Types Entry",
|
|
511
|
+
description: "TypeScript declaration entry (types field)",
|
|
512
|
+
placeholder: "./dist/index.d.ts",
|
|
513
|
+
},
|
|
514
|
+
packageBin: {
|
|
515
|
+
title: "Binaries",
|
|
516
|
+
description: "CLI executable mappings as JSON",
|
|
517
|
+
placeholder: '{"my-cli": "./dist/bin/cli.js"}',
|
|
518
|
+
},
|
|
519
|
+
packageExports: {
|
|
520
|
+
title: "Exports Map",
|
|
521
|
+
description: "Package exports field as JSON",
|
|
522
|
+
placeholder:
|
|
523
|
+
'{".": {"import": "./dist/index.mjs", "require": "./dist/index.cjs"}}',
|
|
524
|
+
},
|
|
525
|
+
packageDependencies: {
|
|
526
|
+
title: "Dependencies",
|
|
527
|
+
description: "Runtime dependencies as JSON",
|
|
528
|
+
placeholder: '{"lodash": "^4.17.21"}',
|
|
529
|
+
},
|
|
530
|
+
packagePeerDependencies: {
|
|
531
|
+
title: "Peer Dependencies",
|
|
532
|
+
description: "Peer dependencies as JSON",
|
|
533
|
+
placeholder: '{"react": ">=18.0.0"}',
|
|
534
|
+
},
|
|
535
|
+
packageFiles: {
|
|
536
|
+
title: "Included Files",
|
|
537
|
+
description: "Files to include in published package",
|
|
538
|
+
placeholder: "dist, README.md, LICENSE",
|
|
539
|
+
},
|
|
540
|
+
packageKeywords: {
|
|
541
|
+
title: "Keywords",
|
|
542
|
+
description: "npm search keywords",
|
|
543
|
+
placeholder: "typescript, build, vite",
|
|
544
|
+
},
|
|
545
|
+
packageLicense: {
|
|
546
|
+
title: "License",
|
|
547
|
+
description: "Package license (e.g., MIT, Apache-2.0)",
|
|
548
|
+
placeholder: "MIT",
|
|
549
|
+
},
|
|
550
|
+
packageRepository: {
|
|
551
|
+
title: "Repository",
|
|
552
|
+
description: "Git repository URL",
|
|
553
|
+
placeholder: "https://github.com/user/repo",
|
|
554
|
+
},
|
|
555
|
+
// Response fields
|
|
556
|
+
success: {
|
|
557
|
+
title: "Success",
|
|
558
|
+
},
|
|
559
|
+
buildOutput: {
|
|
560
|
+
title: "Build Output",
|
|
561
|
+
},
|
|
562
|
+
duration: {
|
|
563
|
+
title: "Duration (ms)",
|
|
564
|
+
},
|
|
565
|
+
outputPath: {
|
|
566
|
+
title: "Output Path",
|
|
567
|
+
},
|
|
568
|
+
filesBuilt: {
|
|
569
|
+
title: "Files Built",
|
|
570
|
+
},
|
|
571
|
+
filesCopied: {
|
|
572
|
+
title: "Files Copied",
|
|
573
|
+
},
|
|
574
|
+
packageJson: {
|
|
575
|
+
title: "Generated package.json",
|
|
576
|
+
},
|
|
577
|
+
profileUsed: {
|
|
578
|
+
title: "Profile Used",
|
|
579
|
+
},
|
|
580
|
+
cacheStats: {
|
|
581
|
+
title: "Cache Statistics",
|
|
582
|
+
description: "Build cache performance metrics",
|
|
583
|
+
},
|
|
584
|
+
reportPath: {
|
|
585
|
+
title: "Report Path",
|
|
586
|
+
description: "Path to the generated build report",
|
|
587
|
+
},
|
|
588
|
+
stepTimings: {
|
|
589
|
+
title: "Step Timings",
|
|
590
|
+
description: "Detailed timing breakdown for each build step",
|
|
591
|
+
step: "Step",
|
|
592
|
+
duration: "Duration (ms)",
|
|
593
|
+
status: "Status",
|
|
594
|
+
filesAffected: "Files",
|
|
595
|
+
},
|
|
596
|
+
},
|
|
597
|
+
errors: {
|
|
598
|
+
buildFailed: {
|
|
599
|
+
title: "Build Failed",
|
|
600
|
+
description: "The build process failed with an error",
|
|
601
|
+
},
|
|
602
|
+
validation: {
|
|
603
|
+
title: "Validation Error",
|
|
604
|
+
description: "The provided build configuration is invalid",
|
|
605
|
+
},
|
|
606
|
+
network: {
|
|
607
|
+
title: "Network Error",
|
|
608
|
+
description: "A network error occurred during the build process",
|
|
609
|
+
},
|
|
610
|
+
unauthorized: {
|
|
611
|
+
title: "Unauthorized",
|
|
612
|
+
description: "You are not authorized to run builds",
|
|
613
|
+
},
|
|
614
|
+
forbidden: {
|
|
615
|
+
title: "Forbidden",
|
|
616
|
+
description: "Access to the build system is forbidden",
|
|
617
|
+
},
|
|
618
|
+
server: {
|
|
619
|
+
title: "Server Error",
|
|
620
|
+
description: "An error occurred during the build process",
|
|
621
|
+
},
|
|
622
|
+
notFound: {
|
|
623
|
+
title: "Not Found",
|
|
624
|
+
description: "The specified file or config was not found",
|
|
625
|
+
},
|
|
626
|
+
unknown: {
|
|
627
|
+
title: "Unknown Error",
|
|
628
|
+
description: "An unexpected error occurred",
|
|
629
|
+
},
|
|
630
|
+
unsavedChanges: {
|
|
631
|
+
title: "Unsaved Changes",
|
|
632
|
+
description: "There are unsaved changes that may affect the build",
|
|
633
|
+
},
|
|
634
|
+
conflict: {
|
|
635
|
+
title: "Build Conflict",
|
|
636
|
+
description: "A conflicting build operation is already in progress",
|
|
637
|
+
},
|
|
638
|
+
},
|
|
639
|
+
success: {
|
|
640
|
+
title: "Build Successful",
|
|
641
|
+
description: "Package built successfully",
|
|
642
|
+
},
|
|
643
|
+
},
|
|
644
|
+
tags: {
|
|
645
|
+
build: "build",
|
|
646
|
+
npm: "npm",
|
|
647
|
+
vite: "vite",
|
|
648
|
+
},
|
|
649
|
+
profiles: {
|
|
650
|
+
development: "Development",
|
|
651
|
+
production: "Production",
|
|
652
|
+
},
|
|
653
|
+
analysis: {
|
|
654
|
+
criticalSize: "CRITICAL: Bundle size ({{size}}) exceeds threshold",
|
|
655
|
+
largeBundle: "WARNING: Large bundle detected ({{size}})",
|
|
656
|
+
considerTreeShaking: "Consider enabling tree-shaking to reduce bundle size",
|
|
657
|
+
checkLargeDeps: "Check for large dependencies that could be replaced",
|
|
658
|
+
largeSourcemaps:
|
|
659
|
+
"Large sourcemaps detected - consider disabling in production",
|
|
660
|
+
possibleDuplicates:
|
|
661
|
+
"Possible duplicate dependencies detected - consider deduplication",
|
|
662
|
+
totalSize: "Total Size",
|
|
663
|
+
largestFiles: "Largest Files",
|
|
664
|
+
},
|
|
665
|
+
};
|