stacks 0.56.24 → 0.58.18
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/buddy +2 -0
- package/core/.env +38 -0
- package/core/.simple-git-hooks.js +3 -0
- package/core/Caddyfile +23 -0
- package/core/README.md +415 -0
- package/core/buddy +2 -0
- package/core/env.ts +42 -0
- package/core/playwright.config.ts +109 -0
- package/core/scripts/build +84 -0
- package/core/scripts/ensure +33 -0
- package/core/scripts/fresh +14 -0
- package/core/scripts/link +14 -0
- package/core/scripts/move-built-src-files.ts +28 -0
- package/core/scripts/move-dts-files.ts +35 -0
- package/core/scripts/publish +37 -0
- package/core/scripts/setup +176 -0
- package/core/src/actions/README.md +58 -0
- package/core/src/actions/build.ts +5 -0
- package/core/src/actions/dist/src/add.js +29 -0
- package/core/src/actions/dist/src/build/component-libs.js +6 -0
- package/core/src/actions/dist/src/build/core.js +25 -0
- package/core/src/actions/dist/src/build/stacks.js +8 -0
- package/core/src/actions/dist/src/build.js +226 -0
- package/core/src/actions/dist/src/bump.js +8 -0
- package/core/src/actions/dist/src/changelog.js +9 -0
- package/core/src/actions/dist/src/clean.js +6 -0
- package/core/src/actions/dist/src/commit.js +17 -0
- package/core/src/actions/dist/src/copy-types.js +14 -0
- package/core/src/actions/dist/src/database/seed.js +4 -0
- package/core/src/actions/dist/src/deploy/index.js +31 -0
- package/core/src/actions/dist/src/dev/components.js +11 -0
- package/core/src/actions/dist/src/dev/docs.js +7 -0
- package/core/src/actions/dist/src/dev/index.js +90 -0
- package/core/src/actions/dist/src/examples.js +43 -0
- package/core/src/actions/dist/src/fresh.js +18 -0
- package/core/src/actions/dist/src/generate/component-meta.js +57 -0
- package/core/src/actions/dist/src/generate/ide-helpers.js +83 -0
- package/core/src/actions/dist/src/generate/index.js +161 -0
- package/core/src/actions/dist/src/generate/lib-entries.js +168 -0
- package/core/src/actions/dist/src/generate/vscode-custom-data.js +82 -0
- package/core/src/actions/dist/src/generate/vue-compat.js +18 -0
- package/core/src/actions/dist/src/helpers/component-meta.js +50 -0
- package/core/src/actions/dist/src/helpers/index.js +56 -0
- package/core/src/actions/dist/src/helpers/lib-entries.js +160 -0
- package/core/src/actions/dist/src/helpers/package-json.js +135 -0
- package/core/src/actions/dist/src/helpers/utils.js +56 -0
- package/core/src/actions/dist/src/helpers/vscode-custom-data.js +75 -0
- package/core/src/actions/dist/src/helpers/vue-compat.js +16 -0
- package/core/src/actions/dist/src/index.js +577 -0
- package/core/src/actions/dist/src/key-generate.js +10 -0
- package/core/src/actions/dist/src/lint/fix.js +8 -0
- package/core/src/actions/dist/src/lint/index.js +21 -0
- package/core/src/actions/dist/src/make.js +291 -0
- package/core/src/actions/dist/src/prepublish.js +14 -0
- package/core/src/actions/dist/src/release.js +545 -0
- package/core/src/actions/dist/src/test/coverage.js +6 -0
- package/core/src/actions/dist/src/test/feature.js +6 -0
- package/core/src/actions/dist/src/test/ui.js +6 -0
- package/core/src/actions/dist/src/test/unit.js +6 -0
- package/core/src/actions/dist/src/test.js +6 -0
- package/core/src/actions/dist/src/tinker.js +5 -0
- package/core/src/actions/dist/src/typecheck.js +6 -0
- package/core/src/actions/dist/src/types.js +21 -0
- package/core/src/actions/dist/src/upgrade/dependencies.js +6 -0
- package/core/src/actions/dist/src/upgrade/framework.js +1 -0
- package/core/src/actions/dist/src/upgrade/index.js +1 -0
- package/core/src/actions/dist/src/upgrade.js +39 -0
- package/core/src/actions/package.json +89 -0
- package/core/src/actions/src/action.ts +11 -0
- package/core/src/actions/src/actions.ts +2 -0
- package/core/src/actions/src/add.ts +27 -0
- package/core/src/actions/src/ai/request-model-access.ts +74 -0
- package/core/src/actions/src/build/component-libs.ts +5 -0
- package/core/src/actions/src/build/core.ts +66 -0
- package/core/src/actions/src/build/desktop.ts +7 -0
- package/core/src/actions/src/build/stacks.ts +7 -0
- package/core/src/actions/src/build.ts +89 -0
- package/core/src/actions/src/bump.ts +11 -0
- package/core/src/actions/src/cdn/invalidate-cache.ts +27 -0
- package/core/src/actions/src/changelog.ts +11 -0
- package/core/src/actions/src/clean.ts +6 -0
- package/core/src/actions/src/commit.ts +14 -0
- package/core/src/actions/src/copy-types.ts +22 -0
- package/core/src/actions/src/database/fields.ts +111 -0
- package/core/src/actions/src/database/migration-mysql.ts +72 -0
- package/core/src/actions/src/database/migration-sqlite.ts +67 -0
- package/core/src/actions/src/database/migration.ts +10 -0
- package/core/src/actions/src/database/mydb.sqlite +0 -0
- package/core/src/actions/src/database/seed.ts +4 -0
- package/core/src/actions/src/database/stacks.sqlite +0 -0
- package/core/src/actions/src/database/user-migration.ts +20 -0
- package/core/src/actions/src/deploy/create-receipt-rule.ts +55 -0
- package/core/src/actions/src/deploy/index.ts +46 -0
- package/core/src/actions/src/dev/api.ts +19 -0
- package/core/src/actions/src/dev/components.ts +14 -0
- package/core/src/actions/src/dev/desktop.ts +7 -0
- package/core/src/actions/src/dev/docs.ts +7 -0
- package/core/src/actions/src/dev/index.ts +38 -0
- package/core/src/actions/src/dev/views.ts +7 -0
- package/core/src/actions/src/domains/add.ts +82 -0
- package/core/src/actions/src/domains/purchase.ts +76 -0
- package/core/src/actions/src/domains/remove.ts +38 -0
- package/core/src/actions/src/examples.ts +46 -0
- package/core/src/actions/src/fresh.ts +20 -0
- package/core/src/actions/src/generate/caddyfile.ts +1 -0
- package/core/src/actions/src/generate/component-meta.ts +15 -0
- package/core/src/actions/src/generate/env-files.ts +89 -0
- package/core/src/actions/src/generate/ide-helpers.ts +20 -0
- package/core/src/actions/src/generate/index.ts +141 -0
- package/core/src/actions/src/generate/lib-entries.ts +17 -0
- package/core/src/actions/src/generate/model-classes.ts +299 -0
- package/core/src/actions/src/generate/model-generate.ts +12 -0
- package/core/src/actions/src/generate/pkgx-file.ts +72 -0
- package/core/src/actions/src/generate/vscode-custom-data.ts +16 -0
- package/core/src/actions/src/generate/vue-compat.ts +10 -0
- package/core/src/actions/src/helpers/component-meta.ts +93 -0
- package/core/src/actions/src/helpers/index.ts +1 -0
- package/core/src/actions/src/helpers/lib-entries.ts +139 -0
- package/core/src/actions/src/helpers/package-json.ts +96 -0
- package/core/src/actions/src/helpers/utils.ts +82 -0
- package/core/src/actions/src/helpers/vscode-custom-data.ts +28 -0
- package/core/src/actions/src/helpers/vue-compat.ts +16 -0
- package/core/src/actions/src/index.ts +29 -0
- package/core/src/actions/src/key-generate.ts +10 -0
- package/core/src/actions/src/lint/fix.ts +7 -0
- package/core/src/actions/src/lint/index.ts +19 -0
- package/core/src/actions/src/make.ts +322 -0
- package/core/src/actions/src/migrate/database.ts +1 -0
- package/core/src/actions/src/migrate/dns.ts +3 -0
- package/core/src/actions/src/prepublish.ts +17 -0
- package/core/src/actions/src/release.ts +15 -0
- package/core/src/actions/src/start-caddy.ts +13 -0
- package/core/src/actions/src/test/coverage.ts +5 -0
- package/core/src/actions/src/test/feature.ts +5 -0
- package/core/src/actions/src/test/ui.ts +5 -0
- package/core/src/actions/src/test/unit.ts +5 -0
- package/core/src/actions/src/test.ts +5 -0
- package/core/src/actions/src/tinker.ts +10 -0
- package/core/src/actions/src/typecheck.ts +5 -0
- package/core/src/actions/src/types.ts +20 -0
- package/core/src/actions/src/upgrade/bun.ts +4 -0
- package/core/src/actions/src/upgrade/framework.ts +30 -0
- package/core/src/actions/src/upgrade/index.ts +25 -0
- package/core/src/actions/src/upgrade.ts +65 -0
- package/core/src/actions/src/zip/api.ts +22 -0
- package/core/src/actions/tests/example.test.ts +5 -0
- package/core/src/ai/README.md +67 -0
- package/core/src/ai/build.ts +9 -0
- package/core/src/ai/package.json +59 -0
- package/core/src/ai/src/index.ts +8 -0
- package/core/src/ai/src/text-generation.ts +0 -0
- package/core/src/ai/src/text-summary.ts +0 -0
- package/core/src/ai/src/utils/client-bedrock-runtime.ts +38 -0
- package/core/src/ai/src/utils/client-bedrock.ts +53 -0
- package/core/src/ai/tests/example.test.ts +5 -0
- package/core/src/alias/README.md +53 -0
- package/core/src/alias/build.ts +8 -0
- package/core/src/alias/dist/index.js +218 -0
- package/core/src/alias/package.json +51 -0
- package/core/src/alias/src/index.ts +220 -0
- package/core/src/alias/tests/example.test.ts +5 -0
- package/core/src/analytics/README.md +55 -0
- package/core/src/analytics/build.ts +8 -0
- package/core/src/analytics/dist/index.js +5 -0
- package/core/src/analytics/package.json +54 -0
- package/core/src/analytics/src/drivers/fathom.ts +1 -0
- package/core/src/analytics/src/drivers/index.ts +1 -0
- package/core/src/analytics/src/index.ts +1 -0
- package/core/src/analytics/tests/example.test.ts +5 -0
- package/core/src/api/build.ts +7 -0
- package/core/src/api/package.json +61 -0
- package/core/src/api/src/index.ts +114 -0
- package/core/src/arrays/README.md +59 -0
- package/core/src/arrays/build.ts +8 -0
- package/core/src/arrays/dist/index.js +469 -0
- package/core/src/arrays/package.json +59 -0
- package/core/src/arrays/src/arr.ts +3 -0
- package/core/src/arrays/src/contains.ts +87 -0
- package/core/src/arrays/src/helpers.ts +272 -0
- package/core/src/arrays/src/index.ts +3 -0
- package/core/src/arrays/src/macro.ts +131 -0
- package/core/src/arrays/src/math.ts +220 -0
- package/core/src/arrays/tests/example.test.ts +5 -0
- package/core/src/auth/README.md +59 -0
- package/core/src/auth/build.ts +8 -0
- package/core/src/auth/dist/index.js +5 -0
- package/core/src/auth/package.json +50 -0
- package/core/src/auth/tests/example.test.ts +5 -0
- package/core/src/bud +2 -0
- package/core/src/buddy/README.md +390 -0
- package/core/src/buddy/art/social.jpg +0 -0
- package/core/src/buddy/build.ts +8 -0
- package/core/src/buddy/dist/chunk-815e657d8c6ba584.js +1677 -0
- package/core/src/buddy/dist/chunk-b75e6db0012faa55.js +22 -0
- package/core/src/buddy/dist/cli.js +49 -0
- package/core/src/buddy/dist/index.js +70 -0
- package/core/src/buddy/package.json +174 -0
- package/core/src/buddy/src/cli.ts +51 -0
- package/core/src/buddy/src/commands/add.ts +65 -0
- package/core/src/buddy/src/commands/build.ts +172 -0
- package/core/src/buddy/src/commands/changelog.ts +36 -0
- package/core/src/buddy/src/commands/clean.ts +34 -0
- package/core/src/buddy/src/commands/cloud.ts +299 -0
- package/core/src/buddy/src/commands/commit.ts +22 -0
- package/core/src/buddy/src/commands/configure.ts +65 -0
- package/core/src/buddy/src/commands/create.ts +131 -0
- package/core/src/buddy/src/commands/deploy.ts +99 -0
- package/core/src/buddy/src/commands/dev.ts +228 -0
- package/core/src/buddy/src/commands/dns.ts +78 -0
- package/core/src/buddy/src/commands/domains.ts +156 -0
- package/core/src/buddy/src/commands/example.ts +62 -0
- package/core/src/buddy/src/commands/fresh.ts +34 -0
- package/core/src/buddy/src/commands/generate.ts +142 -0
- package/core/src/buddy/src/commands/http.ts +53 -0
- package/core/src/buddy/src/commands/index.ts +30 -0
- package/core/src/buddy/src/commands/inspire.ts +24 -0
- package/core/src/buddy/src/commands/install.ts +26 -0
- package/core/src/buddy/src/commands/key.ts +32 -0
- package/core/src/buddy/src/commands/lint.ts +49 -0
- package/core/src/buddy/src/commands/make.ts +259 -0
- package/core/src/buddy/src/commands/migrate.ts +55 -0
- package/core/src/buddy/src/commands/prepublish.ts +23 -0
- package/core/src/buddy/src/commands/release.ts +33 -0
- package/core/src/buddy/src/commands/seed.ts +36 -0
- package/core/src/buddy/src/commands/setup.ts +116 -0
- package/core/src/buddy/src/commands/test.ts +122 -0
- package/core/src/buddy/src/commands/tinker.ts +34 -0
- package/core/src/buddy/src/commands/types.ts +30 -0
- package/core/src/buddy/src/commands/upgrade.ts +109 -0
- package/core/src/buddy/src/commands/version.ts +24 -0
- package/core/src/buddy/src/compile.ts +9 -0
- package/core/src/build/README.md +59 -0
- package/core/src/build/build.ts +8 -0
- package/core/src/build/dist/index.js +19 -0
- package/core/src/build/package.json +63 -0
- package/core/src/build/src/index.ts +11 -0
- package/core/src/build/tests/example.test.ts +5 -0
- package/core/src/build/web-types.ts +15 -0
- package/core/src/bun-create/bud/README.md +45 -0
- package/core/src/bun-create/bud/package.json +152 -0
- package/core/src/bun-create/buddy/README.md +45 -0
- package/core/src/bun-create/buddy/package.json +152 -0
- package/core/src/bun-create/stack/README.md +45 -0
- package/core/src/bun-create/stack/package.json +152 -0
- package/core/src/bun-create/stacks/README.md +45 -0
- package/core/src/bun-create/stacks/package.json +152 -0
- package/core/src/bun-create/stx/README.md +45 -0
- package/core/src/bun-create/stx/package.json +152 -0
- package/core/src/bun-plugin-yaml/README.md +56 -0
- package/core/src/bun-plugin-yaml/build.ts +8 -0
- package/core/src/bun-plugin-yaml/dist/index.js +2781 -0
- package/core/src/bun-plugin-yaml/package.json +57 -0
- package/core/src/bun-plugin-yaml/src/index.ts +22 -0
- package/core/src/bun-plugin-yaml/tests/example.test.ts +5 -0
- package/core/src/cache/README.md +59 -0
- package/core/src/cache/build.ts +8 -0
- package/core/src/cache/dist/index.js +88 -0
- package/core/src/cache/package.json +65 -0
- package/core/src/cache/src/drivers/index.ts +2 -0
- package/core/src/cache/src/drivers/redis.ts +37 -0
- package/core/src/cache/src/index.ts +1 -0
- package/core/src/cache/tests/DynamoDB.test.ts +135 -0
- package/core/src/cache/tests/Memcached.test.ts +51 -0
- package/core/src/cache/tests/Redis.test.ts +84 -0
- package/core/src/chat/README.md +83 -0
- package/core/src/chat/build.ts +8 -0
- package/core/src/chat/dist/index.js +42 -0
- package/core/src/chat/package.json +73 -0
- package/core/src/chat/tests/example.test.ts +5 -0
- package/core/src/cli/README.md +168 -0
- package/core/src/cli/build.ts +8 -0
- package/core/src/cli/dist/index.js +372 -0
- package/core/src/cli/package.json +90 -0
- package/core/src/cli/src/actions/install.ts +40 -0
- package/core/src/cli/src/cli.ts +52 -0
- package/core/src/cli/src/command.ts +47 -0
- package/core/src/cli/src/console.ts +79 -0
- package/core/src/cli/src/exec.ts +89 -0
- package/core/src/cli/src/helpers.ts +90 -0
- package/core/src/cli/src/index.ts +10 -0
- package/core/src/cli/src/parse.ts +101 -0
- package/core/src/cli/src/run.ts +97 -0
- package/core/src/cli/src/utilities.ts +2 -0
- package/core/src/cli/tests/example.test.ts +5 -0
- package/core/src/cloud/README.md +67 -0
- package/core/src/cloud/build-server.ts +8 -0
- package/core/src/cloud/build.ts +8 -0
- package/core/src/cloud/cdk.json +62 -0
- package/core/src/cloud/deploy.ts +75 -0
- package/core/src/cloud/dist/origin-request.js +27 -0
- package/core/src/cloud/package.json +119 -0
- package/core/src/cloud/src/cloud/ai.ts +115 -0
- package/core/src/cloud/src/cloud/aws-sdk-layer/nodejs/package-lock.json +386 -0
- package/core/src/cloud/src/cloud/aws-sdk-layer/nodejs/package.json +15 -0
- package/core/src/cloud/src/cloud/cache.ts +0 -0
- package/core/src/cloud/src/cloud/cdn.ts +335 -0
- package/core/src/cloud/src/cloud/compute.ts +79 -0
- package/core/src/cloud/src/cloud/dashboard.ts +85 -0
- package/core/src/cloud/src/cloud/database.ts +0 -0
- package/core/src/cloud/src/cloud/deployment.ts +41 -0
- package/core/src/cloud/src/cloud/dns.ts +34 -0
- package/core/src/cloud/src/cloud/docs.ts +51 -0
- package/core/src/cloud/src/cloud/email.ts +339 -0
- package/core/src/cloud/src/cloud/file-system.ts +35 -0
- package/core/src/cloud/src/cloud/index.ts +93 -0
- package/core/src/cloud/src/cloud/jump-box.ts +48 -0
- package/core/src/cloud/src/cloud/lambda/ask/index.js +35 -0
- package/core/src/cloud/src/cloud/lambda/summarize/index.js +35 -0
- package/core/src/cloud/src/cloud/network.ts +52 -0
- package/core/src/cloud/src/cloud/permissions.ts +33 -0
- package/core/src/cloud/src/cloud/queue.ts +0 -0
- package/core/src/cloud/src/cloud/redirects.ts +45 -0
- package/core/src/cloud/src/cloud/search-engine.ts +108 -0
- package/core/src/cloud/src/cloud/security.ts +259 -0
- package/core/src/cloud/src/cloud/storage.ts +168 -0
- package/core/src/cloud/src/edge/origin-request.ts +49 -0
- package/core/src/cloud/src/helpers.ts +597 -0
- package/core/src/cloud/src/index.ts +2 -0
- package/core/src/cloud/src/runtime/README.md +116 -0
- package/core/src/cloud/src/runtime/bootstrap +3 -0
- package/core/src/cloud/src/runtime/example/lambda.ts +36 -0
- package/core/src/cloud/src/runtime/runtime.ts +829 -0
- package/core/src/cloud/src/runtime/scripts/build-layer.ts +104 -0
- package/core/src/cloud/src/runtime/scripts/publish-layer.ts +110 -0
- package/core/src/cloud/src/runtime/server.ts +39 -0
- package/core/src/cloud/src/server/.dockerignore +15 -0
- package/core/src/cloud/src/server/Dockerfile +20 -0
- package/core/src/cloud/src/server/index.ts +39 -0
- package/core/src/cloud/src/server/package.json +12 -0
- package/core/src/cloud/src/server/runtime.ts +828 -0
- package/core/src/cloud/src/types.ts +28 -0
- package/core/src/cloud/tests/example.test.ts +5 -0
- package/core/src/cloud/zip.ts +8 -0
- package/core/src/collections/README.md +71 -0
- package/core/src/collections/build.ts +8 -0
- package/core/src/collections/dist/index.js +6 -0
- package/core/src/collections/package.json +57 -0
- package/core/src/collections/tests/example.test.ts +5 -0
- package/core/src/config/README.md +71 -0
- package/core/src/config/build.ts +8 -0
- package/core/src/config/dist/index.js +1670 -0
- package/core/src/config/package.json +55 -0
- package/core/src/config/src/config.ts +38 -0
- package/core/src/config/src/defaults.ts +460 -0
- package/core/src/config/src/helpers.ts +256 -0
- package/core/src/config/src/index.ts +2 -0
- package/core/src/config/src/overrides.ts +49 -0
- package/core/src/config/tests/example.test.ts +5 -0
- package/core/src/database/README.md +59 -0
- package/core/src/database/build.ts +8 -0
- package/core/src/database/dist/index.js +200 -0
- package/core/src/database/package.json +78 -0
- package/core/src/database/src/index.ts +63 -0
- package/core/src/database/src/kysely-bun-worker/driver.ts +143 -0
- package/core/src/database/src/kysely-bun-worker/index.ts +46 -0
- package/core/src/database/src/kysely-bun-worker/mitt.ts +24 -0
- package/core/src/database/src/kysely-bun-worker/type.ts +40 -0
- package/core/src/database/src/kysely-bun-worker/worker.ts +53 -0
- package/core/src/database/src/migrations/index.ts +73 -0
- package/core/src/database/src/seeder/index.ts +79 -0
- package/core/src/database/tests/example.test.ts +5 -0
- package/core/src/datetime/README.md +66 -0
- package/core/src/datetime/build.ts +8 -0
- package/core/src/datetime/dist/index.js +9 -0
- package/core/src/datetime/package.json +56 -0
- package/core/src/datetime/tests/example.test.ts +5 -0
- package/core/src/desktop/README.md +49 -0
- package/core/src/desktop/build.ts +8 -0
- package/core/src/desktop/dist/index.js +3075 -0
- package/core/src/desktop/package.json +84 -0
- package/core/src/desktop/src/index.ts +41 -0
- package/core/src/desktop/tests/example.test.ts +5 -0
- package/core/src/development/README.md +27 -0
- package/core/src/development/build.ts +8 -0
- package/core/src/development/dist/index.js +6 -0
- package/core/src/development/package.json +77 -0
- package/core/src/development/src/index.ts +0 -0
- package/core/src/development/tests/example.test.ts +5 -0
- package/core/src/dns/README.md +56 -0
- package/core/src/dns/build.ts +8 -0
- package/core/src/dns/dist/index.js +166 -0
- package/core/src/dns/package.json +76 -0
- package/core/src/dns/src/drivers/aws.ts +224 -0
- package/core/src/dns/src/index.ts +20 -0
- package/core/src/dns/tests/example.test.ts +5 -0
- package/core/src/docs/README.md +59 -0
- package/core/src/docs/build.ts +8 -0
- package/core/src/docs/dist/index.js +214608 -0
- package/core/src/docs/package.json +68 -0
- package/core/src/docs/src/index.ts +61 -0
- package/core/src/docs/src/plugins.ts +4 -0
- package/core/src/docs/tests/example.test.ts +5 -0
- package/core/src/email/README.md +155 -0
- package/core/src/email/build-inbound.ts +8 -0
- package/core/src/email/build.ts +8 -0
- package/core/src/email/dist/index.js +325 -0
- package/core/src/email/email-forwarder.cjs +406 -0
- package/core/src/email/email-forwarder.zip +0 -0
- package/core/src/email/package.json +94 -0
- package/core/src/email/src/drivers/emailjs.ts +23 -0
- package/core/src/email/src/drivers/index.ts +9 -0
- package/core/src/email/src/drivers/mailgun.ts +21 -0
- package/core/src/email/src/drivers/mailjet.ts +21 -0
- package/core/src/email/src/drivers/mandrill.ts +19 -0
- package/core/src/email/src/drivers/netcore.ts +19 -0
- package/core/src/email/src/drivers/nodemailer.ts +23 -0
- package/core/src/email/src/drivers/postmark.ts +19 -0
- package/core/src/email/src/drivers/sendgrid.ts +20 -0
- package/core/src/email/src/drivers/ses.ts +22 -0
- package/core/src/email/src/index.ts +1 -0
- package/core/src/email/src/send.ts +37 -0
- package/core/src/email/src/server/converter.ts +304 -0
- package/core/src/email/src/server/inbound.ts +389 -0
- package/core/src/email/src/server/outbound.ts +294 -0
- package/core/src/email/tests/example.test.ts +5 -0
- package/core/src/enums/README.md +54 -0
- package/core/src/enums/build.ts +8 -0
- package/core/src/enums/dist/index.js +98 -0
- package/core/src/enums/package.json +50 -0
- package/core/src/enums/src/index.ts +95 -0
- package/core/src/enums/tests/example.test.ts +5 -0
- package/core/src/env/README.md +71 -0
- package/core/src/env/build.ts +8 -0
- package/core/src/env/dist/index.js +221 -0
- package/core/src/env/package.json +55 -0
- package/core/src/env/src/index.ts +76 -0
- package/core/src/env/src/types.ts +54 -0
- package/core/src/env/tests/example.test.ts +5 -0
- package/core/src/error-handling/README.md +131 -0
- package/core/src/error-handling/build.ts +8 -0
- package/core/src/error-handling/dist/index.js +432 -0
- package/core/src/error-handling/package.json +62 -0
- package/core/src/error-handling/src/handler.ts +51 -0
- package/core/src/error-handling/src/index.ts +2 -0
- package/core/src/error-handling/tests/example.test.ts +5 -0
- package/core/src/eslint-config/.gitattributes +2 -0
- package/core/src/eslint-config/README.md +587 -0
- package/core/src/eslint-config/build.ts +8 -0
- package/core/src/eslint-config/package.json +119 -0
- package/core/src/eslint-config/src/configs/comments.ts +19 -0
- package/core/src/eslint-config/src/configs/formatters.ts +187 -0
- package/core/src/eslint-config/src/configs/ignores.ts +10 -0
- package/core/src/eslint-config/src/configs/imports.ts +37 -0
- package/core/src/eslint-config/src/configs/index.ts +21 -0
- package/core/src/eslint-config/src/configs/javascript.ts +226 -0
- package/core/src/eslint-config/src/configs/jsdoc.ts +42 -0
- package/core/src/eslint-config/src/configs/jsonc.ts +86 -0
- package/core/src/eslint-config/src/configs/markdown.ts +110 -0
- package/core/src/eslint-config/src/configs/node.ts +23 -0
- package/core/src/eslint-config/src/configs/perfectionist.ts +18 -0
- package/core/src/eslint-config/src/configs/react.ts +111 -0
- package/core/src/eslint-config/src/configs/sort.ts +223 -0
- package/core/src/eslint-config/src/configs/stylistic.ts +57 -0
- package/core/src/eslint-config/src/configs/svelte.ts +106 -0
- package/core/src/eslint-config/src/configs/test.ts +54 -0
- package/core/src/eslint-config/src/configs/toml.ts +72 -0
- package/core/src/eslint-config/src/configs/typescript.ts +156 -0
- package/core/src/eslint-config/src/configs/unicorn.ts +41 -0
- package/core/src/eslint-config/src/configs/unocss.ts +43 -0
- package/core/src/eslint-config/src/configs/vue.ts +169 -0
- package/core/src/eslint-config/src/configs/yaml.ts +72 -0
- package/core/src/eslint-config/src/factory.ts +260 -0
- package/core/src/eslint-config/src/globs.ts +92 -0
- package/core/src/eslint-config/src/index.ts +9 -0
- package/core/src/eslint-config/src/plugins.ts +10 -0
- package/core/src/eslint-config/src/stub.d.ts +3 -0
- package/core/src/eslint-config/src/types.ts +366 -0
- package/core/src/eslint-config/src/utils.ts +72 -0
- package/core/src/eslint-config/src/vendor/prettier-types.ts +136 -0
- package/core/src/eslint-config/test/cli.spec.ts +90 -0
- package/core/src/eslint-config/test/fixtures.test.ts +125 -0
- package/core/src/eslint-config/tsconfig.json +17 -0
- package/core/src/eslint-config/tsup.config.ts +8 -0
- package/core/src/events/README.md +76 -0
- package/core/src/events/build.ts +8 -0
- package/core/src/events/dist/index.js +63 -0
- package/core/src/events/package.json +52 -0
- package/core/src/events/src/index.ts +170 -0
- package/core/src/events/tests/example.test.ts +5 -0
- package/core/src/faker/README.md +53 -0
- package/core/src/faker/build.ts +8 -0
- package/core/src/faker/dist/index.js +6 -0
- package/core/src/faker/package.json +61 -0
- package/core/src/faker/tests/example.test.ts +5 -0
- package/core/src/git/README.md +65 -0
- package/core/src/git/build.ts +8 -0
- package/core/src/git/dist/index.js +6 -0
- package/core/src/git/package.json +68 -0
- package/core/src/git/src/index.ts +1 -0
- package/core/src/git/tests/example.test.ts +5 -0
- package/core/src/health/README.md +56 -0
- package/core/src/health/build.ts +8 -0
- package/core/src/health/dist/index.js +9 -0
- package/core/src/health/package.json +58 -0
- package/core/src/health/src/drivers/index.ts +1 -0
- package/core/src/health/src/drivers/ohdear.ts +1 -0
- package/core/src/health/src/index.ts +2 -0
- package/core/src/health/src/notifications/index.ts +1 -0
- package/core/src/health/tests/example.test.ts +5 -0
- package/core/src/http/README.md +59 -0
- package/core/src/http/build.ts +8 -0
- package/core/src/http/dist/index.js +65 -0
- package/core/src/http/package.json +52 -0
- package/core/src/http/src/index.ts +71 -0
- package/core/src/index.ts +57 -0
- package/core/src/lint/.eslintrc.json +3 -0
- package/core/src/lint/README.md +73 -0
- package/core/src/lint/build.ts +8 -0
- package/core/src/lint/dist/index.js +6 -0
- package/core/src/lint/package.json +69 -0
- package/core/src/lint/tests/example.test.ts +5 -0
- package/core/src/logging/README.md +58 -0
- package/core/src/logging/build.ts +8 -0
- package/core/src/logging/dist/index.js +1809 -0
- package/core/src/logging/package.json +61 -0
- package/core/src/logging/src/index.ts +27 -0
- package/core/src/logging/tests/example.test.ts +5 -0
- package/core/src/music/package.json +46 -0
- package/core/src/music/src/components/SampleComponent.stx +5 -0
- package/core/src/music/src/layouts/default.stx +3 -0
- package/core/src/music/src/pages/index.stx +10 -0
- package/core/src/music/src/pages/music.stx +10 -0
- package/core/src/music/src/styles/main.css +1 -0
- package/core/src/notifications/README.md +272 -0
- package/core/src/notifications/build.ts +8 -0
- package/core/src/notifications/dist/index.js +54 -0
- package/core/src/notifications/package.json +103 -0
- package/core/src/notifications/src/drivers/index.ts +4 -0
- package/core/src/notifications/src/index.ts +51 -0
- package/core/src/notifications/src/tailwind.config.ts +39 -0
- package/core/src/notifications/src/utils/config.ts +5 -0
- package/core/src/notifications/tests/chat/Slack.test.ts +34 -0
- package/core/src/notifications/tests/email/Mailgun.test.ts +40 -0
- package/core/src/notifications/tests/email/Sendgrid.test.ts +40 -0
- package/core/src/notifications/tests/sms/Twilio.test.ts +37 -0
- package/core/src/objects/README.md +71 -0
- package/core/src/objects/build.ts +8 -0
- package/core/src/objects/dist/index.js +64 -0
- package/core/src/objects/package.json +63 -0
- package/core/src/objects/src/index.ts +145 -0
- package/core/src/objects/tests/example.test.ts +5 -0
- package/core/src/orm/README.md +48 -0
- package/core/src/orm/build.ts +8 -0
- package/core/src/orm/dist/index.js +6 -0
- package/core/src/orm/package.json +59 -0
- package/core/src/orm/src/index.ts +49 -0
- package/core/src/orm/tests/example.test.ts +5 -0
- package/core/src/path/README.md +64 -0
- package/core/src/path/build.ts +8 -0
- package/core/src/path/dist/index.js +495 -0
- package/core/src/path/package.json +54 -0
- package/core/src/path/src/index.ts +529 -0
- package/core/src/path/tests/example.test.ts +5 -0
- package/core/src/payments/README.md +64 -0
- package/core/src/payments/build.ts +8 -0
- package/core/src/payments/dist/index.js +6261 -0
- package/core/src/payments/package.json +60 -0
- package/core/src/payments/src/drivers/stripe.ts +116 -0
- package/core/src/payments/tests/example.test.ts +5 -0
- package/core/src/push/README.md +71 -0
- package/core/src/push/build.ts +9 -0
- package/core/src/push/package.json +64 -0
- package/core/src/push/src/drivers/expo.ts +21 -0
- package/core/src/push/src/drivers/fcm.ts +21 -0
- package/core/src/push/src/drivers/index.ts +2 -0
- package/core/src/push/src/index.ts +1 -0
- package/core/src/push/tests/example.test.ts +5 -0
- package/core/src/query-builder/README.md +48 -0
- package/core/src/query-builder/build.ts +8 -0
- package/core/src/query-builder/dist/index.js +18 -0
- package/core/src/query-builder/package.json +59 -0
- package/core/src/query-builder/src/kysely.ts +38 -0
- package/core/src/query-builder/tests/example.test.ts +5 -0
- package/core/src/queue/README.md +59 -0
- package/core/src/queue/build.ts +8 -0
- package/core/src/queue/dist/index.js +19 -0
- package/core/src/queue/package.json +55 -0
- package/core/src/queue/src/index.ts +17 -0
- package/core/src/queue/tests/example.test.ts +5 -0
- package/core/src/realtime/README.md +59 -0
- package/core/src/realtime/build.ts +8 -0
- package/core/src/realtime/dist/index.js +6 -0
- package/core/src/realtime/package.json +52 -0
- package/core/src/realtime/src/drivers/index.ts +1 -0
- package/core/src/realtime/src/index.ts +1 -0
- package/core/src/realtime/tests/example.test.ts +5 -0
- package/core/src/repl/README.md +53 -0
- package/core/src/repl/build.ts +8 -0
- package/core/src/repl/dist/index.js +6 -0
- package/core/src/repl/package.json +59 -0
- package/core/src/repl/tests/example.test.ts +5 -0
- package/core/src/router/README.md +59 -0
- package/core/src/router/build.ts +8 -0
- package/core/src/router/dist/index.js +841 -0
- package/core/src/router/package.json +62 -0
- package/core/src/router/src/index.ts +4 -0
- package/core/src/router/src/middleware.ts +34 -0
- package/core/src/router/src/request.ts +44 -0
- package/core/src/router/src/router.ts +162 -0
- package/core/src/router/src/server.ts +154 -0
- package/core/src/router/tests/example.test.ts +5 -0
- package/core/src/scheduler/README.md +137 -0
- package/core/src/scheduler/build.ts +8 -0
- package/core/src/scheduler/dist/index.js +208 -0
- package/core/src/scheduler/package.json +56 -0
- package/core/src/scheduler/src/index.ts +321 -0
- package/core/src/scheduler/tests/example.test.ts +5 -0
- package/core/src/search-engine/README.md +66 -0
- package/core/src/search-engine/build.ts +8 -0
- package/core/src/search-engine/dist/index.js +89 -0
- package/core/src/search-engine/package.json +67 -0
- package/core/src/search-engine/src/drivers/index.ts +1 -0
- package/core/src/search-engine/src/drivers/meilisearch.ts +124 -0
- package/core/src/search-engine/src/drivers/opensearch.ts +59 -0
- package/core/src/search-engine/src/helpers.ts +138 -0
- package/core/src/search-engine/src/index.ts +69 -0
- package/core/src/search-engine/tests/example.test.ts +5 -0
- package/core/src/security/README.md +66 -0
- package/core/src/security/build.ts +8 -0
- package/core/src/security/dist/index.js +3288 -0
- package/core/src/security/package.json +65 -0
- package/core/src/security/src/crypt.ts +23 -0
- package/core/src/security/src/hash.ts +54 -0
- package/core/src/security/src/key.ts +11 -0
- package/core/src/security/tests/example.test.ts +5 -0
- package/core/src/server/README.md +51 -0
- package/core/src/server/build.ts +8 -0
- package/core/src/server/dist/index.js +48 -0
- package/core/src/server/package.json +67 -0
- package/core/src/server/src/api.ts +5 -0
- package/core/src/server/src/config.ts +59 -0
- package/core/src/server/src/index.ts +1 -0
- package/core/src/server/tests/example.test.ts +5 -0
- package/core/src/signals/README.md +105 -0
- package/core/src/signals/build.ts +8 -0
- package/core/src/signals/dist/index.js +9 -0
- package/core/src/signals/package.json +63 -0
- package/core/src/signals/tests/example.test.ts +5 -0
- package/core/src/slug/README.md +59 -0
- package/core/src/slug/build.ts +8 -0
- package/core/src/slug/dist/index.js +5 -0
- package/core/src/slug/package.json +65 -0
- package/core/src/slug/src/index.ts +56 -0
- package/core/src/slug/tests/example.test.ts +5 -0
- package/core/src/sms/README.md +137 -0
- package/core/src/sms/build.ts +9 -0
- package/core/src/sms/package.json +82 -0
- package/core/src/sms/src/drivers/index.ts +8 -0
- package/core/src/sms/src/index.ts +1 -0
- package/core/src/sms/tests/example.test.ts +5 -0
- package/core/src/storage/README.md +74 -0
- package/core/src/storage/build.ts +8 -0
- package/core/src/storage/dist/index.js +798 -0
- package/core/src/storage/package.json +77 -0
- package/core/src/storage/src/copy.ts +42 -0
- package/core/src/storage/src/delete.ts +131 -0
- package/core/src/storage/src/drivers/aws.ts +15 -0
- package/core/src/storage/src/drivers/index.ts +1 -0
- package/core/src/storage/src/files.ts +182 -0
- package/core/src/storage/src/folders.ts +51 -0
- package/core/src/storage/src/fs.ts +9 -0
- package/core/src/storage/src/glob.ts +1 -0
- package/core/src/storage/src/hash.ts +39 -0
- package/core/src/storage/src/helpers.ts +29 -0
- package/core/src/storage/src/index.ts +11 -0
- package/core/src/storage/src/move.ts +84 -0
- package/core/src/storage/src/storage.ts +10 -0
- package/core/src/storage/src/visibility.ts +6 -0
- package/core/src/storage/src/zip.ts +55 -0
- package/core/src/storage/tests/example.test.ts +5 -0
- package/core/src/strings/README.md +137 -0
- package/core/src/strings/build.ts +9 -0
- package/core/src/strings/dist/index.js +393 -0
- package/core/src/strings/package.json +81 -0
- package/core/src/strings/src/case.ts +27 -0
- package/core/src/strings/src/helpers.ts +3 -0
- package/core/src/strings/src/index.ts +2 -0
- package/core/src/strings/src/macro.ts +131 -0
- package/core/src/strings/src/pluralize.ts +26 -0
- package/core/src/strings/src/string.ts +5 -0
- package/core/src/strings/src/types.ts +4 -0
- package/core/src/strings/src/utils.ts +117 -0
- package/core/src/strings/tests/example.test.ts +5 -0
- package/core/src/tables/README.md +110 -0
- package/core/src/tables/examples/vue/App.stx +12 -0
- package/core/src/tables/examples/vue/favicon.png +0 -0
- package/core/src/tables/examples/vue/index.html +20 -0
- package/core/src/tables/examples/web/favicon.png +0 -0
- package/core/src/tables/examples/web/index.html +13 -0
- package/core/src/tables/package.json +57 -0
- package/core/src/tables/src/App.stx +23 -0
- package/core/src/tables/src/components/README.md +109 -0
- package/core/src/tables/src/components/Table.stx +342 -0
- package/core/src/tables/src/components/TableBody.stx +32 -0
- package/core/src/tables/src/components/TableFilters.stx +704 -0
- package/core/src/tables/src/components/TableHead.stx +60 -0
- package/core/src/tables/src/components/TablePagination.stx +131 -0
- package/core/src/tables/src/components/TableRow.stx +73 -0
- package/core/src/tables/src/components/TableSearch.stx +39 -0
- package/core/src/tables/src/components/Tooltip.stx +10 -0
- package/core/src/tables/src/components.d.ts +24 -0
- package/core/src/tables/src/config/tables.ts +2 -0
- package/core/src/tables/src/docs/index.md +0 -0
- package/core/src/tables/src/main.ts +4 -0
- package/core/src/tables/tests/example.test.ts +5 -0
- package/core/src/tables/vite.config.ts +84 -0
- package/core/src/testing/README.md +59 -0
- package/core/src/testing/build.ts +8 -0
- package/core/src/testing/dist/index.js +6 -0
- package/core/src/testing/package.json +62 -0
- package/core/src/testing/src/index.ts +3 -0
- package/core/src/tinker/package.json +46 -0
- package/core/src/tunnel/README.md +53 -0
- package/core/src/tunnel/build.ts +8 -0
- package/core/src/tunnel/dist/index.js +10 -0
- package/core/src/tunnel/package.json +57 -0
- package/core/src/tunnel/src/index.ts +6 -0
- package/core/src/tunnel/tests/example.test.ts +5 -0
- package/core/src/types/README.md +59 -0
- package/core/src/types/build.ts +8 -0
- package/core/src/types/dist/index.js +501 -0
- package/core/src/types/package.json +86 -0
- package/core/src/types/src/ai.ts +25 -0
- package/core/src/types/src/analytics.ts +21 -0
- package/core/src/types/src/api.ts +63 -0
- package/core/src/types/src/app.ts +172 -0
- package/core/src/types/src/binary.ts +12 -0
- package/core/src/types/src/cache.ts +98 -0
- package/core/src/types/src/cdn.ts +17 -0
- package/core/src/types/src/chat.ts +5 -0
- package/core/src/types/src/cli.ts +305 -0
- package/core/src/types/src/cloud.ts +82 -0
- package/core/src/types/src/components.ts +64 -0
- package/core/src/types/src/configure.ts +6 -0
- package/core/src/types/src/cron-jobs.ts +44 -0
- package/core/src/types/src/database.ts +45 -0
- package/core/src/types/src/dependencies.ts +69 -0
- package/core/src/types/src/deploy.ts +13 -0
- package/core/src/types/src/dns.ts +186 -0
- package/core/src/types/src/docs.ts +22 -0
- package/core/src/types/src/email.ts +16 -0
- package/core/src/types/src/env.ts +1 -0
- package/core/src/types/src/errors.ts +11 -0
- package/core/src/types/src/events.ts +30 -0
- package/core/src/types/src/file-systems.ts +70 -0
- package/core/src/types/src/git.ts +133 -0
- package/core/src/types/src/hashing.ts +131 -0
- package/core/src/types/src/helpers.ts +11 -0
- package/core/src/types/src/index.ts +58 -0
- package/core/src/types/src/layout.ts +8 -0
- package/core/src/types/src/library.ts +154 -0
- package/core/src/types/src/model.ts +72 -0
- package/core/src/types/src/money.ts +3 -0
- package/core/src/types/src/notifications.ts +147 -0
- package/core/src/types/src/payments.ts +65 -0
- package/core/src/types/src/push.ts +36 -0
- package/core/src/types/src/queue.ts +36 -0
- package/core/src/types/src/router.ts +70 -0
- package/core/src/types/src/scheduler.ts +1 -0
- package/core/src/types/src/search-engine.ts +136 -0
- package/core/src/types/src/security.ts +23 -0
- package/core/src/types/src/services.ts +44 -0
- package/core/src/types/src/sms.ts +5 -0
- package/core/src/types/src/ssg.ts +3 -0
- package/core/src/types/src/stacks.ts +236 -0
- package/core/src/types/src/storage.ts +13 -0
- package/core/src/types/src/team.ts +8 -0
- package/core/src/types/src/ui.ts +197 -0
- package/core/src/types/src/utils.ts +47 -0
- package/core/src/ui/README.md +66 -0
- package/core/src/ui/build.ts +8 -0
- package/core/src/ui/dist/components.js +68 -0
- package/core/src/ui/dist/index.js +69 -0
- package/core/src/ui/package.json +91 -0
- package/core/src/ui/src/components/autocomplete.ts +0 -0
- package/core/src/ui/src/components/disclosure.ts +5 -0
- package/core/src/ui/src/components/menu.ts +1 -0
- package/core/src/ui/src/components/modal.ts +6 -0
- package/core/src/ui/src/components/popover.ts +1 -0
- package/core/src/ui/src/components/radio-group.ts +5 -0
- package/core/src/ui/src/components/select.ts +6 -0
- package/core/src/ui/src/components/tabs.ts +1 -0
- package/core/src/ui/src/components/toggle.ts +1 -0
- package/core/src/ui/src/components/transition.ts +1 -0
- package/core/src/ui/src/components.ts +10 -0
- package/core/src/ui/src/index.ts +15 -0
- package/core/src/ui/src/uno.config.ts +64 -0
- package/core/src/ui/tests/example.test.ts +5 -0
- package/core/src/utils/build.ts +8 -0
- package/core/src/utils/dist/index.js +1276 -0
- package/core/src/utils/package.json +110 -0
- package/core/src/utils/scripts/export-size.ts +94 -0
- package/core/src/utils/src/base.ts +12 -0
- package/core/src/utils/src/clean.ts +17 -0
- package/core/src/utils/src/config.ts +25 -0
- package/core/src/utils/src/delete.ts +1 -0
- package/core/src/utils/src/equal.ts +27 -0
- package/core/src/utils/src/export-size.ts +1 -0
- package/core/src/utils/src/git.ts +11 -0
- package/core/src/utils/src/glob.ts +1 -0
- package/core/src/utils/src/hash.ts +17 -0
- package/core/src/utils/src/helpers.ts +187 -0
- package/core/src/utils/src/index.ts +22 -0
- package/core/src/utils/src/macroable.ts +1 -0
- package/core/src/utils/src/math.ts +30 -0
- package/core/src/utils/src/promise.ts +117 -0
- package/core/src/utils/src/regex.ts +2 -0
- package/core/src/utils/src/sleep.ts +60 -0
- package/core/src/utils/src/throttle.ts +44 -0
- package/core/src/utils/src/vendors.ts +258 -0
- package/core/src/utils/src/versions.ts +6 -0
- package/core/src/utils/tests/example.test.ts +5 -0
- package/core/src/validation/README.md +53 -0
- package/core/src/validation/build.ts +5 -0
- package/core/src/validation/dist/index.js +187 -0
- package/core/src/validation/package.json +63 -0
- package/core/src/validation/src/is.ts +111 -0
- package/core/src/validation/src/rules.ts +126 -0
- package/core/src/validation/src/types/index.ts +7 -0
- package/core/src/validation/src/types/money.ts +17 -0
- package/core/src/validation/src/validate.ts +33 -0
- package/core/src/validation/tests/example.test.ts +5 -0
- package/core/src/vite/README.md +59 -0
- package/core/src/vite/build.ts +9 -0
- package/core/src/vite/dist/index.js +649 -0
- package/core/src/vite/package.json +122 -0
- package/core/src/vite/src/api.ts +19 -0
- package/core/src/vite/src/components.ts +79 -0
- package/core/src/vite/src/desktop.ts +59 -0
- package/core/src/vite/src/example-vue.ts +27 -0
- package/core/src/vite/src/example-wc.ts +27 -0
- package/core/src/vite/src/functions.ts +55 -0
- package/core/src/vite/src/index.ts +20 -0
- package/core/src/vite/src/plugin/auto-imports.ts +40 -0
- package/core/src/vite/src/plugin/components.ts +18 -0
- package/core/src/vite/src/plugin/css-engine.ts +16 -0
- package/core/src/vite/src/plugin/devtools.ts +1 -0
- package/core/src/vite/src/plugin/docs.ts +16 -0
- package/core/src/vite/src/plugin/fonts.ts +6 -0
- package/core/src/vite/src/plugin/i18n.ts +13 -0
- package/core/src/vite/src/plugin/index.ts +21 -0
- package/core/src/vite/src/plugin/inspect.ts +6 -0
- package/core/src/vite/src/plugin/layouts.ts +21 -0
- package/core/src/vite/src/plugin/markdown.ts +26 -0
- package/core/src/vite/src/plugin/pages.ts +34 -0
- package/core/src/vite/src/plugin/presets.ts +17 -0
- package/core/src/vite/src/plugin/pwa.ts +33 -0
- package/core/src/vite/src/plugin/router.ts +15 -0
- package/core/src/vite/src/plugin/stacks.ts +149 -0
- package/core/src/vite/src/plugin/ui-engine.ts +19 -0
- package/core/src/vite/src/stacks.ts +12 -0
- package/core/src/vite/src/views.ts +86 -0
- package/core/src/vite/src/web-components.ts +67 -0
- package/core/src/vite/tests/example.test.ts +5 -0
- package/core/src/vite-plugin-vue-layouts/README.md +59 -0
- package/core/src/vite-plugin-vue-layouts/build.ts +8 -0
- package/core/src/vite-plugin-vue-layouts/client.d.ts +5 -0
- package/core/src/vite-plugin-vue-layouts/dist/index.js +271 -0
- package/core/src/vite-plugin-vue-layouts/package.json +64 -0
- package/core/src/vite-plugin-vue-layouts/src/RouteLayout.ts +26 -0
- package/core/src/vite-plugin-vue-layouts/src/clientSide.ts +99 -0
- package/core/src/vite-plugin-vue-layouts/src/files.ts +24 -0
- package/core/src/vite-plugin-vue-layouts/src/importCode.ts +32 -0
- package/core/src/vite-plugin-vue-layouts/src/index.ts +150 -0
- package/core/src/vite-plugin-vue-layouts/src/types.ts +53 -0
- package/core/src/vite-plugin-vue-layouts/src/utils.ts +15 -0
- package/core/src/vite-plugin-vue-layouts/tests/example.test.ts +5 -0
- package/core/src/whois/README.md +55 -0
- package/core/src/whois/build.ts +8 -0
- package/core/src/whois/dist/index.js +601 -0
- package/core/src/whois/package.json +60 -0
- package/core/src/whois/src/index.ts +497 -0
- package/core/src/whois/src/parameters.ts +4 -0
- package/core/src/whois/src/servers.ts +318 -0
- package/core/src/whois/src/test.ts +5 -0
- package/core/src/whois/tests/example.test.ts +5 -0
- package/core/src/x-ray/README.md +55 -0
- package/core/src/x-ray/package.json +53 -0
- package/core/src/x-ray/src/client.ts +14 -0
- package/core/src/x-ray/src/desktop/api/nitro.config.ts +19 -0
- package/core/src/x-ray/src/desktop/api/storage/index.ts +7 -0
- package/core/src/x-ray/src/desktop/app.stx +377 -0
- package/core/src/x-ray/src/desktop/functions/http.ts +26 -0
- package/core/src/x-ray/src/desktop/main.ts +14 -0
- package/core/src/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
- package/core/src/x-ray/src/desktop/styles/app.scss +0 -0
- package/core/src/x-ray/src/http.ts +26 -0
- package/core/src/x-ray/src/index.ts +42 -0
- package/core/src/x-ray/tests/example.test.ts +5 -0
- package/core/tsconfig.json +73 -0
- package/core/web-types.json +67 -0
- package/ide/dictionary.txt +306 -0
- package/ide/jetbrains/.idea/jsLinters/eslint.xml +1 -1
- package/ide/jetbrains/.idea/stacks.iml +56 -56
- package/ide/jetbrains/options/nodejs.xml +3 -3
- package/ide/vscode/.vscode/settings.json +55 -51
- package/ide/vscode/LICENSE.md +1 -1
- package/ide/vscode/README.md +1 -2
- package/ide/vscode/package.json +10 -9
- package/package.json +477 -201
- package/stubs/.gitkeep +0 -0
- package/stubs/TODO.md +18 -0
- package/vcs/github/CODE_OF_CONDUCT.md +1 -1
- package/vcs/github/CONTRIBUTING.md +6 -8
- package/vcs/github/EXPLANATIONS.md +2 -2
- package/vcs/github/ISSUE_TEMPLATE/bug_report.yml +1 -14
- package/vcs/github/ISSUE_TEMPLATE/config.yml +1 -1
- package/vcs/github/SECURITY.md +1 -1
- package/vcs/github/workflows/README.md +1 -1
- package/vcs/github/workflows/ci.yml +26 -47
- package/vcs/github/workflows/export-size.yml +5 -14
- package/vcs/github/workflows/labeler.yml +13 -0
- package/vcs/github/workflows/release.yml +21 -21
- package/.gitignore +0 -18
- package/README.md +0 -416
- package/api/nitro.config.ts +0 -17
- package/api/package.json +0 -43
- package/api/routes/index.ts +0 -1
- package/art/logo-dark.svg +0 -11
- package/art/logo.svg +0 -11
- package/auto-imports.d.ts +0 -2572
- package/components.d.ts +0 -19
- package/core/actions/README.md +0 -58
- package/core/actions/build.config.ts +0 -187
- package/core/actions/package.json +0 -276
- package/core/actions/src/add.ts +0 -32
- package/core/actions/src/build/component-libs.ts +0 -5
- package/core/actions/src/build/core.ts +0 -6
- package/core/actions/src/build/stacks.ts +0 -9
- package/core/actions/src/build.ts +0 -93
- package/core/actions/src/bump.ts +0 -7
- package/core/actions/src/changelog.ts +0 -7
- package/core/actions/src/clean.ts +0 -12
- package/core/actions/src/commit.ts +0 -19
- package/core/actions/src/copy-types.ts +0 -22
- package/core/actions/src/deploy/domains.ts +0 -8
- package/core/actions/src/deploy.ts +0 -8
- package/core/actions/src/dev/components.ts +0 -5
- package/core/actions/src/dev/docs.ts +0 -5
- package/core/actions/src/dev/index.ts +0 -25
- package/core/actions/src/examples.ts +0 -48
- package/core/actions/src/fresh.ts +0 -7
- package/core/actions/src/generate/component-meta.ts +0 -15
- package/core/actions/src/generate/ide-helpers.ts +0 -20
- package/core/actions/src/generate/index.ts +0 -134
- package/core/actions/src/generate/lib-entries.ts +0 -17
- package/core/actions/src/generate/settings.ts +0 -4
- package/core/actions/src/generate/vscode-custom-data.ts +0 -16
- package/core/actions/src/generate/vue-compat.ts +0 -10
- package/core/actions/src/helpers/component-meta.ts +0 -93
- package/core/actions/src/helpers/index.ts +0 -6
- package/core/actions/src/helpers/lib-entries.ts +0 -138
- package/core/actions/src/helpers/package-json.ts +0 -96
- package/core/actions/src/helpers/utils.ts +0 -76
- package/core/actions/src/helpers/vscode-custom-data.ts +0 -28
- package/core/actions/src/helpers/vue-compat.ts +0 -17
- package/core/actions/src/index.ts +0 -1
- package/core/actions/src/key-generate.ts +0 -10
- package/core/actions/src/lint/fix.ts +0 -5
- package/core/actions/src/lint/index.ts +0 -17
- package/core/actions/src/make.ts +0 -328
- package/core/actions/src/migrate.ts +0 -3
- package/core/actions/src/preinstall.ts +0 -27
- package/core/actions/src/prepublish.ts +0 -16
- package/core/actions/src/release.ts +0 -15
- package/core/actions/src/seed.ts +0 -3
- package/core/actions/src/test/coverage.ts +0 -5
- package/core/actions/src/test/feature.ts +0 -5
- package/core/actions/src/test/ui.ts +0 -5
- package/core/actions/src/test/unit.ts +0 -5
- package/core/actions/src/test.ts +0 -5
- package/core/actions/src/tinker.ts +0 -10
- package/core/actions/src/typecheck.ts +0 -5
- package/core/actions/src/types.ts +0 -23
- package/core/actions/src/upgrade/framework.ts +0 -29
- package/core/actions/src/upgrade/index.ts +0 -25
- package/core/actions/src/upgrade/node.ts +0 -4
- package/core/actions/src/upgrade/package-manager.ts +0 -4
- package/core/actions/src/upgrade.ts +0 -75
- package/core/actions/tests/example.test.ts +0 -7
- package/core/ai/README.md +0 -62
- package/core/ai/build.config.ts +0 -13
- package/core/ai/package.json +0 -54
- package/core/ai/src/drivers/openai.ts +0 -1
- package/core/ai/tests/example.test.ts +0 -7
- package/core/alias/README.md +0 -62
- package/core/alias/build.config.ts +0 -13
- package/core/alias/package.json +0 -51
- package/core/alias/src/index.ts +0 -108
- package/core/alias/tests/example.test.ts +0 -7
- package/core/analytics/README.md +0 -62
- package/core/analytics/build.config.ts +0 -13
- package/core/analytics/package.json +0 -64
- package/core/analytics/src/drivers/fathom.ts +0 -1
- package/core/analytics/tests/example.test.ts +0 -7
- package/core/arrays/README.md +0 -59
- package/core/arrays/build.config.ts +0 -12
- package/core/arrays/package.json +0 -60
- package/core/arrays/src/contains.ts +0 -23
- package/core/arrays/src/helpers.ts +0 -206
- package/core/arrays/src/index.ts +0 -4
- package/core/arrays/src/macro.ts +0 -135
- package/core/arrays/src/math.ts +0 -19
- package/core/arrays/tests/example.test.ts +0 -7
- package/core/auth/README.md +0 -59
- package/core/auth/build.config.ts +0 -12
- package/core/auth/package.json +0 -48
- package/core/auth/tests/example.test.ts +0 -7
- package/core/buddy/README.md +0 -416
- package/core/buddy/art/social.png +0 -0
- package/core/buddy/build.config.ts +0 -14
- package/core/buddy/package.json +0 -128
- package/core/buddy/src/cli.ts +0 -65
- package/core/buddy/src/commands/add.ts +0 -62
- package/core/buddy/src/commands/build.ts +0 -149
- package/core/buddy/src/commands/changelog.ts +0 -31
- package/core/buddy/src/commands/clean.ts +0 -29
- package/core/buddy/src/commands/commit.ts +0 -18
- package/core/buddy/src/commands/create.ts +0 -126
- package/core/buddy/src/commands/deploy.ts +0 -29
- package/core/buddy/src/commands/dev.ts +0 -142
- package/core/buddy/src/commands/example.ts +0 -59
- package/core/buddy/src/commands/fresh.ts +0 -29
- package/core/buddy/src/commands/generate.ts +0 -118
- package/core/buddy/src/commands/index.ts +0 -27
- package/core/buddy/src/commands/inspire.ts +0 -24
- package/core/buddy/src/commands/key.ts +0 -28
- package/core/buddy/src/commands/lint.ts +0 -45
- package/core/buddy/src/commands/make.ts +0 -257
- package/core/buddy/src/commands/migrate.ts +0 -31
- package/core/buddy/src/commands/onboarding.ts +0 -22
- package/core/buddy/src/commands/preinstall.ts +0 -18
- package/core/buddy/src/commands/prepublish.ts +0 -19
- package/core/buddy/src/commands/release.ts +0 -28
- package/core/buddy/src/commands/seed.ts +0 -31
- package/core/buddy/src/commands/setting.ts +0 -26
- package/core/buddy/src/commands/setup.ts +0 -26
- package/core/buddy/src/commands/test.ts +0 -118
- package/core/buddy/src/commands/tinker.ts +0 -29
- package/core/buddy/src/commands/types.ts +0 -26
- package/core/buddy/src/commands/upgrade.ts +0 -134
- package/core/buddy/src/commands/version.ts +0 -28
- package/core/build/README.md +0 -59
- package/core/build/build.config.ts +0 -27
- package/core/build/package.json +0 -77
- package/core/build/src/desktop.ts +0 -152
- package/core/build/src/example-vue.ts +0 -25
- package/core/build/src/example-wc.ts +0 -25
- package/core/build/src/functions.ts +0 -54
- package/core/build/src/index.ts +0 -7
- package/core/build/src/stacks.ts +0 -200
- package/core/build/src/views.ts +0 -50
- package/core/build/src/vue-components.ts +0 -137
- package/core/build/src/web-components.ts +0 -62
- package/core/build/tests/example.test.ts +0 -7
- package/core/build/web-types.ts +0 -14
- package/core/cache/README.md +0 -59
- package/core/cache/build.config.ts +0 -15
- package/core/cache/package.json +0 -77
- package/core/cache/src/drivers/memcached.ts +0 -21
- package/core/cache/src/drivers/redis.ts +0 -44
- package/core/cache/src/drivers/upstash.ts +0 -2
- package/core/cache/src/index.ts +0 -4
- package/core/cache/tests/DynamoDB.test.ts +0 -135
- package/core/cache/tests/Memcached.test.ts +0 -52
- package/core/cache/tests/Redis.test.ts +0 -82
- package/core/cache/vite.config.ts +0 -7
- package/core/chat/README.md +0 -83
- package/core/chat/build.config.ts +0 -13
- package/core/chat/package.json +0 -60
- package/core/chat/tests/example.test.ts +0 -7
- package/core/cli/README.md +0 -129
- package/core/cli/build.config.ts +0 -12
- package/core/cli/package.json +0 -71
- package/core/cli/src/actions/install.ts +0 -40
- package/core/cli/src/command.ts +0 -2
- package/core/cli/src/console.ts +0 -78
- package/core/cli/src/helpers.ts +0 -74
- package/core/cli/src/index.ts +0 -10
- package/core/cli/src/parse.ts +0 -99
- package/core/cli/src/run.ts +0 -100
- package/core/cli/src/utilities.ts +0 -1
- package/core/cli/tests/example.test.ts +0 -7
- package/core/cloud/README.md +0 -59
- package/core/cloud/build.config.ts +0 -12
- package/core/cloud/netlify.toml +0 -18
- package/core/cloud/package.json +0 -66
- package/core/cloud/src/aws/index.ts +0 -9
- package/core/cloud/src/aws/logger.ts +0 -8
- package/core/cloud/src/aws/metrics.ts +0 -8
- package/core/cloud/src/aws/stack.ts +0 -12
- package/core/cloud/src/aws/tracer.ts +0 -3
- package/core/cloud/src/index.ts +0 -1
- package/core/cloud/src/runtime/nodejs/bootstrap.ts +0 -16
- package/core/cloud/src/runtime/nodejs/build.sh +0 -1
- package/core/cloud/tests/example.test.ts +0 -7
- package/core/collections/README.md +0 -71
- package/core/collections/build.config.ts +0 -11
- package/core/collections/package.json +0 -55
- package/core/collections/tests/example.test.ts +0 -7
- package/core/config/README.md +0 -71
- package/core/config/build.config.ts +0 -46
- package/core/config/package.json +0 -54
- package/core/config/src/defaults.ts +0 -17
- package/core/config/src/index.ts +0 -4
- package/core/config/src/stacks.ts +0 -48
- package/core/config/tests/example.test.ts +0 -7
- package/core/database/README.md +0 -59
- package/core/database/build.config.ts +0 -16
- package/core/database/package.json +0 -64
- package/core/database/src/factory/index.ts +0 -24
- package/core/database/src/index.ts +0 -3
- package/core/database/src/migrations/index.ts +0 -148
- package/core/database/src/seeder/index.ts +0 -79
- package/core/database/tests/example.test.ts +0 -7
- package/core/datetime/README.md +0 -66
- package/core/datetime/build.config.ts +0 -12
- package/core/datetime/package.json +0 -54
- package/core/datetime/tests/example.test.ts +0 -7
- package/core/desktop/README.md +0 -49
- package/core/desktop/build.config.ts +0 -16
- package/core/desktop/package.json +0 -68
- package/core/desktop/src/drivers/tauri/index.ts +0 -1
- package/core/desktop/src/index.ts +0 -1
- package/core/desktop/tests/example.test.ts +0 -7
- package/core/development/README.md +0 -27
- package/core/development/build.config.ts +0 -25
- package/core/development/package.json +0 -68
- package/core/development/src/index.ts +0 -4
- package/core/development/tests/example.test.ts +0 -7
- package/core/dns/README.md +0 -56
- package/core/dns/build.config.ts +0 -18
- package/core/dns/package.json +0 -55
- package/core/dns/src/index.ts +0 -18
- package/core/dns/tests/example.test.ts +0 -7
- package/core/docs/README.md +0 -59
- package/core/docs/build.config.ts +0 -15
- package/core/docs/package.json +0 -54
- package/core/docs/src/index.ts +0 -5
- package/core/docs/tests/example.test.ts +0 -7
- package/core/email/README.md +0 -155
- package/core/email/build.config.ts +0 -12
- package/core/email/package.json +0 -82
- package/core/email/src/actions/send.ts +0 -38
- package/core/email/src/drivers/emailjs.ts +0 -23
- package/core/email/src/drivers/mailgun.ts +0 -21
- package/core/email/src/drivers/mailjet.ts +0 -21
- package/core/email/src/drivers/mandrill.ts +0 -19
- package/core/email/src/drivers/netcore.ts +0 -19
- package/core/email/src/drivers/nodemailer.ts +0 -23
- package/core/email/src/drivers/postmark.ts +0 -19
- package/core/email/src/drivers/sendgrid.ts +0 -20
- package/core/email/src/drivers/ses.ts +0 -22
- package/core/email/src/index.ts +0 -9
- package/core/email/tests/example.test.ts +0 -7
- package/core/error-handling/README.md +0 -131
- package/core/error-handling/build.config.ts +0 -19
- package/core/error-handling/package.json +0 -58
- package/core/error-handling/src/index.ts +0 -58
- package/core/error-handling/tests/example.test.ts +0 -7
- package/core/events/README.md +0 -76
- package/core/events/build.config.ts +0 -12
- package/core/events/package.json +0 -53
- package/core/events/src/index.ts +0 -38
- package/core/events/tests/example.test.ts +0 -7
- package/core/faker/README.md +0 -62
- package/core/faker/build.config.ts +0 -17
- package/core/faker/package.json +0 -55
- package/core/faker/tests/example.test.ts +0 -7
- package/core/git/README.md +0 -69
- package/core/git/build.config.ts +0 -17
- package/core/git/package.json +0 -58
- package/core/git/src/index.ts +0 -1
- package/core/git/tests/example.test.ts +0 -7
- package/core/health/README.md +0 -56
- package/core/health/build.config.ts +0 -17
- package/core/health/package.json +0 -53
- package/core/health/src/drivers/ohdear.ts +0 -1
- package/core/health/src/index.ts +0 -1
- package/core/health/src/notifications/index.ts +0 -1
- package/core/health/tests/example.test.ts +0 -7
- package/core/lint/README.md +0 -73
- package/core/lint/build.config.ts +0 -17
- package/core/lint/package.json +0 -58
- package/core/lint/tests/example.test.ts +0 -7
- package/core/logging/README.md +0 -58
- package/core/logging/build.config.ts +0 -26
- package/core/logging/package.json +0 -61
- package/core/logging/src/index.ts +0 -11
- package/core/logging/tests/example.test.ts +0 -7
- package/core/modules/README.md +0 -51
- package/core/modules/build.config.ts +0 -18
- package/core/modules/package.json +0 -61
- package/core/modules/src/i18n.ts +0 -23
- package/core/modules/src/nprogress.ts +0 -14
- package/core/modules/src/pwa.ts +0 -12
- package/core/modules/tests/example.test.ts +0 -7
- package/core/notifications/README.md +0 -272
- package/core/notifications/build.config.ts +0 -16
- package/core/notifications/package.json +0 -93
- package/core/notifications/src/index.ts +0 -51
- package/core/notifications/src/tailwind.config.ts +0 -39
- package/core/notifications/src/utils/config.ts +0 -5
- package/core/notifications/tests/chat/Slack.test.ts +0 -35
- package/core/notifications/tests/email/Mailgun.test.ts +0 -41
- package/core/notifications/tests/email/Sendgrid.test.ts +0 -41
- package/core/notifications/tests/sms/Twilio.test.ts +0 -38
- package/core/objects/README.md +0 -71
- package/core/objects/build.config.ts +0 -19
- package/core/objects/package.json +0 -55
- package/core/objects/src/index.ts +0 -147
- package/core/objects/tests/example.test.ts +0 -7
- package/core/orm/README.md +0 -48
- package/core/orm/build.config.ts +0 -12
- package/core/orm/package.json +0 -52
- package/core/orm/src/index.ts +0 -43
- package/core/orm/tests/example.test.ts +0 -7
- package/core/pages/build.config.ts +0 -12
- package/core/pages/package.json +0 -57
- package/core/pages/src/index.ts +0 -39
- package/core/pages/tests/example.test.ts +0 -7
- package/core/path/README.md +0 -64
- package/core/path/build.config.ts +0 -16
- package/core/path/package.json +0 -55
- package/core/path/src/index.ts +0 -486
- package/core/path/tests/example.test.ts +0 -7
- package/core/payments/README.md +0 -64
- package/core/payments/build.config.ts +0 -12
- package/core/payments/package.json +0 -58
- package/core/payments/src/drivers/stripe.ts +0 -137
- package/core/payments/tests/example.test.ts +0 -7
- package/core/push/README.md +0 -71
- package/core/push/build.config.ts +0 -12
- package/core/push/package.json +0 -56
- package/core/push/src/drivers/expo.ts +0 -21
- package/core/push/src/drivers/fcm.ts +0 -21
- package/core/push/src/index.ts +0 -2
- package/core/push/tests/example.test.ts +0 -7
- package/core/query-builder/README.md +0 -48
- package/core/query-builder/build.config.ts +0 -12
- package/core/query-builder/package.json +0 -56
- package/core/query-builder/src/kysely.ts +0 -37
- package/core/query-builder/tests/example.test.ts +0 -7
- package/core/queue/README.md +0 -59
- package/core/queue/build.config.ts +0 -12
- package/core/queue/package.json +0 -53
- package/core/queue/src/index.ts +0 -1
- package/core/queue/tests/example.test.ts +0 -7
- package/core/realtime/README.md +0 -59
- package/core/realtime/build.config.ts +0 -12
- package/core/realtime/package.json +0 -50
- package/core/realtime/src/drivers/index.ts +0 -3
- package/core/realtime/src/index.ts +0 -5
- package/core/realtime/tests/example.test.ts +0 -7
- package/core/repl/README.md +0 -53
- package/core/repl/build.config.ts +0 -12
- package/core/repl/package.json +0 -56
- package/core/repl/tests/example.test.ts +0 -7
- package/core/router/README.md +0 -59
- package/core/router/build.config.ts +0 -17
- package/core/router/package.json +0 -53
- package/core/router/src/index.ts +0 -120
- package/core/router/tests/example.test.ts +0 -7
- package/core/scheduler/README.md +0 -137
- package/core/scheduler/build.config.ts +0 -12
- package/core/scheduler/package.json +0 -51
- package/core/scheduler/src/index.ts +0 -120
- package/core/scheduler/tests/example.test.ts +0 -7
- package/core/search-engine/README.md +0 -66
- package/core/search-engine/build.config.ts +0 -20
- package/core/search-engine/package.json +0 -65
- package/core/search-engine/src/drivers/meilisearch.ts +0 -39
- package/core/search-engine/src/helpers.ts +0 -134
- package/core/search-engine/src/index.ts +0 -67
- package/core/search-engine/tests/example.test.ts +0 -7
- package/core/security/README.md +0 -66
- package/core/security/build.config.ts +0 -21
- package/core/security/package.json +0 -57
- package/core/security/src/crypt.ts +0 -23
- package/core/security/src/hash.ts +0 -52
- package/core/security/src/key.ts +0 -11
- package/core/security/tests/example.test.ts +0 -7
- package/core/server/README.md +0 -51
- package/core/server/build.config.ts +0 -11
- package/core/server/package.json +0 -59
- package/core/server/src/config.ts +0 -7
- package/core/server/src/index.ts +0 -2
- package/core/server/src/nitro.config.ts +0 -7
- package/core/server/tests/example.test.ts +0 -7
- package/core/signals/README.md +0 -105
- package/core/signals/build.config.ts +0 -12
- package/core/signals/package.json +0 -55
- package/core/signals/tests/example.test.ts +0 -7
- package/core/slug/README.md +0 -59
- package/core/slug/build.config.ts +0 -12
- package/core/slug/package.json +0 -55
- package/core/slug/src/index.ts +0 -57
- package/core/slug/tests/example.test.ts +0 -7
- package/core/sms/README.md +0 -137
- package/core/sms/build.config.ts +0 -17
- package/core/sms/package.json +0 -72
- package/core/sms/src/index.ts +0 -8
- package/core/sms/tests/example.test.ts +0 -7
- package/core/storage/README.md +0 -74
- package/core/storage/build.config.ts +0 -12
- package/core/storage/package.json +0 -61
- package/core/storage/src/index.ts +0 -208
- package/core/storage/tests/example.test.ts +0 -7
- package/core/strings/README.md +0 -77
- package/core/strings/build.config.ts +0 -12
- package/core/strings/package.json +0 -78
- package/core/strings/src/case.ts +0 -27
- package/core/strings/src/index.ts +0 -4
- package/core/strings/src/macro.ts +0 -139
- package/core/strings/src/pluralize.ts +0 -5
- package/core/strings/src/utils.ts +0 -120
- package/core/strings/tests/example.test.ts +0 -7
- package/core/testing/README.md +0 -59
- package/core/testing/build.config.ts +0 -17
- package/core/testing/package.json +0 -62
- package/core/testing/src/index.ts +0 -3
- package/core/tinker/README.md +0 -61
- package/core/tinker/build.config.ts +0 -13
- package/core/tinker/package.json +0 -58
- package/core/tinker/src/index.ts +0 -1
- package/core/tinker/src/tinker.ts +0 -2
- package/core/types/README.md +0 -59
- package/core/types/build.config.ts +0 -37
- package/core/types/package.json +0 -88
- package/core/types/src/app.ts +0 -119
- package/core/types/src/cache.ts +0 -78
- package/core/types/src/cdn.ts +0 -15
- package/core/types/src/cli.ts +0 -303
- package/core/types/src/components.ts +0 -64
- package/core/types/src/cron-jobs.ts +0 -38
- package/core/types/src/database.ts +0 -49
- package/core/types/src/debug.ts +0 -6
- package/core/types/src/deploy.ts +0 -8
- package/core/types/src/dns.ts +0 -49
- package/core/types/src/docs.ts +0 -5
- package/core/types/src/errors.ts +0 -24
- package/core/types/src/events.ts +0 -30
- package/core/types/src/fs.ts +0 -30
- package/core/types/src/git.ts +0 -131
- package/core/types/src/hashing.ts +0 -122
- package/core/types/src/index.ts +0 -40
- package/core/types/src/layout.ts +0 -8
- package/core/types/src/library.ts +0 -146
- package/core/types/src/model.ts +0 -59
- package/core/types/src/money.ts +0 -3
- package/core/types/src/notifications.ts +0 -205
- package/core/types/src/payments.ts +0 -63
- package/core/types/src/queue.ts +0 -34
- package/core/types/src/router.ts +0 -52
- package/core/types/src/search-engine.ts +0 -166
- package/core/types/src/ssg.ts +0 -3
- package/core/types/src/stacks.ts +0 -192
- package/core/types/src/ui.ts +0 -193
- package/core/types/src/utils.ts +0 -43
- package/core/ui/README.md +0 -66
- package/core/ui/build.config.ts +0 -13
- package/core/ui/package.json +0 -69
- package/core/ui/src/index.ts +0 -20
- package/core/ui/src/unocss.config.ts +0 -47
- package/core/ui/src/unocss.ts +0 -45
- package/core/ui/tests/example.test.ts +0 -7
- package/core/utils/build.config.ts +0 -36
- package/core/utils/package.json +0 -102
- package/core/utils/src/base.ts +0 -25
- package/core/utils/src/config.ts +0 -135
- package/core/utils/src/delete.ts +0 -1
- package/core/utils/src/equal.ts +0 -27
- package/core/utils/src/helpers.ts +0 -169
- package/core/utils/src/index.ts +0 -15
- package/core/utils/src/math.ts +0 -30
- package/core/utils/src/promise.ts +0 -124
- package/core/utils/src/throttle.ts +0 -42
- package/core/utils/src/vendors.ts +0 -222
- package/core/utils/src/versions.ts +0 -1
- package/core/utils/tests/example.test.ts +0 -7
- package/core/validation/README.md +0 -53
- package/core/validation/build.config.ts +0 -21
- package/core/validation/package.json +0 -56
- package/core/validation/src/is.ts +0 -110
- package/core/validation/src/rules.ts +0 -126
- package/core/validation/src/types/env.ts +0 -147
- package/core/validation/src/types/index.ts +0 -2
- package/core/validation/src/types/money.ts +0 -17
- package/core/validation/src/validate.ts +0 -18
- package/core/validation/tests/example.test.ts +0 -7
- package/core/vite-plugin/README.md +0 -59
- package/core/vite-plugin/build.config.ts +0 -17
- package/core/vite-plugin/package.json +0 -51
- package/core/vite-plugin/src/index.ts +0 -23
- package/core/vite-plugin/tests/example.test.ts +0 -7
- package/dictionary.txt +0 -228
- package/docs/.vitepress/config.ts +0 -9
- package/docs/README.md +0 -13
- package/docs/package.json +0 -47
- package/env.d.ts +0 -7
- package/ide/jetbrains/.idea/.gitignore +0 -5
- package/libs/components/vue/index.html +0 -13
- package/libs/components/vue/main.ts +0 -19
- package/libs/components/vue/package.json +0 -41
- package/libs/components/web/package.json +0 -41
- package/libs/examples/vue/App.vue +0 -12
- package/libs/examples/vue/favicon.png +0 -0
- package/libs/examples/vue/index.html +0 -20
- package/libs/examples/web/favicon.png +0 -0
- package/libs/examples/web/index.html +0 -13
- package/libs/functions/package.json +0 -41
- package/reset.d.ts +0 -1
- package/scripts/ensure.sh +0 -33
- package/scripts/publish.sh +0 -18
- package/scripts/setup.sh +0 -540
- package/shims.d.ts +0 -17
- package/simple-git-hooks.cjs +0 -5
- package/stacks/dashboard/README.md +0 -74
- package/stacks/dashboard/build.config.ts +0 -15
- package/stacks/dashboard/package.json +0 -47
- package/stacks/dashboard/tests/example.test.ts +0 -7
- package/stacks/tables/README.md +0 -109
- package/stacks/tables/build.config.ts +0 -14
- package/stacks/tables/examples/vue/App.vue +0 -12
- package/stacks/tables/examples/vue/favicon.png +0 -0
- package/stacks/tables/examples/vue/index.html +0 -20
- package/stacks/tables/examples/web/favicon.png +0 -0
- package/stacks/tables/examples/web/index.html +0 -13
- package/stacks/tables/package.json +0 -57
- package/stacks/tables/src/App.vue +0 -23
- package/stacks/tables/src/cli/index.ts +0 -1
- package/stacks/tables/src/components/README.md +0 -110
- package/stacks/tables/src/components/Table.vue +0 -342
- package/stacks/tables/src/components/TableBody.vue +0 -32
- package/stacks/tables/src/components/TableFilters.vue +0 -704
- package/stacks/tables/src/components/TableHead.vue +0 -60
- package/stacks/tables/src/components/TablePagination.vue +0 -131
- package/stacks/tables/src/components/TableRow.vue +0 -73
- package/stacks/tables/src/components/TableSearch.vue +0 -39
- package/stacks/tables/src/components/Tooltip.vue +0 -10
- package/stacks/tables/src/config/tables.ts +0 -1
- package/stacks/tables/src/main.ts +0 -4
- package/stacks/tables/tests/example.test.ts +0 -7
- package/stacks/tables/vite.config.ts +0 -26
- package/stacks/tinker/package.json +0 -49
- package/stacks/tinker/src/index.ts +0 -1
- package/stacks/x-ray/README.md +0 -55
- package/stacks/x-ray/build.config.ts +0 -15
- package/stacks/x-ray/package.json +0 -56
- package/stacks/x-ray/src/client.ts +0 -14
- package/stacks/x-ray/src/desktop/api/nitro.config.ts +0 -19
- package/stacks/x-ray/src/desktop/api/storage/index.ts +0 -7
- package/stacks/x-ray/src/desktop/app.vue +0 -377
- package/stacks/x-ray/src/desktop/functions/http.ts +0 -26
- package/stacks/x-ray/src/desktop/main.ts +0 -14
- package/stacks/x-ray/src/http.ts +0 -26
- package/stacks/x-ray/src/index.ts +0 -42
- package/stacks/x-ray/tests/example.test.ts +0 -7
- package/stacks.d.ts +0 -22
- package/tsconfig.json +0 -159
- package/views/desktop/.gitignore +0 -24
- package/views/desktop/README.md +0 -73
- package/views/desktop/index.html +0 -13
- package/views/desktop/package.json +0 -29
- package/views/desktop/public/favicon.svg +0 -1
- package/views/desktop/src/.gitignore +0 -3
- package/views/desktop/src/Cargo.lock +0 -3916
- package/views/desktop/src/Cargo.toml +0 -28
- package/views/desktop/src/build.rs +0 -3
- package/views/desktop/src/icons/128x128.png +0 -0
- package/views/desktop/src/icons/128x128@2x.png +0 -0
- package/views/desktop/src/icons/32x32.png +0 -0
- package/views/desktop/src/icons/Square107x107Logo.png +0 -0
- package/views/desktop/src/icons/Square142x142Logo.png +0 -0
- package/views/desktop/src/icons/Square150x150Logo.png +0 -0
- package/views/desktop/src/icons/Square284x284Logo.png +0 -0
- package/views/desktop/src/icons/Square30x30Logo.png +0 -0
- package/views/desktop/src/icons/Square310x310Logo.png +0 -0
- package/views/desktop/src/icons/Square44x44Logo.png +0 -0
- package/views/desktop/src/icons/Square71x71Logo.png +0 -0
- package/views/desktop/src/icons/Square89x89Logo.png +0 -0
- package/views/desktop/src/icons/StoreLogo.png +0 -0
- package/views/desktop/src/icons/icon.icns +0 -0
- package/views/desktop/src/icons/icon.ico +0 -0
- package/views/desktop/src/icons/icon.png +0 -0
- package/views/desktop/src/src/main.rs +0 -10
- package/views/desktop/src/tauri.conf.json +0 -73
- package/views/web/App.vue +0 -26
- package/views/web/index.html +0 -23
- package/views/web/main.ts +0 -26
- package/views/web/public/_headers +0 -3
- package/views/web/public/favicon-dark.svg +0 -3
- package/views/web/public/favicon.svg +0 -3
- package/views/web/public/pwa-192x192.png +0 -0
- package/views/web/public/pwa-512x512.png +0 -0
- package/views/web/public/safari-pinned-tab.svg +0 -41
- package/views/web/styles/main.css +0 -29
- package/views/web/styles/markdown.css +0 -28
- package/vitest.config.ts +0 -31
- package/web-types.json +0 -67
- /package/{custom-elements.json → core/custom-elements.json} +0 -0
- /package/core/{actions → src/actions}/src/upgrade/dependencies.ts +0 -0
- /package/{stacks/dashboard/src/index.ts → core/src/ai/src/chatbots.ts} +0 -0
- /package/{stacks/tables/src/docs/index.md → core/src/ai/src/image-generation.ts} +0 -0
- /package/{stacks/x-ray/src/desktop/plugins/unified/unified-styles.scss → core/src/ai/src/personalization.ts} +0 -0
- /package/{stacks/x-ray/src/desktop/styles/app.scss → core/src/ai/src/search.ts} +0 -0
- /package/core/{auth → src/auth}/src/index.ts +0 -0
- /package/core/{buddy → src/buddy}/src/index.ts +0 -0
- /package/core/{build → src/build}/web-types.config.cjs +0 -0
- /package/core/{cache → src/cache}/src/drivers/dynamodb.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/discord.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/slack.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/teams.ts +0 -0
- /package/core/{chat → src/chat}/src/index.ts +0 -0
- /package/core/{cli → src/cli}/src/actions/index.ts +0 -0
- /package/core/{cli → src/cli}/src/spinner.ts +0 -0
- /package/core/{collections → src/collections}/src/index.ts +0 -0
- /package/core/{datetime → src/datetime}/src/index.ts +0 -0
- /package/core/{email → src/email}/src/tailwind.config.ts +0 -0
- /package/core/{email → src/email}/src/utils/config.ts +0 -0
- /package/core/{email → src/email}/src/utils/template.html +0 -0
- /package/core/{faker → src/faker}/src/index.ts +0 -0
- /package/core/{lint → src/lint}/src/index.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/chat.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/email.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/push.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/sms.ts +0 -0
- /package/core/{notifications → src/notifications}/src/utils/template.html +0 -0
- /package/core/{payments → src/payments}/src/index.ts +0 -0
- /package/core/{query-builder → src/query-builder}/src/index.ts +0 -0
- /package/core/{repl → src/repl}/src/index.ts +0 -0
- /package/core/{security → src/security}/src/index.ts +0 -0
- /package/core/{signals → src/signals}/src/index.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/gupshup.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/nexmo.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/plivo.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/sms77.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/sns.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/telnyx.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/termii.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/twilio.ts +0 -0
- /package/core/{strings → src/strings}/src/is.ts +0 -0
- /package/{stacks → core/src}/tables/index.html +0 -0
- /package/core/{ai/src → src/tables/src/commands}/index.ts +0 -0
- /package/{stacks/tables/src/components/Demo.vue → core/src/tables/src/components/Demo.stx} +0 -0
- /package/{stacks/tables/src/components/TableCellActionItems.vue → core/src/tables/src/components/TableCellActionItems.stx} +0 -0
- /package/{stacks → core/src}/tables/src/functions/README.md +0 -0
- /package/{stacks → core/src}/tables/src/functions/dark.ts +0 -0
- /package/{stacks → core/src}/tables/src/functions/index.ts +0 -0
- /package/{stacks → core/src}/tables/src/functions/table.ts +0 -0
- /package/core/{analytics → src/tinker}/src/index.ts +0 -0
- /package/core/{types → src/types}/src/auto-imports.ts +0 -0
- /package/core/{types → src/types}/src/build.ts +0 -0
- /package/core/{types → src/types}/src/exit-code.ts +0 -0
- /package/core/{types → src/types}/src/i18n.ts +0 -0
- /package/core/{types → src/types}/src/inspect.ts +0 -0
- /package/core/{types → src/types}/src/manifest.ts +0 -0
- /package/core/{types → src/types}/src/pages.ts +0 -0
- /package/core/{types → src/types}/src/promise.ts +0 -0
- /package/core/{types → src/types}/src/pwa.ts +0 -0
- /package/core/{types → src/types}/src/reactivity.ts +0 -0
- /package/core/{types → src/types}/src/tables.ts +0 -0
- /package/core/{utils → src/utils}/src/currency.ts +0 -0
- /package/core/{utils → src/utils}/src/debounce.ts +0 -0
- /package/core/{utils → src/utils}/src/function.ts +0 -0
- /package/core/{utils → src/utils}/src/guards.ts +0 -0
- /package/core/{utils → src/utils}/src/p.ts +0 -0
- /package/core/{validation → src/validation}/src/index.ts +0 -0
- /package/{stacks → core/src}/x-ray/index.html +0 -0
- /package/{stacks → core/src}/x-ray/routes/index.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/routes/api/logs.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/routes/api/store-logs.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/src/types.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/functions/types.ts +0 -0
- /package/{stacks/x-ray/src/desktop/modules/counter/mod.vue → core/src/x-ray/src/desktop/modules/counter/mod.stx} +0 -0
- /package/{stacks/x-ray/src/desktop/modules/fetcher/mod.vue → core/src/x-ray/src/desktop/modules/fetcher/mod.stx} +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/plugins/unified/unified-app.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/services/http.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/ray.config.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/types.ts +0 -0
|
@@ -0,0 +1,529 @@
|
|
|
1
|
+
import process from 'node:process'
|
|
2
|
+
import { basename, delimiter, dirname, extname, format, isAbsolute, join, normalize, normalizeString, parse, relative, resolve, sep, toNamespacedPath } from 'pathe'
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Returns the path to the `actions` directory. The actions directory
|
|
6
|
+
* contains the core Stacks' actions. An action
|
|
7
|
+
*
|
|
8
|
+
* @param path - relative path to the file or directory
|
|
9
|
+
* @returns string - absolute path to the file or directory
|
|
10
|
+
* @example
|
|
11
|
+
* ```ts
|
|
12
|
+
* import { buildPath } from '@stacks/paths'
|
|
13
|
+
*
|
|
14
|
+
* buildPath('functions.stx')
|
|
15
|
+
* buildPath('any-path.ts')
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export function actionsPath(path?: string) {
|
|
19
|
+
return corePath(`actions/src/${path || ''}`)
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function relativeActionsPath(path?: string) {
|
|
23
|
+
return relative(projectPath(), actionsPath(path))
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Returns the path to the `ai` directory. The AI directory
|
|
28
|
+
* contains the core Stacks' AI logic which currently
|
|
29
|
+
* is a wrapper of the OpenAI API.
|
|
30
|
+
*
|
|
31
|
+
* @param path - relative path to the file or directory
|
|
32
|
+
* @returns string - absolute path to the file or directory
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* ```ts
|
|
36
|
+
* import { aiPath } from '@stacks/paths'
|
|
37
|
+
*
|
|
38
|
+
* console.log('path is', aiPath())
|
|
39
|
+
* // path is /Users/chrisbreuer/Code/stacks/storage/stacks/src/ai
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
export function aiPath(path?: string) {
|
|
43
|
+
return corePath(`ai/${path || ''}`)
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export function assetsPath(path?: string) {
|
|
47
|
+
return resourcesPath(`assets/${path || ''}`)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export function aliasPath() {
|
|
51
|
+
return corePath('alias/src/index.ts')
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export function runtimePath(path?: string) {
|
|
55
|
+
return frameworkPath(`buddy/${path || ''}`)
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function analyticsPath(path?: string) {
|
|
59
|
+
return corePath(`analytics/${path || ''}`)
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function arraysPath(path?: string) {
|
|
63
|
+
return corePath(`arrays/${path || ''}`)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export function appPath(path?: string) {
|
|
67
|
+
return projectPath(`app/${path || ''}`)
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export function authPath(path?: string) {
|
|
71
|
+
return corePath(`auth/${path || ''}`)
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Returns the path to the build directory. The build directory
|
|
76
|
+
* contains Stacks' build engine & its tooling integrations.
|
|
77
|
+
*
|
|
78
|
+
* @param path string - relative path to the file or directory
|
|
79
|
+
* @returns string - absolute path to the file or directory
|
|
80
|
+
* @example
|
|
81
|
+
* ```ts
|
|
82
|
+
* buildPath('functions.stx')
|
|
83
|
+
* buildPath('components.ts')
|
|
84
|
+
* ```
|
|
85
|
+
*/
|
|
86
|
+
export function buildPath(path?: string) {
|
|
87
|
+
return corePath(`build/${path || ''}`)
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export function buildEnginePath(path?: string) {
|
|
91
|
+
return buildPath(`${path || ''}`)
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export function libsPath(path?: string) {
|
|
95
|
+
return frameworkPath(`libs/${path || ''}`)
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export function libsEntriesPath(path?: string) {
|
|
99
|
+
return libsPath(`entries/${path || ''}`)
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export function cachePath(path?: string) {
|
|
103
|
+
return corePath(`cache/${path || ''}`)
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export function chatPath(path?: string) {
|
|
107
|
+
return corePath(`chat/${path || ''}`)
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export function cliPath(path?: string) {
|
|
111
|
+
return corePath(`cli/${path || ''}`)
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export function cloudPath(path?: string) {
|
|
115
|
+
return corePath(`cloud/${path || ''}`)
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export function collectionsPath(path?: string) {
|
|
119
|
+
return corePath(`collections/${path || ''}`)
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export function componentsPath(path?: string) {
|
|
123
|
+
return resourcesPath(`components/${path || ''}`)
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export function configPath(path?: string) {
|
|
127
|
+
return corePath(`config/${path || ''}`)
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export function corePath(path?: string) {
|
|
131
|
+
return frameworkPath(`core/src/${path || ''}`)
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export function customElementsDataPath() {
|
|
135
|
+
return corePath('custom-elements.json')
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export function databasePath(path?: string) {
|
|
139
|
+
return corePath(`database/${path || ''}`)
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export function datetimePath(path?: string) {
|
|
143
|
+
return corePath(`datetime/${path || ''}`)
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export function developmentPath(path?: string) {
|
|
147
|
+
return corePath(`development/${path || ''}`)
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export function desktopPath(path?: string) {
|
|
151
|
+
return corePath(`desktop/${path || ''}`)
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export function docsPath(path?: string) {
|
|
155
|
+
return corePath(`docs/${path || ''}`)
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export function dnsPath(path?: string) {
|
|
159
|
+
return corePath(`domains/${path || ''}`)
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export function emailPath(path?: string) {
|
|
163
|
+
return notificationsPath(`email/${path || ''}`)
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export function enumsPath(path?: string) {
|
|
167
|
+
return corePath(`enums/${path || ''}`)
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export function errorHandlingPath(path?: string) {
|
|
171
|
+
return corePath(`error-handling/${path || ''}`)
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export function eventsPath(path?: string) {
|
|
175
|
+
return corePath(`events/${path || ''}`)
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export function coreEnvPath(path?: string) {
|
|
179
|
+
return corePath(`env/${path || ''}`)
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export function examplesPath(type: 'vue-components' | 'web-components') {
|
|
183
|
+
return frameworkPath(`examples/${type || ''}`)
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export function fakerPath(path?: string) {
|
|
187
|
+
return corePath(`faker/${path || ''}`)
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export function frameworkPath(path?: string) {
|
|
191
|
+
return projectStoragePath(`framework/${path || ''}`)
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export function healthPath(path?: string) {
|
|
195
|
+
return corePath(`health/${path || ''}`)
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export function functionsPath(path?: string) {
|
|
199
|
+
return resourcesPath(`functions/${path || ''}`)
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export function gitPath(path?: string) {
|
|
203
|
+
return corePath(`git/${path || ''}`)
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
export function langPath(path?: string) {
|
|
207
|
+
return projectPath(`lang/${path || ''}`)
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
export type LibraryType = 'vue-components' | 'web-components' | 'functions'
|
|
211
|
+
export function libraryEntryPath(type: LibraryType) {
|
|
212
|
+
return libsEntriesPath(`${type}.ts`)
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export function lintPath(path?: string) {
|
|
216
|
+
return corePath(`lint/${path || ''}`)
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
export function eslintPath(path?: string) {
|
|
220
|
+
return lintPath(`eslint/${path || ''}`)
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export function loggingPath(path?: string) {
|
|
224
|
+
return corePath(`logging/${path || ''}`)
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export function logsPath(path?: string) {
|
|
228
|
+
return projectStoragePath(`logs/${path || ''}`)
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export function modelsPath(path?: string) {
|
|
232
|
+
return appPath(`models/${path || ''}`)
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export function modulesPath(path?: string) {
|
|
236
|
+
return resourcesPath(`modules/${path || ''}`)
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
export function notificationsPath(path?: string) {
|
|
240
|
+
return corePath(`notifications/${path || ''}`)
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export function ormPath(path?: string) {
|
|
244
|
+
return corePath(`orm/${path || ''}`)
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
export function objectsPath(path?: string) {
|
|
248
|
+
return corePath(`objects/${path || ''}`)
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export function onboardingPath(path?: string) {
|
|
252
|
+
return projectPath(`${path || 'views/dashboard/onboarding'}`)
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
export function packageJsonPath(type: 'vue-components' | 'web-components' | 'functions') {
|
|
256
|
+
if (type === 'vue-components')
|
|
257
|
+
return frameworkPath('libs/components/vue/package.json')
|
|
258
|
+
|
|
259
|
+
if (type === 'web-components')
|
|
260
|
+
return frameworkPath('libs/components/web/package.json')
|
|
261
|
+
|
|
262
|
+
return frameworkPath(`libs/${type}/package.json`)
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
export function viewsPath(path?: string) {
|
|
266
|
+
return resourcesPath(`views/${path || ''}`)
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
export function pathPath(path?: string) {
|
|
270
|
+
return corePath(`path/${path || ''}`)
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export function paymentsPath(path?: string) {
|
|
274
|
+
return corePath(`payments/${path || ''}`)
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export function projectPath(filePath = '') {
|
|
278
|
+
let path = process.cwd()
|
|
279
|
+
|
|
280
|
+
// need to also account for this being called in the ./storage/framework folder
|
|
281
|
+
while (path.includes('storage'))
|
|
282
|
+
path = resolve(path, '..')
|
|
283
|
+
|
|
284
|
+
return resolve(path, filePath)
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export function projectConfigPath(path?: string) {
|
|
288
|
+
return projectPath(`config/${path || ''}`)
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
export function projectStoragePath(path?: string): string {
|
|
292
|
+
return projectPath(`storage/${path || ''}`)
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
export function publicPath(path?: string) {
|
|
296
|
+
return projectPath(`public/${path || ''}`)
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
export function pushPath(path?: string) {
|
|
300
|
+
return notificationsPath(`push/${path || ''}`)
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
export function queryBuilderPath(path?: string) {
|
|
304
|
+
return corePath(`query-builder/${path || ''}`)
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
export function queuePath(path?: string) {
|
|
308
|
+
return corePath(`queue/${path || ''}`)
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export function realtimePath(path?: string) {
|
|
312
|
+
return corePath(`realtime/${path || ''}`)
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
export function resourcesPath(path?: string) {
|
|
316
|
+
return projectPath(`resources/${path || ''}`)
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
export function replPath(path?: string) {
|
|
320
|
+
return corePath(`repl/${path || ''}`)
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export function routerPath(path?: string) {
|
|
324
|
+
return corePath(`router/${path || ''}`)
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
export function routesPath(path?: string) {
|
|
328
|
+
return projectPath(`routes/${path || ''}`)
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
export function searchEnginePath(path?: string) {
|
|
332
|
+
return corePath(`search-engine/${path || ''}`)
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
export function settingsPath(path?: string) {
|
|
336
|
+
return projectPath(`${path || 'views/dashboard/settings'}`)
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
export function scriptsPath(path?: string) {
|
|
340
|
+
return frameworkPath(`core/scripts/${path || ''}`)
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
export function schedulerPath(path?: string) {
|
|
344
|
+
return corePath(`scheduler/${path || ''}`)
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
export function signalsPath(path?: string) {
|
|
348
|
+
return corePath(`signals/${path || ''}`)
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
export function slugPath(path?: string) {
|
|
352
|
+
return corePath(`slug/${path || ''}`)
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
export function smsPath(path?: string) {
|
|
356
|
+
return notificationsPath(`sms/${path || ''}`)
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
export function storagePath(path?: string) {
|
|
360
|
+
return corePath(`storage/${path || ''}`)
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export function storesPath(path?: string) {
|
|
364
|
+
return resourcesPath(`stores/${path || ''}`)
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
export function securityPath(path?: string) {
|
|
368
|
+
return corePath(`security/${path || ''}`)
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
export function serverPath(path?: string) {
|
|
372
|
+
return corePath(`server/${path || ''}`)
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
export function serverlessPath(path?: string) {
|
|
376
|
+
return corePath(`serverless/${path || ''}`)
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
export function stacksPath(path?: string) {
|
|
380
|
+
return frameworkPath(`src/${path || ''}`)
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
export function stringsPath(path?: string) {
|
|
384
|
+
return corePath(`strings/${path || ''}`)
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
export function testingPath(path?: string) {
|
|
388
|
+
return corePath(`testing/${path || ''}`)
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
export function tinkerPath(path?: string) {
|
|
392
|
+
return corePath(`tinker/${path || ''}`)
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
export function testsPath(path?: string) {
|
|
396
|
+
return frameworkPath(`tests/${path || ''}`)
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
export function typesPath(path?: string) {
|
|
400
|
+
return corePath(`types/${path || ''}`)
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
export function uiPath(path?: string) {
|
|
404
|
+
return corePath(`ui/${path || ''}`)
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export function utilsPath(path?: string) {
|
|
408
|
+
return corePath(`utils/${path || ''}`)
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
export function validationPath(path?: string) {
|
|
412
|
+
return corePath(`validation/${path || ''}`)
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
export function vitePath(path?: string) {
|
|
416
|
+
return corePath(`vite/${path || ''}`)
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
export function xRayPath(path?: string) {
|
|
420
|
+
return frameworkPath(`stacks/x-ray/${path || ''}`)
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
export const path = {
|
|
424
|
+
actionsPath,
|
|
425
|
+
aiPath,
|
|
426
|
+
assetsPath,
|
|
427
|
+
relativeActionsPath,
|
|
428
|
+
aliasPath,
|
|
429
|
+
analyticsPath,
|
|
430
|
+
arraysPath,
|
|
431
|
+
appPath,
|
|
432
|
+
authPath,
|
|
433
|
+
buildEnginePath,
|
|
434
|
+
libsEntriesPath,
|
|
435
|
+
buildPath,
|
|
436
|
+
cachePath,
|
|
437
|
+
chatPath,
|
|
438
|
+
cliPath,
|
|
439
|
+
cloudPath,
|
|
440
|
+
collectionsPath,
|
|
441
|
+
componentsPath,
|
|
442
|
+
configPath,
|
|
443
|
+
projectConfigPath,
|
|
444
|
+
corePath,
|
|
445
|
+
customElementsDataPath,
|
|
446
|
+
databasePath,
|
|
447
|
+
datetimePath,
|
|
448
|
+
developmentPath,
|
|
449
|
+
desktopPath,
|
|
450
|
+
docsPath,
|
|
451
|
+
dnsPath,
|
|
452
|
+
emailPath,
|
|
453
|
+
enumsPath,
|
|
454
|
+
errorHandlingPath,
|
|
455
|
+
eventsPath,
|
|
456
|
+
coreEnvPath,
|
|
457
|
+
healthPath,
|
|
458
|
+
examplesPath,
|
|
459
|
+
fakerPath,
|
|
460
|
+
frameworkPath,
|
|
461
|
+
storagePath,
|
|
462
|
+
functionsPath,
|
|
463
|
+
gitPath,
|
|
464
|
+
langPath,
|
|
465
|
+
libsPath,
|
|
466
|
+
libraryEntryPath,
|
|
467
|
+
lintPath,
|
|
468
|
+
loggingPath,
|
|
469
|
+
modulesPath,
|
|
470
|
+
ormPath,
|
|
471
|
+
objectsPath,
|
|
472
|
+
onboardingPath,
|
|
473
|
+
notificationsPath,
|
|
474
|
+
packageJsonPath,
|
|
475
|
+
viewsPath,
|
|
476
|
+
pathPath,
|
|
477
|
+
paymentsPath,
|
|
478
|
+
projectPath,
|
|
479
|
+
projectStoragePath,
|
|
480
|
+
publicPath,
|
|
481
|
+
pushPath,
|
|
482
|
+
queryBuilderPath,
|
|
483
|
+
queuePath,
|
|
484
|
+
realtimePath,
|
|
485
|
+
resourcesPath,
|
|
486
|
+
replPath,
|
|
487
|
+
routerPath,
|
|
488
|
+
routesPath,
|
|
489
|
+
searchEnginePath,
|
|
490
|
+
schedulerPath,
|
|
491
|
+
settingsPath,
|
|
492
|
+
smsPath,
|
|
493
|
+
signalsPath,
|
|
494
|
+
slugPath,
|
|
495
|
+
scriptsPath,
|
|
496
|
+
securityPath,
|
|
497
|
+
serverPath,
|
|
498
|
+
serverlessPath,
|
|
499
|
+
stacksPath,
|
|
500
|
+
stringsPath,
|
|
501
|
+
storesPath,
|
|
502
|
+
testingPath,
|
|
503
|
+
testsPath,
|
|
504
|
+
tinkerPath,
|
|
505
|
+
typesPath,
|
|
506
|
+
uiPath,
|
|
507
|
+
utilsPath,
|
|
508
|
+
validationPath,
|
|
509
|
+
vitePath,
|
|
510
|
+
xRayPath,
|
|
511
|
+
|
|
512
|
+
// path utils
|
|
513
|
+
basename,
|
|
514
|
+
delimiter,
|
|
515
|
+
dirname,
|
|
516
|
+
extname,
|
|
517
|
+
format,
|
|
518
|
+
isAbsolute,
|
|
519
|
+
join,
|
|
520
|
+
normalize,
|
|
521
|
+
normalizeString,
|
|
522
|
+
parse,
|
|
523
|
+
relative,
|
|
524
|
+
resolve,
|
|
525
|
+
sep,
|
|
526
|
+
toNamespacedPath,
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
export { basename, delimiter, dirname, extname, format, isAbsolute, join, normalize, normalizeString, parse, relative, resolve, sep, toNamespacedPath }
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Stacks Path
|
|
2
|
+
|
|
3
|
+
Easily work with file paths.
|
|
4
|
+
|
|
5
|
+
## ☘️ Features
|
|
6
|
+
|
|
7
|
+
- Ensures paths are normalized across all Operating Systems
|
|
8
|
+
- Easily access the path's basename, dirname, extension, filename, and more
|
|
9
|
+
- Drop-in Node.js module replacement
|
|
10
|
+
- Written in modern ESM/TypeScript
|
|
11
|
+
|
|
12
|
+
## 🤖 Usage
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
bun install -d @stacksjs/path
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Now, you can easily access it in your project:
|
|
19
|
+
|
|
20
|
+
```js
|
|
21
|
+
import { filename, normalizeAliases, resolve, resolveAlias } from '@stacksjs/path'
|
|
22
|
+
|
|
23
|
+
// and more...
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
To view the full documentation, please visit [https://stacksjs.org/path](https://stacksjs.org/path).
|
|
27
|
+
|
|
28
|
+
## 🧪 Testing
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
bun test
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## 📈 Changelog
|
|
35
|
+
|
|
36
|
+
Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
|
|
37
|
+
|
|
38
|
+
## 🚜 Contributing
|
|
39
|
+
|
|
40
|
+
Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
|
|
41
|
+
|
|
42
|
+
## 🏝 Community
|
|
43
|
+
|
|
44
|
+
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
|
|
45
|
+
|
|
46
|
+
[Discussions on GitHub](https://github.com/stacksjs/stacks/discussions)
|
|
47
|
+
|
|
48
|
+
For casual chit-chat with others using this package:
|
|
49
|
+
|
|
50
|
+
[Join the Stacks Discord Server](https://discord.gg/stacksjs)
|
|
51
|
+
|
|
52
|
+
## 🙏🏼 Credits
|
|
53
|
+
|
|
54
|
+
Many thanks to the following core technologies & people who have contributed to this package:
|
|
55
|
+
|
|
56
|
+
- [pathe](https://github.com/unjs/pathe)
|
|
57
|
+
- [Chris Breuer](https://github.com/chrisbbreuer)
|
|
58
|
+
- [All Contributors](../../contributors)
|
|
59
|
+
|
|
60
|
+
## 📄 License
|
|
61
|
+
|
|
62
|
+
The MIT License (MIT). Please see [LICENSE](https://github.com/stacksjs/stacks/tree/main/LICENSE.md) for more information.
|
|
63
|
+
|
|
64
|
+
Made with 💙
|