package-installer-cli 1.0.0
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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +28 -0
- data/LICENSE +21 -0
- data/README.md +154 -0
- data/dist/commands/add.js +736 -0
- data/dist/commands/analyze.js +596 -0
- data/dist/commands/cache.js +233 -0
- data/dist/commands/check.js +866 -0
- data/dist/commands/clean.js +217 -0
- data/dist/commands/clone.js +104 -0
- data/dist/commands/create.js +220 -0
- data/dist/commands/deploy.js +169 -0
- data/dist/commands/doctor.js +927 -0
- data/dist/commands/env.js +688 -0
- data/dist/commands/update.js +275 -0
- data/dist/commands/upgrade-cli.js +234 -0
- data/dist/deploy/auth0/auth0.js +1 -0
- data/dist/deploy/aws/aws.js +1 -0
- data/dist/deploy/capistrano/capistrano.js +1 -0
- data/dist/deploy/cloud-foundry/cloud-foundry.js +1 -0
- data/dist/deploy/cloudflare/cloudflare.js +1 -0
- data/dist/deploy/digitalocean/digitalocean.js +1 -0
- data/dist/deploy/docker-hub/docker-hub.js +1 -0
- data/dist/deploy/firebase/firebase.js +1 -0
- data/dist/deploy/fly.io/fly.js +1 -0
- data/dist/deploy/github-pages/gh-pages.js +1 -0
- data/dist/deploy/google-cloud/google-cloud.js +1 -0
- data/dist/deploy/goreleaser/goreleaser.js +1 -0
- data/dist/deploy/heroku/heroku.js +1 -0
- data/dist/deploy/netlify/netlify.js +1 -0
- data/dist/deploy/railway/railway.js +1 -0
- data/dist/deploy/serverless/serverless.js +1 -0
- data/dist/deploy/vercel/vercel.js +1 -0
- data/dist/index.js +367 -0
- data/dist/utils/banner.js +74 -0
- data/dist/utils/cacheManager.js +198 -0
- data/dist/utils/cacheUtils.js +718 -0
- data/dist/utils/cloneUtils.js +267 -0
- data/dist/utils/dashboard.js +870 -0
- data/dist/utils/dependencyInstaller.js +532 -0
- data/dist/utils/featureInstaller.js +512 -0
- data/dist/utils/historyManager.js +446 -0
- data/dist/utils/languageConfig.js +1328 -0
- data/dist/utils/prompts.js +361 -0
- data/dist/utils/templateCreator.js +439 -0
- data/dist/utils/templateResolver.js +155 -0
- data/dist/utils/types.js +5 -0
- data/dist/utils/ui.js +421 -0
- data/dist/utils/userCache.js +241 -0
- data/dist/utils/utils.js +527 -0
- data/exe/package-installer +5 -0
- data/exe/pi +5 -0
- data/features/ai/claude/expressjs/javascript/controllers/claudeController.js +11 -0
- data/features/ai/claude/expressjs/javascript/index.js +3 -0
- data/features/ai/claude/expressjs/javascript/package.json +5 -0
- data/features/ai/claude/expressjs/javascript/routes/claudeRoutes.js +7 -0
- data/features/ai/claude/expressjs/javascript/utils/claude.js +12 -0
- data/features/ai/claude/expressjs/typescript/controllers/claudeController.ts +12 -0
- data/features/ai/claude/expressjs/typescript/index.ts +3 -0
- data/features/ai/claude/expressjs/typescript/package.json +5 -0
- data/features/ai/claude/expressjs/typescript/routes/claudeRoutes.ts +7 -0
- data/features/ai/claude/expressjs/typescript/utils/claude.ts +12 -0
- data/features/ai/claude/nestjs/typescript/package.json +5 -0
- data/features/ai/claude/nestjs/typescript/src/claude/claude.controller.ts +12 -0
- data/features/ai/claude/nestjs/typescript/src/claude/claude.module.ts +9 -0
- data/features/ai/claude/nestjs/typescript/src/claude/claude.service.ts +16 -0
- data/features/ai/claude/nextjs/javascript/app/api/claude/route.js +11 -0
- data/features/ai/claude/nextjs/javascript/lib/claude.js +12 -0
- data/features/ai/claude/nextjs/javascript/package.json +5 -0
- data/features/ai/claude/nextjs/typescript/app/api/claude/route.ts +11 -0
- data/features/ai/claude/nextjs/typescript/lib/claude.ts +12 -0
- data/features/ai/claude/nextjs/typescript/package.json +5 -0
- data/features/ai/claude/remixjs/typescript/app/routes/api/claude.ts +12 -0
- data/features/ai/claude/remixjs/typescript/app/utils/claude.ts +12 -0
- data/features/ai/claude/remixjs/typescript/package.json +5 -0
- data/features/ai/gemini/expressjs/javascript/controllers/geminiController.js +11 -0
- data/features/ai/gemini/expressjs/javascript/index.js +3 -0
- data/features/ai/gemini/expressjs/javascript/package.json +6 -0
- data/features/ai/gemini/expressjs/javascript/routes/geminiRoutes.js +7 -0
- data/features/ai/gemini/expressjs/javascript/utils/gemini.js +6 -0
- data/features/ai/gemini/expressjs/typescript/controllers/geminiController.ts +12 -0
- data/features/ai/gemini/expressjs/typescript/index.ts +3 -0
- data/features/ai/gemini/expressjs/typescript/package.json +6 -0
- data/features/ai/gemini/expressjs/typescript/routes/geminiRoutes.ts +7 -0
- data/features/ai/gemini/expressjs/typescript/utils/gemini.ts +6 -0
- data/features/ai/gemini/nestjs/typescript/package.json +6 -0
- data/features/ai/gemini/nestjs/typescript/src/gemini/gemini.controller.ts +12 -0
- data/features/ai/gemini/nestjs/typescript/src/gemini/gemini.module.ts +9 -0
- data/features/ai/gemini/nestjs/typescript/src/gemini/gemini.service.ts +10 -0
- data/features/ai/gemini/nextjs/javascript/app/api/generate/route.js +11 -0
- data/features/ai/gemini/nextjs/javascript/lib/gemini.js +6 -0
- data/features/ai/gemini/nextjs/javascript/package.json +6 -0
- data/features/ai/gemini/nextjs/typescript/app/api/generate/route.ts +11 -0
- data/features/ai/gemini/nextjs/typescript/lib/gemini.ts +6 -0
- data/features/ai/gemini/nextjs/typescript/package.json +6 -0
- data/features/ai/gemini/remixjs/typescript/app/routes/api/gemini.ts +12 -0
- data/features/ai/gemini/remixjs/typescript/app/utils/gemini.ts +6 -0
- data/features/ai/gemini/remixjs/typescript/package.json +6 -0
- data/features/ai/grok/expressjs/javascript/controllers/grokController.js +11 -0
- data/features/ai/grok/expressjs/javascript/index.js +3 -0
- data/features/ai/grok/expressjs/javascript/package.json +6 -0
- data/features/ai/grok/expressjs/javascript/routes/grokRoutes.js +7 -0
- data/features/ai/grok/expressjs/javascript/utils/grok.js +6 -0
- data/features/ai/grok/expressjs/typescript/controllers/grokController.ts +12 -0
- data/features/ai/grok/expressjs/typescript/index.ts +3 -0
- data/features/ai/grok/expressjs/typescript/package.json +6 -0
- data/features/ai/grok/expressjs/typescript/routes/grokRoutes.ts +7 -0
- data/features/ai/grok/expressjs/typescript/utils/grok.ts +6 -0
- data/features/ai/grok/nestjs/typescript/package.json +6 -0
- data/features/ai/grok/nestjs/typescript/src/grok/grok.controller.ts +12 -0
- data/features/ai/grok/nestjs/typescript/src/grok/grok.module.ts +9 -0
- data/features/ai/grok/nestjs/typescript/src/grok/grok.service.ts +10 -0
- data/features/ai/grok/nextjs/javascript/app/api/grok/route.js +11 -0
- data/features/ai/grok/nextjs/javascript/lib/grok.js +6 -0
- data/features/ai/grok/nextjs/javascript/package.json +6 -0
- data/features/ai/grok/nextjs/typescript/app/api/grok/route.ts +11 -0
- data/features/ai/grok/nextjs/typescript/lib/grok.ts +6 -0
- data/features/ai/grok/nextjs/typescript/package.json +6 -0
- data/features/ai/grok/remixjs/typescript/app/routes/api/grok.ts +12 -0
- data/features/ai/grok/remixjs/typescript/app/utils/grok.ts +6 -0
- data/features/ai/grok/remixjs/typescript/package.json +6 -0
- data/features/ai/open-router/expressjs/javascript/controllers/openrouterController.js +11 -0
- data/features/ai/open-router/expressjs/javascript/index.js +3 -0
- data/features/ai/open-router/expressjs/javascript/package.json +6 -0
- data/features/ai/open-router/expressjs/javascript/routes/openRouterRoutes.js +7 -0
- data/features/ai/open-router/expressjs/javascript/utils/openrouter.js +12 -0
- data/features/ai/open-router/expressjs/typescript/controllers/openrouterController.ts +12 -0
- data/features/ai/open-router/expressjs/typescript/index.ts +3 -0
- data/features/ai/open-router/expressjs/typescript/package.json +6 -0
- data/features/ai/open-router/expressjs/typescript/routes/openRouterRoutes.ts +7 -0
- data/features/ai/open-router/expressjs/typescript/utils/openrouter.ts +12 -0
- data/features/ai/open-router/nestjs/typescript/package.json +6 -0
- data/features/ai/open-router/nestjs/typescript/src/openrouter/openrouter.controller.ts +13 -0
- data/features/ai/open-router/nestjs/typescript/src/openrouter/openrouter.module.ts +9 -0
- data/features/ai/open-router/nestjs/typescript/src/openrouter/openrouter.service.ts +16 -0
- data/features/ai/open-router/nextjs/javascript/app/api/openrouter/route.js +10 -0
- data/features/ai/open-router/nextjs/javascript/lib/openrouter.js +11 -0
- data/features/ai/open-router/nextjs/javascript/package.json +6 -0
- data/features/ai/open-router/nextjs/typescript/app/api/openrouter/route.ts +10 -0
- data/features/ai/open-router/nextjs/typescript/lib/openrouter.ts +11 -0
- data/features/ai/open-router/nextjs/typescript/package.json +6 -0
- data/features/ai/open-router/remixjs/typescript/app/routes/api/openrouter.ts +12 -0
- data/features/ai/open-router/remixjs/typescript/app/utils/openrouter.ts +12 -0
- data/features/ai/open-router/remixjs/typescript/package.json +6 -0
- data/features/ai/openai/expressjs/javascript/controllers/openaiController.js +11 -0
- data/features/ai/openai/expressjs/javascript/index.js +3 -0
- data/features/ai/openai/expressjs/javascript/package.json +5 -0
- data/features/ai/openai/expressjs/javascript/routes/openAiRoutes.js +7 -0
- data/features/ai/openai/expressjs/javascript/utils/openai.js +11 -0
- data/features/ai/openai/expressjs/typescript/controllers/openaiController.ts +12 -0
- data/features/ai/openai/expressjs/typescript/index.ts +3 -0
- data/features/ai/openai/expressjs/typescript/package.json +5 -0
- data/features/ai/openai/expressjs/typescript/routes/openAiRoutes.ts +7 -0
- data/features/ai/openai/expressjs/typescript/utils/openai.ts +11 -0
- data/features/ai/openai/nestjs/typescript/package.json +5 -0
- data/features/ai/openai/nestjs/typescript/src/openai/openai.controller.ts +12 -0
- data/features/ai/openai/nestjs/typescript/src/openai/openai.module.ts +9 -0
- data/features/ai/openai/nestjs/typescript/src/openai/openai.service.ts +15 -0
- data/features/ai/openai/nextjs/javascript/app/api/openai/route.js +11 -0
- data/features/ai/openai/nextjs/javascript/lib/openai.js +11 -0
- data/features/ai/openai/nextjs/javascript/package.json +5 -0
- data/features/ai/openai/nextjs/typescript/app/api/openai/route.ts +11 -0
- data/features/ai/openai/nextjs/typescript/lib/openai.ts +11 -0
- data/features/ai/openai/nextjs/typescript/package.json +5 -0
- data/features/ai/openai/remixjs/typescript/app/routes/api/openai.ts +12 -0
- data/features/ai/openai/remixjs/typescript/app/utils/openai.ts +11 -0
- data/features/ai/openai/remixjs/typescript/package.json +5 -0
- data/features/auth/auth0/angularjs/typescript/package.json +5 -0
- data/features/auth/auth0/angularjs/typescript/src/app/login-button.ts +15 -0
- data/features/auth/auth0/angularjs/typescript/src/app/logout-button.ts +27 -0
- data/features/auth/auth0/angularjs/typescript/src/app/user-profile.ts +15 -0
- data/features/auth/auth0/angularjs/typescript/src/main.ts +15 -0
- data/features/auth/auth0/expressjs/javascript/index.js +27 -0
- data/features/auth/auth0/expressjs/javascript/package.json +5 -0
- data/features/auth/auth0/expressjs/typescript/index.ts +27 -0
- data/features/auth/auth0/expressjs/typescript/package.json +5 -0
- data/features/auth/auth0/nextjs/javascript/app/page.jsx +33 -0
- data/features/auth/auth0/nextjs/javascript/lib/auth0.js +3 -0
- data/features/auth/auth0/nextjs/javascript/middleware.js +17 -0
- data/features/auth/auth0/nextjs/javascript/package.json +5 -0
- data/features/auth/auth0/nextjs/typescript/app/page.tsx +33 -0
- data/features/auth/auth0/nextjs/typescript/lib/auth0.ts +3 -0
- data/features/auth/auth0/nextjs/typescript/middleware.ts +18 -0
- data/features/auth/auth0/nextjs/typescript/package.json +5 -0
- data/features/auth/auth0/vuejs/javascript/package.json +5 -0
- data/features/auth/auth0/vuejs/javascript/src/components/LoginButton.vue +23 -0
- data/features/auth/auth0/vuejs/javascript/src/components/LogoutButton.vue +27 -0
- data/features/auth/auth0/vuejs/javascript/src/components/UserProfile.vue +67 -0
- data/features/auth/auth0/vuejs/javascript/src/components/login.vue +30 -0
- data/features/auth/auth0/vuejs/javascript/src/components/logout.vue +38 -0
- data/features/auth/auth0/vuejs/javascript/src/components/profile.vue +43 -0
- data/features/auth/auth0/vuejs/javascript/src/main.js +22 -0
- data/features/auth/auth0/vuejs/typescript/main.ts +0 -0
- data/features/auth/auth0/vuejs/typescript/package.json +10 -0
- data/features/auth/auth0/vuejs/typescript/src/components/LoginButton.vue +15 -0
- data/features/auth/auth0/vuejs/typescript/src/components/LogoutButton.vue +19 -0
- data/features/auth/auth0/vuejs/typescript/src/components/UserProfile.vue +53 -0
- data/features/auth/auth0/vuejs/typescript/src/components/login.vue +15 -0
- data/features/auth/auth0/vuejs/typescript/src/components/logout.vue +19 -0
- data/features/auth/auth0/vuejs/typescript/src/components/profile.vue +20 -0
- data/features/auth/auth0/vuejs/typescript/src/main.ts +22 -0
- data/features/auth/clerk/expressjs/javascript/index.js +13 -0
- data/features/auth/clerk/expressjs/javascript/package.json +8 -0
- data/features/auth/clerk/expressjs/typescript/index.ts +13 -0
- data/features/auth/clerk/expressjs/typescript/package.json +11 -0
- data/features/auth/clerk/expressjs/typescript/types/global.d.ts +1 -0
- data/features/auth/clerk/nextjs/javascript/app/layout.js +50 -0
- data/features/auth/clerk/nextjs/javascript/middleware.js +12 -0
- data/features/auth/clerk/nextjs/javascript/package.json +8 -0
- data/features/auth/clerk/nextjs/typescript/app/layout.tsx +55 -0
- data/features/auth/clerk/nextjs/typescript/middleware.ts +12 -0
- data/features/auth/clerk/nextjs/typescript/package.json +12 -0
- data/features/auth/clerk/reactjs/javascript/package.json +8 -0
- data/features/auth/clerk/reactjs/javascript/src/App.jsx +14 -0
- data/features/auth/clerk/reactjs/javascript/src/main.jsx +20 -0
- data/features/auth/clerk/reactjs/typescript/package.json +8 -0
- data/features/auth/clerk/reactjs/typescript/src/App.tsx +14 -0
- data/features/auth/clerk/reactjs/typescript/src/main.tsx +20 -0
- data/features/auth/clerk/remixjs/typescript/app/root.tsx +37 -0
- data/features/auth/clerk/remixjs/typescript/app/routes/_index.tsx +46 -0
- data/features/auth/clerk/remixjs/typescript/package.json +9 -0
- data/features/auth/clerk/vuejs/javascript/package.json +8 -0
- data/features/auth/clerk/vuejs/javascript/src/App.vue +19 -0
- data/features/auth/clerk/vuejs/javascript/src/main.js +20 -0
- data/features/auth/clerk/vuejs/typescript/package.json +8 -0
- data/features/auth/clerk/vuejs/typescript/src/App.vue +19 -0
- data/features/auth/clerk/vuejs/typescript/src/main.ts +18 -0
- data/features/auth/next-auth/nextjs/javascript/app/api/auth/[...nextauth]/route.js +6 -0
- data/features/auth/next-auth/nextjs/javascript/app/layout.jsx +34 -0
- data/features/auth/next-auth/nextjs/javascript/lib/auth-provider.jsx +6 -0
- data/features/auth/next-auth/nextjs/javascript/lib/auth.js +124 -0
- data/features/auth/next-auth/nextjs/javascript/middleware.js +0 -0
- data/features/auth/next-auth/nextjs/javascript/package.json +0 -0
- data/features/auth/next-auth/nextjs/typescript/app/api/auth/[...nextauth]/route.ts +6 -0
- data/features/auth/next-auth/nextjs/typescript/app/layout.tsx +39 -0
- data/features/auth/next-auth/nextjs/typescript/lib/auth-provider.tsx +7 -0
- data/features/auth/next-auth/nextjs/typescript/lib/auth.ts +126 -0
- data/features/auth/next-auth/nextjs/typescript/middleware.ts +0 -0
- data/features/auth/next-auth/nextjs/typescript/package.json +5 -0
- data/features/aws/api-gateway/expressjs/javascript/package.json +5 -0
- data/features/aws/api-gateway/expressjs/typescript/package.json +5 -0
- data/features/aws/api-gateway/nestjs/typescript/package.json +5 -0
- data/features/aws/api-gateway/nextjs/javascript/package.json +5 -0
- data/features/aws/api-gateway/nextjs/typescript/package.json +5 -0
- data/features/aws/api-gateway/remixjs/typescript/package.json +5 -0
- data/features/aws/app-sync/expressjs/javascript/package.json +5 -0
- data/features/aws/app-sync/expressjs/typescript/package.json +5 -0
- data/features/aws/app-sync/nestjs/typescript/package.json +5 -0
- data/features/aws/app-sync/nextjs/javascript/package.json +5 -0
- data/features/aws/app-sync/nextjs/typescript/package.json +5 -0
- data/features/aws/app-sync/remixjs/typescript/package.json +5 -0
- data/features/aws/athena/expressjs/javascript/package.json +5 -0
- data/features/aws/athena/expressjs/typescript/package.json +5 -0
- data/features/aws/athena/nestjs/typescript/package.json +5 -0
- data/features/aws/athena/nextjs/javascript/package.json +5 -0
- data/features/aws/athena/nextjs/typescript/package.json +5 -0
- data/features/aws/athena/remixjs/typescript/package.json +5 -0
- data/features/aws/aurora/expressjs/javascript/package.json +6 -0
- data/features/aws/aurora/expressjs/typescript/package.json +6 -0
- data/features/aws/aurora/nestjs/typescript/package.json +6 -0
- data/features/aws/aurora/nextjs/javascript/package.json +6 -0
- data/features/aws/aurora/nextjs/typescript/package.json +6 -0
- data/features/aws/aurora/remixjs/typescript/package.json +6 -0
- data/features/aws/backup/expressjs/javascript/package.json +5 -0
- data/features/aws/backup/expressjs/typescript/package.json +5 -0
- data/features/aws/backup/nestjs/typescript/package.json +5 -0
- data/features/aws/backup/nextjs/javascript/package.json +5 -0
- data/features/aws/backup/nextjs/typescript/package.json +5 -0
- data/features/aws/backup/remixjs/typescript/package.json +5 -0
- data/features/aws/backup-gateway/expressjs/javascript/package.json +5 -0
- data/features/aws/backup-gateway/expressjs/typescript/package.json +5 -0
- data/features/aws/backup-gateway/nestjs/typescript/package.json +5 -0
- data/features/aws/backup-gateway/nextjs/javascript/package.json +5 -0
- data/features/aws/backup-gateway/nextjs/typescript/package.json +5 -0
- data/features/aws/backup-gateway/remixjs/typescript/package.json +5 -0
- data/features/aws/braket/expressjs/javascript/package.json +5 -0
- data/features/aws/braket/expressjs/typescript/package.json +5 -0
- data/features/aws/braket/nestjs/typescript/package.json +5 -0
- data/features/aws/braket/nextjs/javascript/package.json +5 -0
- data/features/aws/braket/nextjs/typescript/package.json +5 -0
- data/features/aws/braket/remixjs/typescript/package.json +5 -0
- data/features/aws/cloudformation/expressjs/javascript/package.json +5 -0
- data/features/aws/cloudformation/expressjs/typescript/package.json +5 -0
- data/features/aws/cloudformation/nestjs/typescript/package.json +5 -0
- data/features/aws/cloudformation/nextjs/javascript/package.json +5 -0
- data/features/aws/cloudformation/nextjs/typescript/package.json +5 -0
- data/features/aws/cloudformation/remixjs/typescript/package.json +5 -0
- data/features/aws/cloudfront/expressjs/javascript/controllers/awsCloudFrontController.js +30 -0
- data/features/aws/cloudfront/expressjs/javascript/index.js +3 -0
- data/features/aws/cloudfront/expressjs/javascript/package.json +5 -0
- data/features/aws/cloudfront/expressjs/javascript/routes/awsCloudFrontRoutes.js +10 -0
- data/features/aws/cloudfront/expressjs/javascript/utils/awsCloudFront.js +51 -0
- data/features/aws/cloudfront/expressjs/typescript/controllers/awsCloudFrontController.ts +31 -0
- data/features/aws/cloudfront/expressjs/typescript/index.ts +3 -0
- data/features/aws/cloudfront/expressjs/typescript/package.json +5 -0
- data/features/aws/cloudfront/expressjs/typescript/routes/awsCloudFrontRoutes.ts +10 -0
- data/features/aws/cloudfront/expressjs/typescript/utils/awsCloudFront.ts +56 -0
- data/features/aws/cloudfront/nestjs/typescript/package.json +5 -0
- data/features/aws/cloudfront/nestjs/typescript/src/aws-cloudfront/aws-cloudfront.controller.ts +22 -0
- data/features/aws/cloudfront/nestjs/typescript/src/aws-cloudfront/aws-cloudfront.service.ts +52 -0
- data/features/aws/cloudfront/nextjs/javascript/app/api/aws/cloudfront/route.js +19 -0
- data/features/aws/cloudfront/nextjs/javascript/lib/awsCloudFront.js +51 -0
- data/features/aws/cloudfront/nextjs/javascript/package.json +5 -0
- data/features/aws/cloudfront/nextjs/typescript/app/api/aws/cloudfront/route.ts +19 -0
- data/features/aws/cloudfront/nextjs/typescript/lib/awsCloudFront.ts +56 -0
- data/features/aws/cloudfront/nextjs/typescript/package.json +5 -0
- data/features/aws/cloudfront/remixjs/typescript/app/routes/api/aws-cloudfront.ts +60 -0
- data/features/aws/cloudfront/remixjs/typescript/package.json +5 -0
- data/features/aws/cloudtrail/expressjs/javascript/controllers/cloudtrailController.js +10 -0
- data/features/aws/cloudtrail/expressjs/javascript/index.js +4 -0
- data/features/aws/cloudtrail/expressjs/javascript/package.json +5 -0
- data/features/aws/cloudtrail/expressjs/javascript/routes/awsCloudTrailRoutes.js +7 -0
- data/features/aws/cloudtrail/expressjs/javascript/utils/aws-cloudtrail.js +13 -0
- data/features/aws/cloudtrail/expressjs/typescript/controllers/awsCloudTrailController.ts +10 -0
- data/features/aws/cloudtrail/expressjs/typescript/index.ts +4 -0
- data/features/aws/cloudtrail/expressjs/typescript/package.json +5 -0
- data/features/aws/cloudtrail/expressjs/typescript/routes/awsCloudTrailRoutes.ts +8 -0
- data/features/aws/cloudtrail/expressjs/typescript/utils/aws-cloudtrail.ts +13 -0
- data/features/aws/cloudtrail/nestjs/typescript/package.json +5 -0
- data/features/aws/cloudtrail/nestjs/typescript/src/cloudtrail/cloudtrail.controller.ts +12 -0
- data/features/aws/cloudtrail/nestjs/typescript/src/cloudtrail/cloudtrail.module.ts +9 -0
- data/features/aws/cloudtrail/nestjs/typescript/src/cloudtrail/cloudtrail.service.ts +11 -0
- data/features/aws/cloudtrail/nextjs/javascript/app/api/aws/cloudtrail/route.js +11 -0
- data/features/aws/cloudtrail/nextjs/javascript/lib/aws-cloudtrail.js +13 -0
- data/features/aws/cloudtrail/nextjs/javascript/package.json +5 -0
- data/features/aws/cloudtrail/nextjs/typescript/app/api/aws/cloudtrail/route.ts +11 -0
- data/features/aws/cloudtrail/nextjs/typescript/lib/aws-cloudtrail.ts +13 -0
- data/features/aws/cloudtrail/nextjs/typescript/package.json +5 -0
- data/features/aws/cloudtrail/remixjs/typescript/app/routes/api/aws-cloudtrail.ts +11 -0
- data/features/aws/cloudtrail/remixjs/typescript/app/utils/aws-cloudtrail.ts +13 -0
- data/features/aws/cloudtrail/remixjs/typescript/package.json +5 -0
- data/features/aws/cloudwatch/expressjs/javascript/controllers/awsCloudWatchController.js +10 -0
- data/features/aws/cloudwatch/expressjs/javascript/index.js +4 -0
- data/features/aws/cloudwatch/expressjs/javascript/package.json +5 -0
- data/features/aws/cloudwatch/expressjs/javascript/routes/awsCloudWatchRoutes.js +7 -0
- data/features/aws/cloudwatch/expressjs/javascript/utils/aws-cloudwatch.js +13 -0
- data/features/aws/cloudwatch/expressjs/typescript/controllers/awsCloudWatchController.ts +10 -0
- data/features/aws/cloudwatch/expressjs/typescript/index.ts +4 -0
- data/features/aws/cloudwatch/expressjs/typescript/package.json +5 -0
- data/features/aws/cloudwatch/expressjs/typescript/routes/awsCloudWatchRoutes.ts +7 -0
- data/features/aws/cloudwatch/expressjs/typescript/utils/aws-cloudwatch.ts +13 -0
- data/features/aws/cloudwatch/nestjs/typescript/package.json +5 -0
- data/features/aws/cloudwatch/nestjs/typescript/src/cloudwatch/aws-cloudwatch.controller.ts +12 -0
- data/features/aws/cloudwatch/nestjs/typescript/src/cloudwatch/aws-cloudwatch.module.ts +9 -0
- data/features/aws/cloudwatch/nestjs/typescript/src/cloudwatch/aws-cloudwatch.service.ts +17 -0
- data/features/aws/cloudwatch/nextjs/javascript/app/api/aws/cloudwatch/route.js +11 -0
- data/features/aws/cloudwatch/nextjs/javascript/lib/aws-cloudwatch.js +13 -0
- data/features/aws/cloudwatch/nextjs/javascript/package.json +5 -0
- data/features/aws/cloudwatch/nextjs/typescript/app/api/aws/cloudwatch/route.ts +11 -0
- data/features/aws/cloudwatch/nextjs/typescript/lib/aws-cloudwatch.ts +13 -0
- data/features/aws/cloudwatch/nextjs/typescript/package.json +5 -0
- data/features/aws/cloudwatch/remixjs/typescript/app/routes/api/aws-cloudwatch.ts +11 -0
- data/features/aws/cloudwatch/remixjs/typescript/app/utils/aws-cloudwatch.ts +13 -0
- data/features/aws/cloudwatch/remixjs/typescript/package.json +5 -0
- data/features/aws/codebuild/expressjs/javascript/controllers/codeBuildController.js +11 -0
- data/features/aws/codebuild/expressjs/javascript/index.js +4 -0
- data/features/aws/codebuild/expressjs/javascript/package.json +5 -0
- data/features/aws/codebuild/expressjs/javascript/routes/codeBuildRoutes.js +6 -0
- data/features/aws/codebuild/expressjs/javascript/utils/codeBuild.js +6 -0
- data/features/aws/codebuild/expressjs/typescript/controllers/codeBuildController.ts +13 -0
- data/features/aws/codebuild/expressjs/typescript/index.ts +4 -0
- data/features/aws/codebuild/expressjs/typescript/package.json +5 -0
- data/features/aws/codebuild/expressjs/typescript/routes/codeBuildRoutes.ts +6 -0
- data/features/aws/codebuild/expressjs/typescript/utils/codeBuild.ts +6 -0
- data/features/aws/codebuild/nestjs/typescript/package.json +5 -0
- data/features/aws/codebuild/nestjs/typescript/src/codebuild/codebuild.controller.ts +17 -0
- data/features/aws/codebuild/nestjs/typescript/src/codebuild/codebuild.service.ts +10 -0
- data/features/aws/codebuild/nextjs/javascript/app/api/aws/codebuild/route.ts +11 -0
- data/features/aws/codebuild/nextjs/javascript/lib/codeBuild.js +6 -0
- data/features/aws/codebuild/nextjs/javascript/package.json +5 -0
- data/features/aws/codebuild/nextjs/typescript/app/api/aws/codebuild/route.ts +17 -0
- data/features/aws/codebuild/nextjs/typescript/lib/codeBuild.ts +7 -0
- data/features/aws/codebuild/nextjs/typescript/package.json +5 -0
- data/features/aws/codebuild/remixjs/typescript/app/routes/api/codebuild.ts +11 -0
- data/features/aws/codebuild/remixjs/typescript/app/utils/codeBuild.ts +6 -0
- data/features/aws/codebuild/remixjs/typescript/package.json +5 -0
- data/features/aws/codecommit/expressjs/javascript/controllers/codeCommitController.js +38 -0
- data/features/aws/codecommit/expressjs/javascript/index.js +4 -0
- data/features/aws/codecommit/expressjs/javascript/package.json +5 -0
- data/features/aws/codecommit/expressjs/javascript/routes/codeCommitRoutes.js +10 -0
- data/features/aws/codecommit/expressjs/javascript/utils/codeCommit.js +25 -0
- data/features/aws/codecommit/expressjs/typescript/controllers/codeCommitController.ts +15 -0
- data/features/aws/codecommit/expressjs/typescript/index.ts +4 -0
- data/features/aws/codecommit/expressjs/typescript/package.json +5 -0
- data/features/aws/codecommit/expressjs/typescript/routes/codeCommitRoutes.ts +10 -0
- data/features/aws/codecommit/expressjs/typescript/utils/codeCommit.ts +7 -0
- data/features/aws/codecommit/nestjs/typescript/package.json +5 -0
- data/features/aws/codecommit/nestjs/typescript/src/codecommit/codecommit.controller.ts +11 -0
- data/features/aws/codecommit/nestjs/typescript/src/codecommit/codecommit.service.ts +11 -0
- data/features/aws/codecommit/nextjs/javascript/app/api/aws/codecommit/route.js +19 -0
- data/features/aws/codecommit/nextjs/javascript/lib/codeCommit.js +7 -0
- data/features/aws/codecommit/nextjs/javascript/package.json +5 -0
- data/features/aws/codecommit/nextjs/typescript/app/api/aws/codecommit/route.ts +19 -0
- data/features/aws/codecommit/nextjs/typescript/lib/codeCommit.ts +19 -0
- data/features/aws/codecommit/nextjs/typescript/package.json +5 -0
- data/features/aws/codecommit/remixjs/typescript/app/routes/api/aws-codecommit.ts +19 -0
- data/features/aws/codecommit/remixjs/typescript/app/utils/awsCodeCommit.ts +7 -0
- data/features/aws/codecommit/remixjs/typescript/package.json +5 -0
- data/features/aws/codedeploy/expressjs/javascript/controllers/codeDeployController.js +37 -0
- data/features/aws/codedeploy/expressjs/javascript/index.js +4 -0
- data/features/aws/codedeploy/expressjs/javascript/package.json +5 -0
- data/features/aws/codedeploy/expressjs/javascript/routes/codeDeployRoutes.js +10 -0
- data/features/aws/codedeploy/expressjs/javascript/utils/codeDeploy.js +19 -0
- data/features/aws/codedeploy/expressjs/typescript/controllers/codeDeployController.ts +6 -0
- data/features/aws/codedeploy/expressjs/typescript/index.ts +4 -0
- data/features/aws/codedeploy/expressjs/typescript/package.json +5 -0
- data/features/aws/codedeploy/expressjs/typescript/routes/codeDeployRoutes.ts +7 -0
- data/features/aws/codedeploy/expressjs/typescript/utils/codeDeploy.ts +6 -0
- data/features/aws/codedeploy/nestjs/typescript/package.json +5 -0
- data/features/aws/codedeploy/nestjs/typescript/src/codedeploy/codedeploy.controller.ts +28 -0
- data/features/aws/codedeploy/nestjs/typescript/src/codedeploy/codedeploy.module.ts +10 -0
- data/features/aws/codedeploy/nestjs/typescript/src/codedeploy/codedeploy.service.ts +35 -0
- data/features/aws/codedeploy/nextjs/javascript/app/api/aws/codedeploy/route.js +14 -0
- data/features/aws/codedeploy/nextjs/javascript/lib/codeDeploy.js +6 -0
- data/features/aws/codedeploy/nextjs/javascript/package.json +5 -0
- data/features/aws/codedeploy/nextjs/typescript/app/api/aws/codedeploy/route.ts +16 -0
- data/features/aws/codedeploy/nextjs/typescript/lib/codeDeploy.ts +6 -0
- data/features/aws/codedeploy/nextjs/typescript/package.json +5 -0
- data/features/aws/codedeploy/remixjs/typescript/app/routes/api/codedeploy.ts +16 -0
- data/features/aws/codedeploy/remixjs/typescript/app/utils/codeDeploy.ts +6 -0
- data/features/aws/codedeploy/remixjs/typescript/package.json +5 -0
- data/features/aws/codepipeline/expressjs/javascript/controllers/codePipelineController.js +17 -0
- data/features/aws/codepipeline/expressjs/javascript/index.js +4 -0
- data/features/aws/codepipeline/expressjs/javascript/package.json +5 -0
- data/features/aws/codepipeline/expressjs/javascript/routes/codePipelineRoutes.js +10 -0
- data/features/aws/codepipeline/expressjs/javascript/utils/codePipeline.js +8 -0
- data/features/aws/codepipeline/expressjs/typescript/controllers/codePipelineController.ts +37 -0
- data/features/aws/codepipeline/expressjs/typescript/index.ts +4 -0
- data/features/aws/codepipeline/expressjs/typescript/package.json +5 -0
- data/features/aws/codepipeline/expressjs/typescript/routes/codePipelineRoutes.ts +10 -0
- data/features/aws/codepipeline/expressjs/typescript/utils/codePipeline.ts +16 -0
- data/features/aws/codepipeline/nestjs/typescript/package.json +5 -0
- data/features/aws/codepipeline/nestjs/typescript/src/codepipeline/codepipeline.controller.ts +27 -0
- data/features/aws/codepipeline/nestjs/typescript/src/codepipeline/codepipeline.module.ts +10 -0
- data/features/aws/codepipeline/nestjs/typescript/src/codepipeline/codepipeline.service.ts +23 -0
- data/features/aws/codepipeline/nextjs/javascript/app/api/aws/codepipeline/route.js +17 -0
- data/features/aws/codepipeline/nextjs/javascript/lib/codePipeline.js +7 -0
- data/features/aws/codepipeline/nextjs/javascript/package.json +5 -0
- data/features/aws/codepipeline/nextjs/typescript/app/api/aws/codepipeline/route.ts +17 -0
- data/features/aws/codepipeline/nextjs/typescript/lib/codePipeline.ts +6 -0
- data/features/aws/codepipeline/nextjs/typescript/package.json +5 -0
- data/features/aws/codepipeline/remixjs/typescript/app/routes/api/codepipeline.ts +19 -0
- data/features/aws/codepipeline/remixjs/typescript/app/utils/codePipeline.ts +15 -0
- data/features/aws/codepipeline/remixjs/typescript/package.json +5 -0
- data/features/aws/cognito/expressjs/javascript/controllers/awsCognitoController.js +26 -0
- data/features/aws/cognito/expressjs/javascript/index.js +4 -0
- data/features/aws/cognito/expressjs/javascript/package.json +5 -0
- data/features/aws/cognito/expressjs/javascript/routes/awsCognitoRoutes.js +7 -0
- data/features/aws/cognito/expressjs/javascript/utils/awsCognito.js +38 -0
- data/features/aws/cognito/expressjs/typescript/controllers/awsCognitoController.ts +27 -0
- data/features/aws/cognito/expressjs/typescript/index.ts +4 -0
- data/features/aws/cognito/expressjs/typescript/package.json +5 -0
- data/features/aws/cognito/expressjs/typescript/routes/awsCognitoRoutes.ts +7 -0
- data/features/aws/cognito/expressjs/typescript/utils/awsCognito.ts +38 -0
- data/features/aws/cognito/nestjs/typescript/package.json +5 -0
- data/features/aws/cognito/nestjs/typescript/src/aws-cognito/aws-cognito.controller.ts +24 -0
- data/features/aws/cognito/nestjs/typescript/src/aws-cognito/aws-cognito.service.ts +42 -0
- data/features/aws/cognito/nextjs/javascript/app/api/aws/cognito/route.ts +20 -0
- data/features/aws/cognito/nextjs/javascript/lib/awsCognito.js +38 -0
- data/features/aws/cognito/nextjs/javascript/package.json +5 -0
- data/features/aws/cognito/nextjs/typescript/app/api/aws/cognito/route.ts +25 -0
- data/features/aws/cognito/nextjs/typescript/lib/awsCognito.ts +57 -0
- data/features/aws/cognito/nextjs/typescript/package.json +5 -0
- data/features/aws/cognito/remixjs/typescript/app/routes/api/aws-cognito.ts +21 -0
- data/features/aws/cognito/remixjs/typescript/app/utils/awsCognito.ts +38 -0
- data/features/aws/cognito/remixjs/typescript/package.json +5 -0
- data/features/aws/config/expressjs/javascript/controllers/configController.js +19 -0
- data/features/aws/config/expressjs/javascript/index.js +4 -0
- data/features/aws/config/expressjs/javascript/package.json +5 -0
- data/features/aws/config/expressjs/javascript/routes/configRoutes.js +6 -0
- data/features/aws/config/expressjs/javascript/utils/aws-config.js +17 -0
- data/features/aws/config/expressjs/typescript/controllers/configController.ts +20 -0
- data/features/aws/config/expressjs/typescript/index.ts +4 -0
- data/features/aws/config/expressjs/typescript/package.json +5 -0
- data/features/aws/config/expressjs/typescript/routes/configRoutes.ts +6 -0
- data/features/aws/config/expressjs/typescript/utils/aws-config.ts +17 -0
- data/features/aws/config/nestjs/typescript/package.json +5 -0
- data/features/aws/config/nestjs/typescript/src/config/config.controller.ts +14 -0
- data/features/aws/config/nestjs/typescript/src/config/config.module.ts +9 -0
- data/features/aws/config/nestjs/typescript/src/config/config.service.ts +17 -0
- data/features/aws/config/nextjs/javascript/app/api/aws/config/route.js +26 -0
- data/features/aws/config/nextjs/javascript/lib/aws-config.js +24 -0
- data/features/aws/config/nextjs/javascript/package.json +5 -0
- data/features/aws/config/nextjs/typescript/app/api/aws/config/route.ts +26 -0
- data/features/aws/config/nextjs/typescript/lib/aws-config.ts +24 -0
- data/features/aws/config/nextjs/typescript/package.json +5 -0
- data/features/aws/config/remixjs/typescript/app/routes/api/config.ts +23 -0
- data/features/aws/config/remixjs/typescript/app/utils/aws-config.ts +17 -0
- data/features/aws/config/remixjs/typescript/package.json +5 -0
- data/features/aws/connect/expressjs/javascript/package.json +5 -0
- data/features/aws/connect/expressjs/typescript/package.json +5 -0
- data/features/aws/connect/nestjs/typescript/package.json +5 -0
- data/features/aws/connect/nextjs/javascript/package.json +5 -0
- data/features/aws/connect/nextjs/typescript/package.json +5 -0
- data/features/aws/connect/remixjs/typescript/package.json +5 -0
- data/features/aws/control-tower/expressjs/javascript/package.json +5 -0
- data/features/aws/control-tower/expressjs/typescript/package.json +5 -0
- data/features/aws/control-tower/nestjs/typescript/package.json +5 -0
- data/features/aws/control-tower/nextjs/javascript/package.json +5 -0
- data/features/aws/control-tower/nextjs/typescript/package.json +5 -0
- data/features/aws/control-tower/remixjs/typescript/package.json +5 -0
- data/features/aws/data-pipeline/expressjs/javascript/package.json +5 -0
- data/features/aws/data-pipeline/expressjs/typescript/package.json +5 -0
- data/features/aws/data-pipeline/nestjs/typescript/package.json +5 -0
- data/features/aws/data-pipeline/nextjs/javascript/package.json +5 -0
- data/features/aws/data-pipeline/nextjs/typescript/package.json +5 -0
- data/features/aws/data-pipeline/remixjs/typescript/package.json +5 -0
- data/features/aws/database-migration-service/expressjs/javascript/package.json +5 -0
- data/features/aws/database-migration-service/expressjs/typescript/package.json +5 -0
- data/features/aws/database-migration-service/nestjs/typescript/package.json +5 -0
- data/features/aws/database-migration-service/nextjs/javascript/package.json +5 -0
- data/features/aws/database-migration-service/nextjs/typescript/package.json +5 -0
- data/features/aws/database-migration-service/remixjs/typescript/package.json +5 -0
- data/features/aws/datasync/expressjs/javascript/package.json +5 -0
- data/features/aws/datasync/expressjs/typescript/package.json +5 -0
- data/features/aws/datasync/nestjs/typescript/package.json +5 -0
- data/features/aws/datasync/nextjs/javascript/package.json +5 -0
- data/features/aws/datasync/nextjs/typescript/package.json +5 -0
- data/features/aws/datasync/remixjs/typescript/package.json +5 -0
- data/features/aws/documentdb/expressjs/javascript/package.json +5 -0
- data/features/aws/documentdb/expressjs/typescript/package.json +5 -0
- data/features/aws/documentdb/nestjs/typescript/package.json +5 -0
- data/features/aws/documentdb/nextjs/javascript/package.json +5 -0
- data/features/aws/documentdb/nextjs/typescript/package.json +5 -0
- data/features/aws/documentdb/remixjs/typescript/package.json +5 -0
- data/features/aws/dynamodb/expressjs/javascript/package.json +5 -0
- data/features/aws/dynamodb/expressjs/typescript/package.json +5 -0
- data/features/aws/dynamodb/nestjs/typescript/package.json +5 -0
- data/features/aws/dynamodb/nextjs/javascript/package.json +5 -0
- data/features/aws/dynamodb/nextjs/typescript/package.json +5 -0
- data/features/aws/dynamodb/remixjs/typescript/package.json +5 -0
- data/features/aws/ebs/expressjs/javascript/controllers/awsEbsController.js +41 -0
- data/features/aws/ebs/expressjs/javascript/index.js +4 -0
- data/features/aws/ebs/expressjs/javascript/package.json +5 -0
- data/features/aws/ebs/expressjs/javascript/routes/awsEbsRoutes.js +11 -0
- data/features/aws/ebs/expressjs/javascript/utils/awsEbs.js +20 -0
- data/features/aws/ebs/expressjs/typescript/controllers/awsEbsController.ts +42 -0
- data/features/aws/ebs/expressjs/typescript/index.ts +4 -0
- data/features/aws/ebs/expressjs/typescript/package.json +5 -0
- data/features/aws/ebs/expressjs/typescript/routes/awsEbsRoutes.ts +11 -0
- data/features/aws/ebs/expressjs/typescript/utils/awsEbs.ts +29 -0
- data/features/aws/ebs/nestjs/typescript/package.json +5 -0
- data/features/aws/ebs/nestjs/typescript/src/aws-ebs/aws-ebs.controller.ts +27 -0
- data/features/aws/ebs/nestjs/typescript/src/aws-ebs/aws-ebs.service.ts +33 -0
- data/features/aws/ebs/nextjs/javascript/app/api/aws/ebs/route.js +24 -0
- data/features/aws/ebs/nextjs/javascript/lib/awsEbs.js +20 -0
- data/features/aws/ebs/nextjs/javascript/package.json +5 -0
- data/features/aws/ebs/nextjs/typescript/app/api/aws/ebs/route.ts +28 -0
- data/features/aws/ebs/nextjs/typescript/lib/awsEbs.ts +45 -0
- data/features/aws/ebs/nextjs/typescript/package.json +5 -0
- data/features/aws/ebs/remixjs/typescript/app/routes/api/aws-ebs.ts +21 -0
- data/features/aws/ebs/remixjs/typescript/app/utils/awsEbs.ts +20 -0
- data/features/aws/ebs/remixjs/typescript/package.json +5 -0
- data/features/aws/ec2/expressjs/javascript/controllers/awsEc2Controller.js +35 -0
- data/features/aws/ec2/expressjs/javascript/index.js +3 -0
- data/features/aws/ec2/expressjs/javascript/package.json +5 -0
- data/features/aws/ec2/expressjs/javascript/routes/awsEc2Routes.js +9 -0
- data/features/aws/ec2/expressjs/javascript/utils/awsEc2.js +29 -0
- data/features/aws/ec2/expressjs/typescript/controllers/awsEc2Controller.ts +36 -0
- data/features/aws/ec2/expressjs/typescript/index.ts +4 -0
- data/features/aws/ec2/expressjs/typescript/package.json +5 -0
- data/features/aws/ec2/expressjs/typescript/routes/awsEc2Routes.ts +9 -0
- data/features/aws/ec2/expressjs/typescript/utils/awsEc2.ts +29 -0
- data/features/aws/ec2/nestjs/typescript/package.json +5 -0
- data/features/aws/ec2/nestjs/typescript/src/aws-ec2/aws-ec2.controller.ts +27 -0
- data/features/aws/ec2/nestjs/typescript/src/aws-ec2/aws-ec2.service.ts +29 -0
- data/features/aws/ec2/nextjs/javascript/app/api/aws/ec2/route.js +22 -0
- data/features/aws/ec2/nextjs/javascript/lib/awsEc2.js +29 -0
- data/features/aws/ec2/nextjs/javascript/package.json +5 -0
- data/features/aws/ec2/nextjs/typescript/app/api/aws/ec2/route.ts +22 -0
- data/features/aws/ec2/nextjs/typescript/lib/awsEc2.ts +29 -0
- data/features/aws/ec2/nextjs/typescript/package.json +5 -0
- data/features/aws/ec2/remixjs/typescript/app/routes/api/aws-ec2.ts +38 -0
- data/features/aws/ec2/remixjs/typescript/package.json +5 -0
- data/features/aws/ec2-auto-scaling/expressjs/javascript/package.json +5 -0
- data/features/aws/ec2-auto-scaling/expressjs/typescript/package.json +5 -0
- data/features/aws/ec2-auto-scaling/nestjs/typescript/package.json +5 -0
- data/features/aws/ec2-auto-scaling/nextjs/javascript/package.json +5 -0
- data/features/aws/ec2-auto-scaling/nextjs/typescript/package.json +5 -0
- data/features/aws/ec2-auto-scaling/remixjs/typescript/package.json +5 -0
- data/features/aws/ecs/expressjs/javascript/controllers/awsEcsController.js +31 -0
- data/features/aws/ecs/expressjs/javascript/index.js +4 -0
- data/features/aws/ecs/expressjs/javascript/package.json +5 -0
- data/features/aws/ecs/expressjs/javascript/routes/awsEcsRoutes.js +8 -0
- data/features/aws/ecs/expressjs/javascript/utils/awsEcs.js +26 -0
- data/features/aws/ecs/expressjs/typescript/controllers/awsEcsController.ts +32 -0
- data/features/aws/ecs/expressjs/typescript/index.ts +4 -0
- data/features/aws/ecs/expressjs/typescript/package.json +5 -0
- data/features/aws/ecs/expressjs/typescript/routes/awsEcsRoutes.ts +8 -0
- data/features/aws/ecs/expressjs/typescript/utils/awsEcs.ts +30 -0
- data/features/aws/ecs/nestjs/typescript/package.json +5 -0
- data/features/aws/ecs/nestjs/typescript/src/aws-ecs/aws-ecs.controller.ts +22 -0
- data/features/aws/ecs/nestjs/typescript/src/aws-ecs/aws-ecs.service.ts +34 -0
- data/features/aws/ecs/nextjs/javascript/app/api/aws/ecs/route.js +21 -0
- data/features/aws/ecs/nextjs/javascript/lib/awsEcs.js +30 -0
- data/features/aws/ecs/nextjs/javascript/package.json +5 -0
- data/features/aws/ecs/nextjs/typescript/app/api/aws/ecs/route.ts +21 -0
- data/features/aws/ecs/nextjs/typescript/lib/awsEcs.ts +38 -0
- data/features/aws/ecs/nextjs/typescript/package.json +5 -0
- data/features/aws/ecs/remixjs/typescript/app/routes/api/aws-ecs.ts +22 -0
- data/features/aws/ecs/remixjs/typescript/app/utils/awsEcs.ts +26 -0
- data/features/aws/ecs/remixjs/typescript/package.json +5 -0
- data/features/aws/efs/expressjs/javascript/controllers/awsEfsController.js +37 -0
- data/features/aws/efs/expressjs/javascript/index.js +4 -0
- data/features/aws/efs/expressjs/javascript/package.json +5 -0
- data/features/aws/efs/expressjs/javascript/routes/awsEfsRoutes.js +11 -0
- data/features/aws/efs/expressjs/javascript/utils/awsEfs.js +20 -0
- data/features/aws/efs/expressjs/typescript/controllers/awsEfsController.ts +42 -0
- data/features/aws/efs/expressjs/typescript/index.ts +4 -0
- data/features/aws/efs/expressjs/typescript/package.json +5 -0
- data/features/aws/efs/expressjs/typescript/routes/awsEfsRoutes.ts +11 -0
- data/features/aws/efs/expressjs/typescript/utils/awsEfs.ts +30 -0
- data/features/aws/efs/nestjs/typescript/package.json +5 -0
- data/features/aws/efs/nestjs/typescript/src/aws-efs/aws-efs.controller.ts +31 -0
- data/features/aws/efs/nestjs/typescript/src/aws-efs/aws-efs.service.ts +34 -0
- data/features/aws/efs/nextjs/javascript/app/api/aws/efs/route.js +25 -0
- data/features/aws/efs/nextjs/javascript/lib/awsEfs.js +20 -0
- data/features/aws/efs/nextjs/javascript/package.json +5 -0
- data/features/aws/efs/nextjs/typescript/app/api/aws/efs/route.ts +28 -0
- data/features/aws/efs/nextjs/typescript/lib/awsEfs.ts +46 -0
- data/features/aws/efs/nextjs/typescript/package.json +5 -0
- data/features/aws/efs/remixjs/typescript/app/routes/api/aws-efs.ts +21 -0
- data/features/aws/efs/remixjs/typescript/app/utils/awsEfs.ts +20 -0
- data/features/aws/efs/remixjs/typescript/package.json +5 -0
- data/features/aws/eks/expressjs/javascript/package.json +5 -0
- data/features/aws/eks/expressjs/typescript/package.json +5 -0
- data/features/aws/eks/nestjs/typescript/package.json +5 -0
- data/features/aws/eks/nextjs/javascript/package.json +5 -0
- data/features/aws/eks/nextjs/typescript/package.json +5 -0
- data/features/aws/eks/remixjs/typescript/package.json +5 -0
- data/features/aws/elasticache/expressjs/javascript/package.json +5 -0
- data/features/aws/elasticache/expressjs/typescript/package.json +5 -0
- data/features/aws/elasticache/nestjs/typescript/package.json +5 -0
- data/features/aws/elasticache/nextjs/javascript/package.json +5 -0
- data/features/aws/elasticache/nextjs/typescript/package.json +5 -0
- data/features/aws/elasticache/remixjs/typescript/package.json +5 -0
- data/features/aws/elb/expressjs/javascript/controllers/awsElbController.js +30 -0
- data/features/aws/elb/expressjs/javascript/index.js +4 -0
- data/features/aws/elb/expressjs/javascript/package.json +5 -0
- data/features/aws/elb/expressjs/javascript/routes/awsElbRoutes.js +10 -0
- data/features/aws/elb/expressjs/javascript/utils/awsElb.js +24 -0
- data/features/aws/elb/expressjs/typescript/controllers/awsElbController.ts +31 -0
- data/features/aws/elb/expressjs/typescript/index.ts +4 -0
- data/features/aws/elb/expressjs/typescript/package.json +5 -0
- data/features/aws/elb/expressjs/typescript/routes/awsElbRoutes.ts +10 -0
- data/features/aws/elb/expressjs/typescript/utils/awsElb.ts +24 -0
- data/features/aws/elb/nestjs/typescript/package.json +5 -0
- data/features/aws/elb/nestjs/typescript/src/aws-elb/aws-elb.controller.ts +22 -0
- data/features/aws/elb/nestjs/typescript/src/aws-elb/aws-elb.service.ts +25 -0
- data/features/aws/elb/nextjs/javascript/app/api/aws/elb/route.js +19 -0
- data/features/aws/elb/nextjs/javascript/lib/awsElb.js +24 -0
- data/features/aws/elb/nextjs/javascript/package.json +5 -0
- data/features/aws/elb/nextjs/typescript/app/api/aws/elb/route.ts +19 -0
- data/features/aws/elb/nextjs/typescript/lib/awsElb.ts +24 -0
- data/features/aws/elb/nextjs/typescript/package.json +5 -0
- data/features/aws/elb/remixjs/typescript/app/routes/api/aws-elb.ts +35 -0
- data/features/aws/elb/remixjs/typescript/package.json +5 -0
- data/features/aws/event-bridge/expressjs/javascript/package.json +5 -0
- data/features/aws/event-bridge/expressjs/typescript/package.json +5 -0
- data/features/aws/event-bridge/nestjs/typescript/package.json +5 -0
- data/features/aws/event-bridge/nextjs/javascript/package.json +5 -0
- data/features/aws/event-bridge/nextjs/typescript/package.json +5 -0
- data/features/aws/event-bridge/remixjs/typescript/package.json +5 -0
- data/features/aws/fargate/expressjs/javascript/package.json +5 -0
- data/features/aws/fargate/expressjs/typescript/package.json +5 -0
- data/features/aws/fargate/nestjs/typescript/package.json +5 -0
- data/features/aws/fargate/nextjs/javascript/package.json +5 -0
- data/features/aws/fargate/nextjs/typescript/package.json +5 -0
- data/features/aws/fargate/remixjs/typescript/package.json +5 -0
- data/features/aws/firehose/expressjs/javascript/package.json +5 -0
- data/features/aws/firehose/expressjs/typescript/package.json +5 -0
- data/features/aws/firehose/nestjs/typescript/package.json +5 -0
- data/features/aws/firehose/nextjs/javascript/package.json +5 -0
- data/features/aws/firehose/nextjs/typescript/package.json +5 -0
- data/features/aws/firehose/remixjs/typescript/package.json +5 -0
- data/features/aws/forecast/expressjs/javascript/package.json +5 -0
- data/features/aws/forecast/expressjs/typescript/package.json +5 -0
- data/features/aws/forecast/nestjs/typescript/package.json +5 -0
- data/features/aws/forecast/nextjs/javascript/package.json +5 -0
- data/features/aws/forecast/nextjs/typescript/package.json +5 -0
- data/features/aws/forecast/remixjs/typescript/package.json +5 -0
- data/features/aws/glue/expressjs/javascript/package.json +5 -0
- data/features/aws/glue/expressjs/typescript/package.json +5 -0
- data/features/aws/glue/nestjs/typescript/package.json +5 -0
- data/features/aws/glue/nextjs/javascript/package.json +5 -0
- data/features/aws/glue/nextjs/typescript/package.json +5 -0
- data/features/aws/glue/remixjs/typescript/package.json +5 -0
- data/features/aws/iam/expressjs/javascript/controllers/iamControllers.js +30 -0
- data/features/aws/iam/expressjs/javascript/index.js +4 -0
- data/features/aws/iam/expressjs/javascript/package.json +5 -0
- data/features/aws/iam/expressjs/javascript/routes/iamRoutes.js +10 -0
- data/features/aws/iam/expressjs/javascript/utils/awsIam.js +24 -0
- data/features/aws/iam/expressjs/typescript/controllers/iamControllers.ts +31 -0
- data/features/aws/iam/expressjs/typescript/index.ts +4 -0
- data/features/aws/iam/expressjs/typescript/package.json +5 -0
- data/features/aws/iam/expressjs/typescript/routes/iamRoutes.ts +10 -0
- data/features/aws/iam/expressjs/typescript/utils/awsIam.ts +24 -0
- data/features/aws/iam/nestjs/typescript/package.json +5 -0
- data/features/aws/iam/nestjs/typescript/src/aws-iam/aws-iam.controller.ts +22 -0
- data/features/aws/iam/nestjs/typescript/src/aws-iam/aws-iam.module.ts +9 -0
- data/features/aws/iam/nestjs/typescript/src/aws-iam/aws-iam.service.ts +25 -0
- data/features/aws/iam/nextjs/javascript/app/api/aws/iam/route.js +19 -0
- data/features/aws/iam/nextjs/javascript/lib/awsIam.js +24 -0
- data/features/aws/iam/nextjs/javascript/package.json +5 -0
- data/features/aws/iam/nextjs/typescript/app/api/aws/iam/route.ts +19 -0
- data/features/aws/iam/nextjs/typescript/lib/awsIam.ts +24 -0
- data/features/aws/iam/nextjs/typescript/package.json +5 -0
- data/features/aws/iam/remixjs/typescript/app/routes/api/aws-iam.ts +35 -0
- data/features/aws/iam/remixjs/typescript/package.json +5 -0
- data/features/aws/kinesis/expressjs/javascript/package.json +12 -0
- data/features/aws/kinesis/expressjs/typescript/package.json +12 -0
- data/features/aws/kinesis/nestjs/typescript/package.json +12 -0
- data/features/aws/kinesis/nextjs/javascript/package.json +12 -0
- data/features/aws/kinesis/nextjs/typescript/package.json +12 -0
- data/features/aws/kinesis/remixjs/typescript/package.json +12 -0
- data/features/aws/kms/expressjs/javascript/controllers/awsKmsController.js +30 -0
- data/features/aws/kms/expressjs/javascript/index.js +3 -0
- data/features/aws/kms/expressjs/javascript/package.json +5 -0
- data/features/aws/kms/expressjs/javascript/routes/awsKmsRoutes.js +10 -0
- data/features/aws/kms/expressjs/javascript/utils/awsKms.js +26 -0
- data/features/aws/kms/expressjs/typescript/controllers/awsKmsController.ts +31 -0
- data/features/aws/kms/expressjs/typescript/index.ts +3 -0
- data/features/aws/kms/expressjs/typescript/package.json +5 -0
- data/features/aws/kms/expressjs/typescript/routes/awsKmsRoutes.ts +10 -0
- data/features/aws/kms/expressjs/typescript/utils/awsKms.ts +26 -0
- data/features/aws/kms/nestjs/typescript/package.json +5 -0
- data/features/aws/kms/nestjs/typescript/src/aws-kms/aws-kms.controller.ts +22 -0
- data/features/aws/kms/nestjs/typescript/src/aws-kms/aws-kms.service.ts +25 -0
- data/features/aws/kms/nextjs/javascript/app/api/aws/kms/route.js +19 -0
- data/features/aws/kms/nextjs/javascript/lib/awsKms.js +26 -0
- data/features/aws/kms/nextjs/javascript/package.json +5 -0
- data/features/aws/kms/nextjs/typescript/app/api/aws/kms/route.ts +19 -0
- data/features/aws/kms/nextjs/typescript/lib/awsKms.ts +26 -0
- data/features/aws/kms/nextjs/typescript/package.json +5 -0
- data/features/aws/kms/remixjs/typescript/app/routes/api/aws-kms.ts +31 -0
- data/features/aws/kms/remixjs/typescript/package.json +5 -0
- data/features/aws/lambda/expressjs/javascript/controllers/awsLambdaController.js +20 -0
- data/features/aws/lambda/expressjs/javascript/index.js +4 -0
- data/features/aws/lambda/expressjs/javascript/package.json +5 -0
- data/features/aws/lambda/expressjs/javascript/routes/awsLambdaRoutes.js +7 -0
- data/features/aws/lambda/expressjs/javascript/utils/awsLambda.js +26 -0
- data/features/aws/lambda/expressjs/typescript/controllers/awsLambdaController.ts +21 -0
- data/features/aws/lambda/expressjs/typescript/index.ts +4 -0
- data/features/aws/lambda/expressjs/typescript/package.json +5 -0
- data/features/aws/lambda/expressjs/typescript/routes/awsLambdaRoutes.ts +7 -0
- data/features/aws/lambda/expressjs/typescript/utils/awsLambda.ts +27 -0
- data/features/aws/lambda/nestjs/typescript/package.json +5 -0
- data/features/aws/lambda/nestjs/typescript/src/aws-lambda/aws-lambda.controller.ts +17 -0
- data/features/aws/lambda/nestjs/typescript/src/aws-lambda/aws-lambda.service.ts +31 -0
- data/features/aws/lambda/nextjs/javascript/app/api/aws/lambda/route.js +13 -0
- data/features/aws/lambda/nextjs/javascript/lib/awsLambda.js +27 -0
- data/features/aws/lambda/nextjs/javascript/package.json +5 -0
- data/features/aws/lambda/nextjs/typescript/app/api/aws/lambda/route.ts +13 -0
- data/features/aws/lambda/nextjs/typescript/lib/awsLambda.ts +28 -0
- data/features/aws/lambda/nextjs/typescript/package.json +5 -0
- data/features/aws/lambda/remixjs/typescript/app/routes/api/aws-lambda.ts +14 -0
- data/features/aws/lambda/remixjs/typescript/app/utils/awsLambda.ts +27 -0
- data/features/aws/lambda/remixjs/typescript/package.json +5 -0
- data/features/aws/lex/expressjs/javascript/package.json +8 -0
- data/features/aws/lex/expressjs/typescript/package.json +8 -0
- data/features/aws/lex/nestjs/typescript/package.json +8 -0
- data/features/aws/lex/nextjs/javascript/package.json +8 -0
- data/features/aws/lex/nextjs/typescript/package.json +8 -0
- data/features/aws/lex/remixjs/typescript/package.json +8 -0
- data/features/aws/mediaconvert/expressjs/javascript/package.json +5 -0
- data/features/aws/mediaconvert/expressjs/typescript/package.json +5 -0
- data/features/aws/mediaconvert/nestjs/typescript/package.json +5 -0
- data/features/aws/mediaconvert/nextjs/javascript/package.json +5 -0
- data/features/aws/mediaconvert/nextjs/typescript/package.json +5 -0
- data/features/aws/mediaconvert/remixjs/typescript/package.json +5 -0
- data/features/aws/medialive/expressjs/javascript/package.json +5 -0
- data/features/aws/medialive/expressjs/typescript/package.json +5 -0
- data/features/aws/medialive/nestjs/typescript/package.json +5 -0
- data/features/aws/medialive/nextjs/javascript/package.json +5 -0
- data/features/aws/medialive/nextjs/typescript/package.json +5 -0
- data/features/aws/medialive/remixjs/typescript/package.json +5 -0
- data/features/aws/mediastore/expressjs/javascript/package.json +6 -0
- data/features/aws/mediastore/expressjs/typescript/package.json +6 -0
- data/features/aws/mediastore/nestjs/typescript/package.json +6 -0
- data/features/aws/mediastore/nextjs/javascript/package.json +6 -0
- data/features/aws/mediastore/nextjs/typescript/package.json +6 -0
- data/features/aws/mediastore/remixjs/typescript/package.json +6 -0
- data/features/aws/neptune/expressjs/javascript/package.json +6 -0
- data/features/aws/neptune/expressjs/typescript/package.json +6 -0
- data/features/aws/neptune/nestjs/typescript/package.json +6 -0
- data/features/aws/neptune/nextjs/javascript/package.json +6 -0
- data/features/aws/neptune/nextjs/typescript/package.json +6 -0
- data/features/aws/neptune/remixjs/typescript/package.json +6 -0
- data/features/aws/organizations/expressjs/javascript/controllers/organizationsController.js +20 -0
- data/features/aws/organizations/expressjs/javascript/index.js +4 -0
- data/features/aws/organizations/expressjs/javascript/package.json +5 -0
- data/features/aws/organizations/expressjs/javascript/routes/organizationsRoutes.js +8 -0
- data/features/aws/organizations/expressjs/javascript/utils/aws-organizations.js +25 -0
- data/features/aws/organizations/expressjs/typescript/controllers/organizationController.ts +21 -0
- data/features/aws/organizations/expressjs/typescript/index.ts +4 -0
- data/features/aws/organizations/expressjs/typescript/package.json +5 -0
- data/features/aws/organizations/expressjs/typescript/routes/organizationsRoutes.ts +10 -0
- data/features/aws/organizations/expressjs/typescript/utils/aws-organizations.ts +25 -0
- data/features/aws/organizations/nestjs/typescript/package.json +5 -0
- data/features/aws/organizations/nestjs/typescript/src/organizations/organizations.controller.ts +17 -0
- data/features/aws/organizations/nestjs/typescript/src/organizations/organizations.module.ts +10 -0
- data/features/aws/organizations/nestjs/typescript/src/organizations/organizations.service.ts +25 -0
- data/features/aws/organizations/nextjs/javascript/app/api/aws/organizations/route.ts +20 -0
- data/features/aws/organizations/nextjs/javascript/lib/aws-organizations.js +25 -0
- data/features/aws/organizations/nextjs/javascript/package.json +5 -0
- data/features/aws/organizations/nextjs/typescript/app/api/aws/organizations/route.ts +20 -0
- data/features/aws/organizations/nextjs/typescript/lib/aws-organizations.ts +25 -0
- data/features/aws/organizations/nextjs/typescript/package.json +5 -0
- data/features/aws/organizations/remixjs/typescript/app/routes/api/organizations.ts +22 -0
- data/features/aws/organizations/remixjs/typescript/app/utils/aws-organizations.ts +26 -0
- data/features/aws/organizations/remixjs/typescript/package.json +5 -0
- data/features/aws/personalize/expressjs/javascript/package.json +7 -0
- data/features/aws/personalize/expressjs/typescript/package.json +7 -0
- data/features/aws/personalize/nestjs/typescript/package.json +7 -0
- data/features/aws/personalize/nextjs/javascript/package.json +7 -0
- data/features/aws/personalize/nextjs/typescript/package.json +7 -0
- data/features/aws/personalize/remixjs/typescript/package.json +7 -0
- data/features/aws/pinpoint/expressjs/javascript/package.json +7 -0
- data/features/aws/pinpoint/expressjs/typescript/package.json +7 -0
- data/features/aws/pinpoint/nestjs/typescript/package.json +7 -0
- data/features/aws/pinpoint/nextjs/javascript/package.json +7 -0
- data/features/aws/pinpoint/nextjs/typescript/package.json +7 -0
- data/features/aws/pinpoint/remixjs/typescript/package.json +7 -0
- data/features/aws/quicksight/expressjs/javascript/package.json +5 -0
- data/features/aws/quicksight/expressjs/typescript/package.json +5 -0
- data/features/aws/quicksight/nestjs/typescript/package.json +5 -0
- data/features/aws/quicksight/nextjs/javascript/package.json +5 -0
- data/features/aws/quicksight/nextjs/typescript/package.json +5 -0
- data/features/aws/quicksight/remixjs/typescript/package.json +5 -0
- data/features/aws/rds/expressjs/javascript/package.json +8 -0
- data/features/aws/rds/expressjs/typescript/package.json +8 -0
- data/features/aws/rds/nestjs/typescript/package.json +8 -0
- data/features/aws/rds/nextjs/javascript/package.json +8 -0
- data/features/aws/rds/nextjs/typescript/package.json +8 -0
- data/features/aws/rds/remixjs/typescript/package.json +8 -0
- data/features/aws/redshift/expressjs/javascript/package.json +7 -0
- data/features/aws/redshift/expressjs/typescript/package.json +7 -0
- data/features/aws/redshift/nestjs/typescript/package.json +7 -0
- data/features/aws/redshift/nextjs/javascript/package.json +7 -0
- data/features/aws/redshift/nextjs/typescript/package.json +7 -0
- data/features/aws/redshift/remixjs/typescript/package.json +7 -0
- data/features/aws/route-53/expressjs/javascript/package.json +10 -0
- data/features/aws/route-53/expressjs/typescript/package.json +10 -0
- data/features/aws/route-53/nestjs/typescript/package.json +10 -0
- data/features/aws/route-53/nextjs/javascript/package.json +10 -0
- data/features/aws/route-53/nextjs/typescript/package.json +10 -0
- data/features/aws/route-53/remixjs/typescript/package.json +10 -0
- data/features/aws/s3/expressjs/javascript/controllers/s3Controllers.js +21 -0
- data/features/aws/s3/expressjs/javascript/index.js +3 -0
- data/features/aws/s3/expressjs/javascript/package.json +7 -0
- data/features/aws/s3/expressjs/javascript/routes/s3Routes.js +9 -0
- data/features/aws/s3/expressjs/javascript/utils/s3.js +22 -0
- data/features/aws/s3/expressjs/typescript/controllers/s3Controllers.ts +21 -0
- data/features/aws/s3/expressjs/typescript/index.ts +3 -0
- data/features/aws/s3/expressjs/typescript/package.json +7 -0
- data/features/aws/s3/expressjs/typescript/routes/s3Routes.ts +9 -0
- data/features/aws/s3/expressjs/typescript/utils/s3.ts +22 -0
- data/features/aws/s3/nestjs/typescript/package.json +7 -0
- data/features/aws/s3/nestjs/typescript/src/s3/s3.controller.ts +17 -0
- data/features/aws/s3/nestjs/typescript/src/s3/s3.module.ts +9 -0
- data/features/aws/s3/nestjs/typescript/src/s3/s3.service.ts +26 -0
- data/features/aws/s3/nextjs/javascript/app/api/aws/s3/list/route.js +13 -0
- data/features/aws/s3/nextjs/javascript/app/api/aws/s3/upload/route.js +12 -0
- data/features/aws/s3/nextjs/javascript/package.json +7 -0
- data/features/aws/s3/nextjs/javascript/utils/s3.js +22 -0
- data/features/aws/s3/nextjs/typescript/app/api/aws/s3/list/route.ts +15 -0
- data/features/aws/s3/nextjs/typescript/app/api/aws/s3/upload/route.ts +16 -0
- data/features/aws/s3/nextjs/typescript/package.json +7 -0
- data/features/aws/s3/nextjs/typescript/utils/s3.ts +22 -0
- data/features/aws/s3/remixjs/typescript/app/routes/api/s3.ts +16 -0
- data/features/aws/s3/remixjs/typescript/app/utils/s3.ts +22 -0
- data/features/aws/s3/remixjs/typescript/package.json +7 -0
- data/features/aws/s3-glacier/expressjs/javascript/package.json +10 -0
- data/features/aws/s3-glacier/expressjs/typescript/package.json +10 -0
- data/features/aws/s3-glacier/nestjs/typescript/package.json +10 -0
- data/features/aws/s3-glacier/nextjs/javascript/package.json +10 -0
- data/features/aws/s3-glacier/nextjs/typescript/package.json +10 -0
- data/features/aws/s3-glacier/remixjs/typescript/package.json +10 -0
- data/features/aws/s3-glacier-deep-archive/expressjs/javascript/package.json +10 -0
- data/features/aws/s3-glacier-deep-archive/expressjs/typescript/package.json +10 -0
- data/features/aws/s3-glacier-deep-archive/nestjs/typescript/package.json +10 -0
- data/features/aws/s3-glacier-deep-archive/nextjs/javascript/package.json +10 -0
- data/features/aws/s3-glacier-deep-archive/nextjs/typescript/package.json +10 -0
- data/features/aws/s3-glacier-deep-archive/remixjs/typescript/package.json +10 -0
- data/features/aws/secrets-manager/expressjs/javascript/package.json +5 -0
- data/features/aws/secrets-manager/expressjs/typescript/package.json +5 -0
- data/features/aws/secrets-manager/nestjs/typescript/package.json +5 -0
- data/features/aws/secrets-manager/nextjs/javascript/package.json +5 -0
- data/features/aws/secrets-manager/nextjs/typescript/package.json +5 -0
- data/features/aws/secrets-manager/remixjs/typescript/package.json +5 -0
- data/features/aws/service-catalog/expressjs/javascript/package.json +6 -0
- data/features/aws/service-catalog/expressjs/typescript/package.json +6 -0
- data/features/aws/service-catalog/nestjs/typescript/package.json +6 -0
- data/features/aws/service-catalog/nextjs/javascript/package.json +6 -0
- data/features/aws/service-catalog/nextjs/typescript/package.json +6 -0
- data/features/aws/service-catalog/remixjs/typescript/package.json +6 -0
- data/features/aws/shield/expressjs/javascript/package.json +5 -0
- data/features/aws/shield/expressjs/typescript/package.json +5 -0
- data/features/aws/shield/nestjs/typescript/package.json +5 -0
- data/features/aws/shield/nextjs/javascript/package.json +5 -0
- data/features/aws/shield/nextjs/typescript/package.json +5 -0
- data/features/aws/shield/remixjs/typescript/package.json +5 -0
- data/features/aws/simple-email-service/expressjs/javascript/package.json +6 -0
- data/features/aws/simple-email-service/expressjs/typescript/package.json +6 -0
- data/features/aws/simple-email-service/nestjs/typescript/package.json +6 -0
- data/features/aws/simple-email-service/nextjs/javascript/package.json +6 -0
- data/features/aws/simple-email-service/nextjs/typescript/package.json +6 -0
- data/features/aws/simple-email-service/remixjs/typescript/package.json +6 -0
- data/features/aws/snowball/expressjs/javascript/package.json +6 -0
- data/features/aws/snowball/expressjs/typescript/package.json +6 -0
- data/features/aws/snowball/nestjs/typescript/package.json +6 -0
- data/features/aws/snowball/nextjs/javascript/package.json +6 -0
- data/features/aws/snowball/nextjs/typescript/package.json +6 -0
- data/features/aws/snowball/remixjs/typescript/package.json +6 -0
- data/features/aws/snowmobile/expressjs/javascript/package.json +5 -0
- data/features/aws/snowmobile/expressjs/typescript/package.json +5 -0
- data/features/aws/snowmobile/nestjs/typescript/package.json +5 -0
- data/features/aws/snowmobile/nextjs/javascript/package.json +5 -0
- data/features/aws/snowmobile/nextjs/typescript/package.json +5 -0
- data/features/aws/snowmobile/remixjs/typescript/package.json +5 -0
- data/features/aws/sso/expressjs/javascript/package.json +9 -0
- data/features/aws/sso/expressjs/typescript/package.json +9 -0
- data/features/aws/sso/nestjs/typescript/package.json +9 -0
- data/features/aws/sso/nextjs/javascript/package.json +9 -0
- data/features/aws/sso/nextjs/typescript/package.json +9 -0
- data/features/aws/sso/remixjs/typescript/package.json +9 -0
- data/features/aws/storage-gateway/expressjs/javascript/package.json +5 -0
- data/features/aws/storage-gateway/expressjs/typescript/package.json +5 -0
- data/features/aws/storage-gateway/nestjs/typescript/package.json +5 -0
- data/features/aws/storage-gateway/nextjs/javascript/package.json +5 -0
- data/features/aws/storage-gateway/nextjs/typescript/package.json +5 -0
- data/features/aws/storage-gateway/remixjs/typescript/package.json +5 -0
- data/features/aws/sts/expressjs/javascript/package.json +7 -0
- data/features/aws/sts/expressjs/typescript/package.json +7 -0
- data/features/aws/sts/nestjs/typescript/package.json +7 -0
- data/features/aws/sts/nextjs/javascript/package.json +7 -0
- data/features/aws/sts/nextjs/typescript/package.json +7 -0
- data/features/aws/sts/remixjs/typescript/package.json +7 -0
- data/features/aws/systems-manager/expressjs/javascript/package.json +5 -0
- data/features/aws/systems-manager/expressjs/typescript/package.json +5 -0
- data/features/aws/systems-manager/nestjs/typescript/package.json +5 -0
- data/features/aws/systems-manager/nextjs/javascript/package.json +5 -0
- data/features/aws/systems-manager/nextjs/typescript/package.json +5 -0
- data/features/aws/systems-manager/remixjs/typescript/package.json +5 -0
- data/features/aws/textract/expressjs/javascript/package.json +5 -0
- data/features/aws/textract/expressjs/typescript/package.json +5 -0
- data/features/aws/textract/nestjs/typescript/package.json +5 -0
- data/features/aws/textract/nextjs/javascript/package.json +5 -0
- data/features/aws/textract/nextjs/typescript/package.json +5 -0
- data/features/aws/textract/remixjs/typescript/package.json +5 -0
- data/features/aws/translate/expressjs/javascript/package.json +5 -0
- data/features/aws/translate/expressjs/typescript/package.json +5 -0
- data/features/aws/translate/nestjs/typescript/package.json +5 -0
- data/features/aws/translate/nextjs/javascript/package.json +5 -0
- data/features/aws/translate/nextjs/typescript/package.json +5 -0
- data/features/aws/translate/remixjs/typescript/package.json +5 -0
- data/features/aws/trustedAdvisor/expressjs/javascript/controllers/awsTrustedAdvisorController.js +10 -0
- data/features/aws/trustedAdvisor/expressjs/javascript/index.js +4 -0
- data/features/aws/trustedAdvisor/expressjs/javascript/package.json +5 -0
- data/features/aws/trustedAdvisor/expressjs/javascript/routes/awsTrustedAdvisorRoutes.js +7 -0
- data/features/aws/trustedAdvisor/expressjs/javascript/utils/aws-trustedadvisor.js +13 -0
- data/features/aws/trustedAdvisor/expressjs/typescript/controllers/awsTrustedAdvisorController.ts +10 -0
- data/features/aws/trustedAdvisor/expressjs/typescript/index.ts +4 -0
- data/features/aws/trustedAdvisor/expressjs/typescript/package.json +5 -0
- data/features/aws/trustedAdvisor/expressjs/typescript/routes/awsTrustedAdvisorRoutes.ts +7 -0
- data/features/aws/trustedAdvisor/expressjs/typescript/utils/aws-trustedadvisor.ts +13 -0
- data/features/aws/trustedAdvisor/nestjs/typescript/package.json +5 -0
- data/features/aws/trustedAdvisor/nestjs/typescript/src/trustedadvisor/aws-trustedadvisor.controller.ts +12 -0
- data/features/aws/trustedAdvisor/nestjs/typescript/src/trustedadvisor/aws-trustedadvisor.module.ts +9 -0
- data/features/aws/trustedAdvisor/nestjs/typescript/src/trustedadvisor/aws-trustedadvisor.service.ts +17 -0
- data/features/aws/trustedAdvisor/nextjs/javascript/app/api/aws/trustedadvisor/route.js +11 -0
- data/features/aws/trustedAdvisor/nextjs/javascript/lib/aws-trustedadvisor.js +13 -0
- data/features/aws/trustedAdvisor/nextjs/javascript/package.json +5 -0
- data/features/aws/trustedAdvisor/nextjs/typescript/app/api/aws/trustedadvisor/route.ts +11 -0
- data/features/aws/trustedAdvisor/nextjs/typescript/lib/aws-trustedadvisor.ts +13 -0
- data/features/aws/trustedAdvisor/nextjs/typescript/package.json +5 -0
- data/features/aws/trustedAdvisor/remixjs/typescript/app/routes/api/aws-trustedadvisor.ts +11 -0
- data/features/aws/trustedAdvisor/remixjs/typescript/app/utils/aws-trustedadvisor.ts +13 -0
- data/features/aws/trustedAdvisor/remixjs/typescript/package.json +5 -0
- data/features/aws/vpc/expressjs/javascript/package.json +6 -0
- data/features/aws/vpc/expressjs/typescript/package.json +6 -0
- data/features/aws/vpc/nestjs/typescript/package.json +6 -0
- data/features/aws/vpc/nextjs/javascript/package.json +6 -0
- data/features/aws/vpc/nextjs/typescript/package.json +6 -0
- data/features/aws/vpc/remixjs/typescript/package.json +6 -0
- data/features/aws/waf/expressjs/javascript/package.json +7 -0
- data/features/aws/waf/expressjs/typescript/package.json +7 -0
- data/features/aws/waf/nestjs/typescript/package.json +7 -0
- data/features/aws/waf/nextjs/javascript/package.json +7 -0
- data/features/aws/waf/nextjs/typescript/package.json +7 -0
- data/features/aws/waf/remixjs/typescript/package.json +7 -0
- data/features/aws/x-ray/expressjs/javascript/controllers/xrayController.js +31 -0
- data/features/aws/x-ray/expressjs/javascript/index.js +4 -0
- data/features/aws/x-ray/expressjs/javascript/package.json +5 -0
- data/features/aws/x-ray/expressjs/javascript/routes/xrayRoutes.js +10 -0
- data/features/aws/x-ray/expressjs/javascript/utils/xray.js +15 -0
- data/features/aws/x-ray/expressjs/typescript/controllers/xrayController.ts +51 -0
- data/features/aws/x-ray/expressjs/typescript/index.ts +4 -0
- data/features/aws/x-ray/expressjs/typescript/package.json +5 -0
- data/features/aws/x-ray/expressjs/typescript/routes/xrayRoutes.ts +12 -0
- data/features/aws/x-ray/expressjs/typescript/utils/xray.ts +23 -0
- data/features/aws/x-ray/nestjs/typescript/package.json +5 -0
- data/features/aws/x-ray/nestjs/typescript/src/xray/xray.controller.ts +22 -0
- data/features/aws/x-ray/nestjs/typescript/src/xray/xray.module.ts +10 -0
- data/features/aws/x-ray/nestjs/typescript/src/xray/xray.service.ts +20 -0
- data/features/aws/x-ray/nextjs/javascript/app/api/aws/xray/route.js +17 -0
- data/features/aws/x-ray/nextjs/javascript/lib/xray.js +15 -0
- data/features/aws/x-ray/nextjs/javascript/package.json +5 -0
- data/features/aws/x-ray/nextjs/typescript/app/api/aws/xray/route.ts +16 -0
- data/features/aws/x-ray/nextjs/typescript/lib/xray.ts +6 -0
- data/features/aws/x-ray/nextjs/typescript/package.json +5 -0
- data/features/aws/x-ray/remixjs/typescript/app/routes/api/xray.ts +18 -0
- data/features/aws/x-ray/remixjs/typescript/app/utils/xray.ts +15 -0
- data/features/aws/x-ray/remixjs/typescript/package.json +5 -0
- data/features/database/mongodb/mongoose/javascript/expressjs/controllers/userController.js +15 -0
- data/features/database/mongodb/mongoose/javascript/expressjs/index.js +4 -0
- data/features/database/mongodb/mongoose/javascript/expressjs/models/User.js +9 -0
- data/features/database/mongodb/mongoose/javascript/expressjs/package.json +5 -0
- data/features/database/mongodb/mongoose/javascript/expressjs/routes/userRoutes.js +9 -0
- data/features/database/mongodb/mongoose/javascript/expressjs/utils/mongodb.js +8 -0
- data/features/database/mongodb/mongoose/javascript/nextjs/app/api/users/route.js +10 -0
- data/features/database/mongodb/mongoose/javascript/nextjs/lib/mongodb.js +24 -0
- data/features/database/mongodb/mongoose/javascript/nextjs/models/User.js +9 -0
- data/features/database/mongodb/mongoose/javascript/nextjs/package.json +5 -0
- data/features/database/mongodb/mongoose/typescript/expressjs/controllers/userController.ts +18 -0
- data/features/database/mongodb/mongoose/typescript/expressjs/index.ts +4 -0
- data/features/database/mongodb/mongoose/typescript/expressjs/models/User.ts +16 -0
- data/features/database/mongodb/mongoose/typescript/expressjs/package.json +5 -0
- data/features/database/mongodb/mongoose/typescript/expressjs/routes/userRoutes.ts +9 -0
- data/features/database/mongodb/mongoose/typescript/expressjs/utils/mongodb.ts +8 -0
- data/features/database/mongodb/mongoose/typescript/nestjs/package.json +5 -0
- data/features/database/mongodb/mongoose/typescript/nestjs/src/user/user.controller.ts +13 -0
- data/features/database/mongodb/mongoose/typescript/nestjs/src/user/user.module.ts +12 -0
- data/features/database/mongodb/mongoose/typescript/nestjs/src/user/user.schema.ts +11 -0
- data/features/database/mongodb/mongoose/typescript/nestjs/src/user/user.service.ts +13 -0
- data/features/database/mongodb/mongoose/typescript/nextjs/app/api/users/route.ts +10 -0
- data/features/database/mongodb/mongoose/typescript/nextjs/lib/mongodb.ts +24 -0
- data/features/database/mongodb/mongoose/typescript/nextjs/models/User.ts +16 -0
- data/features/database/mongodb/mongoose/typescript/nextjs/package.json +5 -0
- data/features/database/mongodb/mongoose/typescript/remixjs/app/models/User.ts +14 -0
- data/features/database/mongodb/mongoose/typescript/remixjs/app/routes/api.users.ts +10 -0
- data/features/database/mongodb/mongoose/typescript/remixjs/app/utils/mongodb.ts +8 -0
- data/features/database/mongodb/mongoose/typescript/remixjs/package.json +5 -0
- data/features/database/mongodb/typegoose/typescript/expressjs/controllers/userController.ts +9 -0
- data/features/database/mongodb/typegoose/typescript/expressjs/index.ts +4 -0
- data/features/database/mongodb/typegoose/typescript/expressjs/models/User.ts +11 -0
- data/features/database/mongodb/typegoose/typescript/expressjs/package.json +6 -0
- data/features/database/mongodb/typegoose/typescript/expressjs/routes/userRoutes.ts +8 -0
- data/features/database/mongodb/typegoose/typescript/expressjs/utils/mongodb.ts +8 -0
- data/features/database/mongodb/typegoose/typescript/nestjs/package.json +6 -0
- data/features/database/mongodb/typegoose/typescript/nestjs/src/user/user.controller.ts +13 -0
- data/features/database/mongodb/typegoose/typescript/nestjs/src/user/user.model.ts +9 -0
- data/features/database/mongodb/typegoose/typescript/nestjs/src/user/user.module.ts +20 -0
- data/features/database/mongodb/typegoose/typescript/nestjs/src/user/user.service.ts +13 -0
- data/features/database/mongodb/typegoose/typescript/nextjs/app/api/users/route.ts +9 -0
- data/features/database/mongodb/typegoose/typescript/nextjs/lib/mongodb.ts +24 -0
- data/features/database/mongodb/typegoose/typescript/nextjs/models/User.ts +11 -0
- data/features/database/mongodb/typegoose/typescript/nextjs/package.json +6 -0
- data/features/database/mongodb/typegoose/typescript/remixjs/app/models/User.ts +11 -0
- data/features/database/mongodb/typegoose/typescript/remixjs/app/routes/api.users.ts +10 -0
- data/features/database/mongodb/typegoose/typescript/remixjs/app/utils/mongodb.ts +8 -0
- data/features/database/mongodb/typegoose/typescript/remixjs/package.json +6 -0
- data/features/database/mysql/drizzle/typescript/expressjs/controllers/drizzleController.ts +11 -0
- data/features/database/mysql/drizzle/typescript/expressjs/index.ts +3 -0
- data/features/database/mysql/drizzle/typescript/expressjs/package.json +5 -0
- data/features/database/mysql/drizzle/typescript/expressjs/routes/drizzle.ts +8 -0
- data/features/database/mysql/drizzle/typescript/expressjs/utils/drizzle.ts +13 -0
- data/features/database/mysql/drizzle/typescript/nestjs/package.json +5 -0
- data/features/database/mysql/drizzle/typescript/nestjs/src/drizzle/drizzle.controller.ts +12 -0
- data/features/database/mysql/drizzle/typescript/nestjs/src/drizzle/drizzle.module.ts +9 -0
- data/features/database/mysql/drizzle/typescript/nestjs/src/drizzle/drizzle.service.ts +10 -0
- data/features/database/mysql/drizzle/typescript/nestjs/src/drizzle.ts +13 -0
- data/features/database/mysql/drizzle/typescript/nextjs/app/api/users/route.ts +11 -0
- data/features/database/mysql/drizzle/typescript/nextjs/lib/drizzle.ts +11 -0
- data/features/database/mysql/drizzle/typescript/nextjs/package.json +5 -0
- data/features/database/mysql/drizzle/typescript/remixjs/app/routes/api.drizzle.ts +12 -0
- data/features/database/mysql/drizzle/typescript/remixjs/app/utils/drizzle.ts +13 -0
- data/features/database/mysql/drizzle/typescript/remixjs/package.json +5 -0
- data/features/database/mysql/prisma/typescript/expressjs/controllers/prismaController.ts +7 -0
- data/features/database/mysql/prisma/typescript/expressjs/index.ts +3 -0
- data/features/database/mysql/prisma/typescript/expressjs/package.json +6 -0
- data/features/database/mysql/prisma/typescript/expressjs/prisma/schema.prisma +8 -0
- data/features/database/mysql/prisma/typescript/expressjs/routes/prismaRoutes.ts +8 -0
- data/features/database/mysql/prisma/typescript/expressjs/utils/prisma.ts +4 -0
- data/features/database/mysql/prisma/typescript/nestjs/package.json +6 -0
- data/features/database/mysql/prisma/typescript/nestjs/prisma/schema.prisma +8 -0
- data/features/database/mysql/prisma/typescript/nestjs/src/prisma.service.ts +16 -0
- data/features/database/mysql/prisma/typescript/nestjs/src/user/user.controller.ts +12 -0
- data/features/database/mysql/prisma/typescript/nestjs/src/user/user.module.ts +10 -0
- data/features/database/mysql/prisma/typescript/nestjs/src/user/user.service.ts +11 -0
- data/features/database/mysql/prisma/typescript/nextjs/app/api/users/route.ts +7 -0
- data/features/database/mysql/prisma/typescript/nextjs/lib/prisma.ts +8 -0
- data/features/database/mysql/prisma/typescript/nextjs/package.json +6 -0
- data/features/database/mysql/prisma/typescript/nextjs/prisma/schema.prisma +8 -0
- data/features/database/mysql/prisma/typescript/remixjs/app/prisma/schema.prisma +8 -0
- data/features/database/mysql/prisma/typescript/remixjs/app/routes/api.users.ts +8 -0
- data/features/database/mysql/prisma/typescript/remixjs/app/utils/prisma.ts +18 -0
- data/features/database/mysql/prisma/typescript/remixjs/package.json +6 -0
- data/features/database/mysql/typeorm/javascript/expressjs/controllers/typeormController.js +13 -0
- data/features/database/mysql/typeorm/javascript/expressjs/index.js +3 -0
- data/features/database/mysql/typeorm/javascript/expressjs/package.json +5 -0
- data/features/database/mysql/typeorm/javascript/expressjs/routes/typeormRoutes.js +8 -0
- data/features/database/mysql/typeorm/javascript/expressjs/utils/typeorm.js +9 -0
- data/features/database/mysql/typeorm/javascript/nextjs/app/api/typeorm/route.js +13 -0
- data/features/database/mysql/typeorm/javascript/nextjs/lib/typeorm.js +9 -0
- data/features/database/mysql/typeorm/javascript/nextjs/package.json +5 -0
- data/features/database/mysql/typeorm/typescript/expressjs/controllers/typeormController.ts +14 -0
- data/features/database/mysql/typeorm/typescript/expressjs/index.ts +3 -0
- data/features/database/mysql/typeorm/typescript/expressjs/package.json +5 -0
- data/features/database/mysql/typeorm/typescript/expressjs/routes/typeorm.ts +8 -0
- data/features/database/mysql/typeorm/typescript/expressjs/utils/typeorm.ts +9 -0
- data/features/database/mysql/typeorm/typescript/nestjs/package.json +5 -0
- data/features/database/mysql/typeorm/typescript/nestjs/src/typeorm/typeorm.controller.ts +12 -0
- data/features/database/mysql/typeorm/typescript/nestjs/src/typeorm/typeorm.module.ts +9 -0
- data/features/database/mysql/typeorm/typescript/nestjs/src/typeorm/typeorm.service.ts +16 -0
- data/features/database/mysql/typeorm/typescript/nestjs/src/typeorm.ts +9 -0
- data/features/database/mysql/typeorm/typescript/nextjs/app/api/typeorm/route.ts +13 -0
- data/features/database/mysql/typeorm/typescript/nextjs/lib/typeorm.ts +9 -0
- data/features/database/mysql/typeorm/typescript/nextjs/package.json +5 -0
- data/features/database/mysql/typeorm/typescript/remixjs/app/routes/api.typeorm.ts +14 -0
- data/features/database/mysql/typeorm/typescript/remixjs/app/utils/typeorm.ts +9 -0
- data/features/database/mysql/typeorm/typescript/remixjs/package.json +5 -0
- data/features/database/postgres/drizzle/typescript/expressjs/controllers/drizzleController.ts +11 -0
- data/features/database/postgres/drizzle/typescript/expressjs/index.ts +3 -0
- data/features/database/postgres/drizzle/typescript/expressjs/package.json +5 -0
- data/features/database/postgres/drizzle/typescript/expressjs/routes/drizzle.ts +8 -0
- data/features/database/postgres/drizzle/typescript/expressjs/utils/drizzle.ts +8 -0
- data/features/database/postgres/drizzle/typescript/nestjs/package.json +5 -0
- data/features/database/postgres/drizzle/typescript/nestjs/src/drizzle/drizzle.controller.ts +12 -0
- data/features/database/postgres/drizzle/typescript/nestjs/src/drizzle/drizzle.module.ts +9 -0
- data/features/database/postgres/drizzle/typescript/nestjs/src/drizzle/drizzle.service.ts +10 -0
- data/features/database/postgres/drizzle/typescript/nestjs/src/drizzle.ts +8 -0
- data/features/database/postgres/drizzle/typescript/nextjs/app/api/users/route.ts +11 -0
- data/features/database/postgres/drizzle/typescript/nextjs/lib/drizzle.ts +8 -0
- data/features/database/postgres/drizzle/typescript/nextjs/package.json +5 -0
- data/features/database/postgres/drizzle/typescript/remixjs/app/routes/api.drizzle.ts +12 -0
- data/features/database/postgres/drizzle/typescript/remixjs/app/utils/drizzle.ts +8 -0
- data/features/database/postgres/drizzle/typescript/remixjs/package.json +5 -0
- data/features/database/postgres/prisma/typescript/expressjs/controllers/prismaController.ts +7 -0
- data/features/database/postgres/prisma/typescript/expressjs/index.ts +3 -0
- data/features/database/postgres/prisma/typescript/expressjs/package.json +6 -0
- data/features/database/postgres/prisma/typescript/expressjs/prisma/schema.prisma +8 -0
- data/features/database/postgres/prisma/typescript/expressjs/routes/prismaRoutes.ts +8 -0
- data/features/database/postgres/prisma/typescript/expressjs/utils/prisma.ts +4 -0
- data/features/database/postgres/prisma/typescript/nestjs/package.json +6 -0
- data/features/database/postgres/prisma/typescript/nestjs/prisma/schema.prisma +8 -0
- data/features/database/postgres/prisma/typescript/nestjs/src/prisma.service.ts +16 -0
- data/features/database/postgres/prisma/typescript/nestjs/src/user/user.controller.ts +12 -0
- data/features/database/postgres/prisma/typescript/nestjs/src/user/user.module.ts +10 -0
- data/features/database/postgres/prisma/typescript/nestjs/src/user/user.service.ts +11 -0
- data/features/database/postgres/prisma/typescript/nextjs/app/api/users/route.ts +7 -0
- data/features/database/postgres/prisma/typescript/nextjs/lib/prisma.ts +8 -0
- data/features/database/postgres/prisma/typescript/nextjs/package.json +6 -0
- data/features/database/postgres/prisma/typescript/nextjs/prisma/schema.prisma +8 -0
- data/features/database/postgres/prisma/typescript/remixjs/app/prisma/schema.prisma +8 -0
- data/features/database/postgres/prisma/typescript/remixjs/app/routes/api.users.ts +8 -0
- data/features/database/postgres/prisma/typescript/remixjs/app/utils/prisma.ts +18 -0
- data/features/database/postgres/prisma/typescript/remixjs/package.json +6 -0
- data/features/database/postgres/typeorm/javascript/expressjs/controllers/typeormController.js +13 -0
- data/features/database/postgres/typeorm/javascript/expressjs/index.js +3 -0
- data/features/database/postgres/typeorm/javascript/expressjs/package.json +5 -0
- data/features/database/postgres/typeorm/javascript/expressjs/routes/typeormRoutes.js +8 -0
- data/features/database/postgres/typeorm/javascript/expressjs/utils/typeorm.js +9 -0
- data/features/database/postgres/typeorm/javascript/nextjs/app/api/typeorm/route.js +13 -0
- data/features/database/postgres/typeorm/javascript/nextjs/lib/typeorm.js +9 -0
- data/features/database/postgres/typeorm/javascript/nextjs/package.json +5 -0
- data/features/database/postgres/typeorm/typescript/expressjs/controllers/typeormController.ts +14 -0
- data/features/database/postgres/typeorm/typescript/expressjs/index.ts +3 -0
- data/features/database/postgres/typeorm/typescript/expressjs/package.json +5 -0
- data/features/database/postgres/typeorm/typescript/expressjs/routes/typeorm.ts +8 -0
- data/features/database/postgres/typeorm/typescript/expressjs/utils/typeorm.ts +9 -0
- data/features/database/postgres/typeorm/typescript/nestjs/package.json +5 -0
- data/features/database/postgres/typeorm/typescript/nestjs/src/typeorm/typeorm.controller.ts +12 -0
- data/features/database/postgres/typeorm/typescript/nestjs/src/typeorm/typeorm.module.ts +9 -0
- data/features/database/postgres/typeorm/typescript/nestjs/src/typeorm/typeorm.service.ts +16 -0
- data/features/database/postgres/typeorm/typescript/nestjs/src/typeorm.ts +9 -0
- data/features/database/postgres/typeorm/typescript/nextjs/app/api/typeorm/route.ts +12 -0
- data/features/database/postgres/typeorm/typescript/nextjs/lib/typeorm.ts +9 -0
- data/features/database/postgres/typeorm/typescript/nextjs/package.json +5 -0
- data/features/database/postgres/typeorm/typescript/remixjs/app/routes/api.typeorm.ts +15 -0
- data/features/database/postgres/typeorm/typescript/remixjs/app/utils/typeorm.ts +9 -0
- data/features/database/postgres/typeorm/typescript/remixjs/package.json +5 -0
- data/features/docker/angularjs/Dockerfile +105 -0
- data/features/docker/angularjs/docker-compose.yml +222 -0
- data/features/docker/expressjs/Dockerfile +55 -0
- data/features/docker/expressjs/docker-compose.yml +114 -0
- data/features/docker/nestjs/Dockerfile +78 -0
- data/features/docker/nestjs/docker-compose.yml +121 -0
- data/features/docker/nextjs/Dockerfile +59 -0
- data/features/docker/nextjs/docker-compose.yml +76 -0
- data/features/docker/reactjs/Dockerfile +60 -0
- data/features/docker/reactjs/docker-compose.yml +78 -0
- data/features/docker/reactjs+expressjs+shadcn/Dockerfile +85 -0
- data/features/docker/reactjs+expressjs+shadcn/docker-compose.yml +75 -0
- data/features/docker/reactjs+nestjs+shadcn/Dockerfile +87 -0
- data/features/docker/reactjs+nestjs+shadcn/docker-compose.yml +76 -0
- data/features/docker/rust/Dockerfile +65 -0
- data/features/docker/rust/docker-compose.yml +120 -0
- data/features/docker/vuejs/Dockerfile +68 -0
- data/features/docker/vuejs/docker-compose.yml +96 -0
- data/features/features.json +7526 -0
- data/features/payment/paypal/expressjs/javascript/controllers/paypalControllers.js +19 -0
- data/features/payment/paypal/expressjs/javascript/index.js +3 -0
- data/features/payment/paypal/expressjs/javascript/routes/paypalRoutes.js +10 -0
- data/features/payment/paypal/expressjs/javascript/utils/paypal.js +42 -0
- data/features/payment/paypal/expressjs/typescript/controllers/paypalControllers.ts +19 -0
- data/features/payment/paypal/expressjs/typescript/index.ts +3 -0
- data/features/payment/paypal/expressjs/typescript/routes/paypalRoutes.ts +10 -0
- data/features/payment/paypal/expressjs/typescript/utils/paypal.ts +42 -0
- data/features/payment/paypal/nestjs/typescript/src/paypal.controller.ts +22 -0
- data/features/payment/paypal/nestjs/typescript/src/paypal.service.ts +48 -0
- data/features/payment/paypal/nextjs/javascript/app/api/paypal/capture-payment/route.js +38 -0
- data/features/payment/paypal/nextjs/javascript/app/api/paypal/create-payment/route.js +43 -0
- data/features/payment/paypal/nextjs/javascript/app/api/paypal/refund/route.ts +38 -0
- data/features/payment/paypal/nextjs/javascript/app/payment-checkout/page.tsx +29 -0
- data/features/payment/paypal/nextjs/typescript/app/api/paypal/capture-payment/route.ts +38 -0
- data/features/payment/paypal/nextjs/typescript/app/api/paypal/create-payment/route.ts +43 -0
- data/features/payment/paypal/nextjs/typescript/app/api/paypal/refund/route.ts +38 -0
- data/features/payment/paypal/nextjs/typescript/app/payment-checkout/page.tsx +29 -0
- data/features/payment/paypal/remixjs/typescript/app/routes/api/paypal.ts +49 -0
- data/features/payment/paypal/remixjs/typescript/app/routes/checkout.tsx +16 -0
- data/features/payment/razorpay/expressjs/javascript/controllers/payment.js +20 -0
- data/features/payment/razorpay/expressjs/javascript/index.js +3 -0
- data/features/payment/razorpay/expressjs/javascript/package.json +5 -0
- data/features/payment/razorpay/expressjs/javascript/routes/payment.js +13 -0
- data/features/payment/razorpay/expressjs/typescript/controllers/payment.ts +20 -0
- data/features/payment/razorpay/expressjs/typescript/index.ts +3 -0
- data/features/payment/razorpay/expressjs/typescript/package.json +5 -0
- data/features/payment/razorpay/expressjs/typescript/routes/payment.ts +17 -0
- data/features/payment/razorpay/nestjs/typescript/package.json +5 -0
- data/features/payment/razorpay/nestjs/typescript/src/payment.controller.ts +24 -0
- data/features/payment/razorpay/nextjs/javascript/app/api/payment/route.js +24 -0
- data/features/payment/razorpay/nextjs/javascript/app/api/refund/route.js +20 -0
- data/features/payment/razorpay/nextjs/javascript/app/payment-checkout/page.jsx +65 -0
- data/features/payment/razorpay/nextjs/javascript/package.json +5 -0
- data/features/payment/razorpay/nextjs/typescript/app/api/payment/route.ts +18 -0
- data/features/payment/razorpay/nextjs/typescript/app/api/refund/route.ts +17 -0
- data/features/payment/razorpay/nextjs/typescript/app/payment-checkout/page.tsx +33 -0
- data/features/payment/razorpay/nextjs/typescript/package.json +5 -0
- data/features/payment/razorpay/remixjs/typescript/app/routes/api.orders.ts +16 -0
- data/features/payment/razorpay/remixjs/typescript/app/routes/api.refunds.ts +13 -0
- data/features/payment/razorpay/remixjs/typescript/app/routes/checkout.tsx +29 -0
- data/features/payment/razorpay/remixjs/typescript/package.json +5 -0
- data/features/payment/stripe/expressjs/javascript/controllers/stripeController.js +32 -0
- data/features/payment/stripe/expressjs/javascript/index.js +3 -0
- data/features/payment/stripe/expressjs/javascript/package.json +6 -0
- data/features/payment/stripe/expressjs/javascript/routes/stripeRoutes.js +9 -0
- data/features/payment/stripe/expressjs/typescript/controllers/stripeControllers.ts +32 -0
- data/features/payment/stripe/expressjs/typescript/index.ts +3 -0
- data/features/payment/stripe/expressjs/typescript/package.json +7 -0
- data/features/payment/stripe/expressjs/typescript/routes/stripeRoutes.ts +9 -0
- data/features/payment/stripe/expressjs/typescript/utils/stripe.ts +5 -0
- data/features/payment/stripe/nestjs/typescript/package.json +7 -0
- data/features/payment/stripe/nestjs/typescript/src/app.module.ts +6 -0
- data/features/payment/stripe/nestjs/typescript/src/stripe/stripe.controller.ts +0 -0
- data/features/payment/stripe/nestjs/typescript/src/stripe/stripe.module.ts +9 -0
- data/features/payment/stripe/nestjs/typescript/src/stripe/stripe.service.ts +27 -0
- data/features/payment/stripe/nextjs/javascript/app/api/stripe/create-payment-intent/route.js +19 -0
- data/features/payment/stripe/nextjs/javascript/app/api/stripe/refund/route.js +17 -0
- data/features/payment/stripe/nextjs/javascript/app/payment-checkout/page.jsx +48 -0
- data/features/payment/stripe/nextjs/javascript/package.json +6 -0
- data/features/payment/stripe/nextjs/typescript/app/api/stripe/create-payment-intent/route.ts +18 -0
- data/features/payment/stripe/nextjs/typescript/app/api/stripe/refund/route.ts +16 -0
- data/features/payment/stripe/nextjs/typescript/app/payment-checkout/page.tsx +45 -0
- data/features/payment/stripe/nextjs/typescript/lib/stripe.ts +5 -0
- data/features/payment/stripe/nextjs/typescript/package.json +7 -0
- data/features/payment/stripe/remixjs/typescript/app/routes/checkout.tsx +19 -0
- data/features/payment/stripe/remixjs/typescript/app/routes/refund.tsx +17 -0
- data/features/payment/stripe/remixjs/typescript/app/utils/stripe.server.ts +5 -0
- data/features/payment/stripe/remixjs/typescript/package.json +7 -0
- data/features/payment/stripe/vuejs/javascript/package.json +5 -0
- data/features/payment/stripe/vuejs/javascript/src/components/VueStripe.vue +12 -0
- data/features/payment/stripe/vuejs/typescript/package.json +5 -0
- data/features/payment/stripe/vuejs/typescript/src/components/VueStripe.vue +12 -0
- data/features/storage/cloudinary/expressjs/javascript/controllers/cloudinaryControllers.js +31 -0
- data/features/storage/cloudinary/expressjs/javascript/index.js +3 -0
- data/features/storage/cloudinary/expressjs/javascript/package.json +5 -0
- data/features/storage/cloudinary/expressjs/javascript/routes/cloudinaryRoutes.js +10 -0
- data/features/storage/cloudinary/expressjs/javascript/utils/cloudinary.js +20 -0
- data/features/storage/cloudinary/expressjs/typescript/controllers/cloudinaryControllers.ts +32 -0
- data/features/storage/cloudinary/expressjs/typescript/index.ts +4 -0
- data/features/storage/cloudinary/expressjs/typescript/package.json +5 -0
- data/features/storage/cloudinary/expressjs/typescript/routes/cloudinaryRoutes.ts +10 -0
- data/features/storage/cloudinary/expressjs/typescript/utils/cloudinary.ts +20 -0
- data/features/storage/cloudinary/nestjs/typescript/package.json +5 -0
- data/features/storage/cloudinary/nestjs/typescript/src/cloudinary/cloudinary.controller.ts +22 -0
- data/features/storage/cloudinary/nestjs/typescript/src/cloudinary/cloudinary.module.ts +9 -0
- data/features/storage/cloudinary/nestjs/typescript/src/cloudinary/cloudinary.service.ts +26 -0
- data/features/storage/cloudinary/nextjs/javascript/app/api/cloudinary/delete/route.js +12 -0
- data/features/storage/cloudinary/nextjs/javascript/app/api/cloudinary/list/route.js +13 -0
- data/features/storage/cloudinary/nextjs/javascript/app/api/cloudinary/upload/route.js +12 -0
- data/features/storage/cloudinary/nextjs/javascript/lib/cloudinary.js +20 -0
- data/features/storage/cloudinary/nextjs/javascript/package.json +5 -0
- data/features/storage/cloudinary/nextjs/typescript/app/api/cloudinary/delete/route.ts +12 -0
- data/features/storage/cloudinary/nextjs/typescript/app/api/cloudinary/list/route.ts +13 -0
- data/features/storage/cloudinary/nextjs/typescript/app/api/cloudinary/upload/route.ts +12 -0
- data/features/storage/cloudinary/nextjs/typescript/lib/cloudinary.ts +23 -0
- data/features/storage/cloudinary/nextjs/typescript/package.json +5 -0
- data/features/storage/cloudinary/remixjs/typescript/app/routes/api/cloudinary.ts +22 -0
- data/features/storage/cloudinary/remixjs/typescript/app/utils/cloudinary.ts +20 -0
- data/features/storage/cloudinary/remixjs/typescript/package.json +5 -0
- data/features/storage/google-cloud/expressjs/javascript/controllers/gcsControllers.js +31 -0
- data/features/storage/google-cloud/expressjs/javascript/index.js +0 -0
- data/features/storage/google-cloud/expressjs/javascript/package.json +5 -0
- data/features/storage/google-cloud/expressjs/javascript/routes/gcsRoutes.js +18 -0
- data/features/storage/google-cloud/expressjs/javascript/utils/gcs.js +30 -0
- data/features/storage/google-cloud/expressjs/typescript/controllers/gcsControllers.ts +32 -0
- data/features/storage/google-cloud/expressjs/typescript/index.ts +3 -0
- data/features/storage/google-cloud/expressjs/typescript/package.json +5 -0
- data/features/storage/google-cloud/expressjs/typescript/routes/gcsRoutes.ts +10 -0
- data/features/storage/google-cloud/expressjs/typescript/utils/gcs.ts +30 -0
- data/features/storage/google-cloud/nestjs/typescript/package.json +5 -0
- data/features/storage/google-cloud/nestjs/typescript/src/gcs/gcs.controller.ts +22 -0
- data/features/storage/google-cloud/nestjs/typescript/src/gcs/gcs.module.ts +9 -0
- data/features/storage/google-cloud/nestjs/typescript/src/gcs/gcs.service.ts +34 -0
- data/features/storage/google-cloud/nextjs/javascript/app/api/gcs/delete/route.js +26 -0
- data/features/storage/google-cloud/nextjs/javascript/app/api/gcs/list/route.js +22 -0
- data/features/storage/google-cloud/nextjs/javascript/app/api/gcs/upload/route.js +30 -0
- data/features/storage/google-cloud/nextjs/javascript/lib/gcs.js +26 -0
- data/features/storage/google-cloud/nextjs/javascript/package.json +5 -0
- data/features/storage/google-cloud/nextjs/typescript/app/api/gcs/delete/route.ts +12 -0
- data/features/storage/google-cloud/nextjs/typescript/app/api/gcs/list/route.ts +13 -0
- data/features/storage/google-cloud/nextjs/typescript/app/api/gcs/upload/route.ts +12 -0
- data/features/storage/google-cloud/nextjs/typescript/lib/gcs.ts +32 -0
- data/features/storage/google-cloud/nextjs/typescript/package.json +5 -0
- data/features/storage/google-cloud/remixjs/typescript/package.json +5 -0
- data/features/storage/google-cloud/remixjs/typescript/routes/api/gcs.ts +23 -0
- data/features/storage/google-cloud/remixjs/typescript/utils/gcs.ts +30 -0
- data/features/storage/imagekit.io/expressjs/javascript/controllers/imagekitControllers.js +30 -0
- data/features/storage/imagekit.io/expressjs/javascript/index.js +3 -0
- data/features/storage/imagekit.io/expressjs/javascript/package.json +5 -0
- data/features/storage/imagekit.io/expressjs/javascript/routes/imagekitRoutes.js +10 -0
- data/features/storage/imagekit.io/expressjs/javascript/utils/imagekit.js +19 -0
- data/features/storage/imagekit.io/expressjs/typescript/controllers/imagekitControllers.ts +31 -0
- data/features/storage/imagekit.io/expressjs/typescript/index.ts +3 -0
- data/features/storage/imagekit.io/expressjs/typescript/package.json +5 -0
- data/features/storage/imagekit.io/expressjs/typescript/routes/imagekitRoutes.ts +10 -0
- data/features/storage/imagekit.io/expressjs/typescript/utils/imagekit.ts +19 -0
- data/features/storage/imagekit.io/nestjs/typescript/package.json +5 -0
- data/features/storage/imagekit.io/nestjs/typescript/src/imagekit/imagekit.controller.ts +22 -0
- data/features/storage/imagekit.io/nestjs/typescript/src/imagekit/imagekit.module.ts +9 -0
- data/features/storage/imagekit.io/nestjs/typescript/src/imagekit/imagekit.service.ts +23 -0
- data/features/storage/imagekit.io/nextjs/javascript/app/api/imagekit/delete/route.js +12 -0
- data/features/storage/imagekit.io/nextjs/javascript/app/api/imagekit/list/route.js +13 -0
- data/features/storage/imagekit.io/nextjs/javascript/app/api/imagekit/upload/route.js +12 -0
- data/features/storage/imagekit.io/nextjs/javascript/lib/imagekit.js +19 -0
- data/features/storage/imagekit.io/nextjs/javascript/package.json +5 -0
- data/features/storage/imagekit.io/nextjs/typescript/app/api/imagekit/delete/route.ts +12 -0
- data/features/storage/imagekit.io/nextjs/typescript/app/api/imagekit/list/route.ts +13 -0
- data/features/storage/imagekit.io/nextjs/typescript/app/api/imagekit/upload/route.ts +12 -0
- data/features/storage/imagekit.io/nextjs/typescript/lib/imagekit.ts +23 -0
- data/features/storage/imagekit.io/nextjs/typescript/package.json +5 -0
- data/features/storage/imagekit.io/remixjs/typescript/app/routes/api/imagekit.ts +23 -0
- data/features/storage/imagekit.io/remixjs/typescript/app/utils/imagekit.ts +19 -0
- data/features/storage/imagekit.io/remixjs/typescript/package.json +5 -0
- data/features/testing/jest/angularjs/tests/angularjs.test.js +12 -0
- data/features/testing/jest/expressjs/tests/javascript/expressjs.test.js +12 -0
- data/features/testing/jest/expressjs/tests/typescript/expressjs.test.ts +12 -0
- data/features/testing/jest/go/tests/go.test.js +12 -0
- data/features/testing/jest/nextjs/tests/javascript/nextjs.test.js +12 -0
- data/features/testing/jest/nextjs/tests/typescript/nextjs.test.ts +12 -0
- data/features/ui/daisy/angularjs/typescript/package.json +8 -0
- data/features/ui/daisy/angularjs/typescript/src/styles.css +2 -0
- data/features/ui/daisy/nextjs/javascript/app/globals.css +2 -0
- data/features/ui/daisy/nextjs/javascript/package.json +7 -0
- data/features/ui/daisy/nextjs/javascript/postcss.config.mjs +7 -0
- data/features/ui/daisy/nextjs/typescript/app/globals.css +2 -0
- data/features/ui/daisy/nextjs/typescript/package.json +7 -0
- data/features/ui/daisy/nextjs/typescript/postcss.config.mjs +7 -0
- data/features/ui/daisy/reactjs/javascript/package.json +7 -0
- data/features/ui/daisy/reactjs/javascript/src/index.css +2 -0
- data/features/ui/daisy/reactjs/javascript/vite.config.js +13 -0
- data/features/ui/daisy/reactjs/typescript/package.json +7 -0
- data/features/ui/daisy/reactjs/typescript/src/index.css +2 -0
- data/features/ui/daisy/reactjs/typescript/vite.config.ts +7 -0
- data/features/ui/daisy/vuejs/javascript/package.json +7 -0
- data/features/ui/daisy/vuejs/javascript/src/assets/main.css +2 -0
- data/features/ui/daisy/vuejs/javascript/vite.config.ts +22 -0
- data/features/ui/daisy/vuejs/typescript/package.json +7 -0
- data/features/ui/daisy/vuejs/typescript/src/assets/main.css +2 -0
- data/features/ui/daisy/vuejs/typescript/vite.config.ts +22 -0
- data/lib/package_installer_cli.rb +82 -0
- data/package.json +94 -0
- data/template.json +158 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/README.md +59 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/angular.json +90 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/package-lock.json +9632 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/package.json +51 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/public/favicon.ico +0 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.component.html +23 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.config.server.ts +12 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.config.ts +13 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.css +0 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.html +342 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.module.ts +22 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.routes.server.ts +8 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.routes.ts +3 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.spec.ts +25 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/app/app.ts +12 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/index.html +13 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/main.server.ts +7 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/main.ts +6 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/server.ts +68 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/src/styles.css +1 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/tsconfig.app.json +17 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/tsconfig.json +34 -0
- data/templates/angularjs/typescript/material-ui-no-tailwind-template/tsconfig.spec.json +14 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/README.md +59 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/angular.json +94 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/package-lock.json +9769 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/package.json +56 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/public/favicon.ico +0 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.component.html +23 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.config.server.ts +12 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.config.ts +13 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.css +0 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.html +342 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.module.ts +22 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.routes.server.ts +8 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.routes.ts +3 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.spec.ts +25 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/app/app.ts +12 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/custom-theme.scss +30 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/index.html +15 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/main.server.ts +7 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/main.ts +6 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/server.ts +68 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/src/styles.css +7 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/tailwind-config.js +11 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/tsconfig.app.json +17 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/tsconfig.json +34 -0
- data/templates/angularjs/typescript/material-ui-tailwind-template/tsconfig.spec.json +14 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/README.md +59 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/angular.json +90 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/package.json +51 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/public/favicon.ico +0 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/app/app.config.server.ts +12 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/app/app.config.ts +13 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/app/app.css +0 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/app/app.html +342 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/app/app.routes.server.ts +8 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/app/app.routes.ts +3 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/app/app.spec.ts +25 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/app/app.ts +12 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/index.html +13 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/main.server.ts +7 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/main.ts +6 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/server.ts +68 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/src/styles.css +1 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/tsconfig.app.json +17 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/tsconfig.json +34 -0
- data/templates/angularjs/typescript/no-material-no-tailwind-template/tsconfig.spec.json +14 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/README.md +55 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/apps/__init__.py +0 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/apps/default/__init__.py +0 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/apps/default/admin.py +2 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/apps/default/migrations/__init__.py +0 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/apps/default/models.py +2 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/apps/default/tests.py +3 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/apps/default/views.py +4 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/bower.json +20 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/gulp.config.js +136 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/gulpfile.js +187 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/manage.py +10 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/package.json +31 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/project_name/__init__.py +0 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/project_name/settings.py +120 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/project_name/urls.py +28 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/project_name/wsgi.py +16 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/static/img/favicon.ico +0 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/static/js/app.js +1 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/static/less/colors.less +1 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/static/less/fonts.less +1 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/static/less/site.less +6 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/templates/base.html +38 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/project_name/templates/index.html +6 -0
- data/templates/django/django-bower-and-gulp-config-template/django-project-template/requirements.txt +0 -0
- data/templates/django/django-full-stack-template/django-project-template/Dockerfile +78 -0
- data/templates/django/django-full-stack-template/django-project-template/Dockerfile.min +37 -0
- data/templates/django/django-full-stack-template/django-project-template/README.rst +205 -0
- data/templates/django/django-full-stack-template/django-project-template/codecov.yml +3 -0
- data/templates/django/django-full-stack-template/django-project-template/deployment/docker/build.sh +4 -0
- data/templates/django/django-full-stack-template/django-project-template/deployment/docker/manage.py +10 -0
- data/templates/django/django-full-stack-template/django-project-template/deployment/docker/uwsgi-local.ini +10 -0
- data/templates/django/django-full-stack-template/django-project-template/deployment/docker/uwsgi.ini +72 -0
- data/templates/django/django-full-stack-template/django-project-template/src/Makefile +48 -0
- data/templates/django/django-full-stack-template/django-project-template/src/compile-locale.sh +5 -0
- data/templates/django/django-full-stack-template/django-project-template/src/compile-sass.sh +8 -0
- data/templates/django/django-full-stack-template/django-project-template/src/example_data.json +28 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/__init__.py +0 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/context_processors.py +15 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/gulp/config.js +135 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/gulp/tasks/clean.js +16 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/gulp/tasks/imagemin.js +20 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/gulp/tasks/sass.js +54 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/gulp/tasks/vendor.js +62 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/gulp/tasks/watch.js +18 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/sass/msie.scss +1 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/sass/partials/core/_layout.scss +17 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/sass/partials/core/_mixins.scss +40 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/sass/partials/core/_reset.scss +13 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/sass/partials/core/_typography.scss +13 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/sass/partials/core/_variables.scss +26 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/sass/partials/modules/_forms.scss +0 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/sass/partials/modules/_header.scss +5 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/sass/screen.scss +52 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/static/frontend/css/msie.css +3 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/static/frontend/css/screen.css +6295 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/static/frontend/images/social-logo.png +0 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/static/frontend/vendor/bootstrap.min.js +2 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/static/frontend/vendor/jquery.min.js +2 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/static/frontend/vendor/popper.min.js +5 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/templates/403.html +15 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/templates/404.html +15 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/templates/500.html +58 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/templates/base.html +81 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/templates/robots.txt +1 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/templatetags/__init__.py +0 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/templatetags/frontend_tags.py +3 -0
- data/templates/django/django-full-stack-template/django-project-template/src/frontend/views.py +39 -0
- data/templates/django/django-full-stack-template/django-project-template/src/gulpfile.js +22 -0
- data/templates/django/django-full-stack-template/django-project-template/src/locale/nl/LC_MESSAGES/django.po +53 -0
- data/templates/django/django-full-stack-template/django-project-template/src/manage.py +10 -0
- data/templates/django/django-full-stack-template/django-project-template/src/package.json +43 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/__init__.py +0 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/apps/__init__.py +0 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/lib/__init__.py +1 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/lib/healthchecks.py +5 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/lib/http.py +23 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/settings/__init__.py +13 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/settings/defaults.py +315 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/settings/docker.py +35 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/settings/local.py.example +72 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/settings/locale/__init__.py +0 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/settings/locale/nl/__init__.py +0 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/settings/locale/nl/formats.py +13 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/settings/production.py +21 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/settings/unittest.py +33 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/urls.py +61 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/wsgi/__init__.py +0 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/wsgi/development.py +18 -0
- data/templates/django/django-full-stack-template/django-project-template/src/project_name/wsgi/docker.py +8 -0
- data/templates/django/django-full-stack-template/django-project-template/src/pytest.ini +5 -0
- data/templates/django/django-full-stack-template/django-project-template/src/requirements/base.in +36 -0
- data/templates/django/django-full-stack-template/django-project-template/src/requirements/base.txt +43 -0
- data/templates/django/django-full-stack-template/django-project-template/src/requirements/dev.txt +27 -0
- data/templates/django/django-full-stack-template/django-project-template/src/requirements/docker.txt +1 -0
- data/templates/django/django-full-stack-template/django-project-template/src/requirements/unittest.txt +11 -0
- data/templates/django/django-full-stack-template/django-project-template/src/tests/test_frontend.py +33 -0
- data/templates/django/django-full-stack-template/django-project-template/src/tests/test_jpeg.py +23 -0
- data/templates/django/django-full-stack-template/django-project-template/src/tests/test_wsgi.py +3 -0
- data/templates/django/django-full-stack-template/django-project-template/web/503.html +46 -0
- data/templates/django/django-full-stack-template/django-project-template/web/504.html +46 -0
- data/templates/django/django-full-stack-template/django-project-template/web/browserconfig.xml +5 -0
- data/templates/django/django-full-stack-template/django-project-template/web/manifest.json +7 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/README.it.md +86 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/README.md +86 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/another_app/__init__.py +0 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/another_app/admin.py +3 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/another_app/apps.py +6 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/another_app/migrations/__init__.py +0 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/another_app/models.py +3 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/another_app/tests.py +3 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/another_app/urls.py +9 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/another_app/views.py +11 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/django_inertia_svelte/__init__.py +0 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/django_inertia_svelte/asgi.py +8 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/django_inertia_svelte/middleware.py +18 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/django_inertia_svelte/settings.py +185 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/django_inertia_svelte/urls.py +13 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/django_inertia_svelte/wsgi.py +8 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/manage.py +23 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/package-lock.json +1551 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/package.json +20 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/requirements.txt +7 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/sample_app/__init__.py +0 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/sample_app/admin.py +3 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/sample_app/apps.py +6 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/sample_app/migrations/__init__.py +0 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/sample_app/models.py +3 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/sample_app/tests.py +3 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/sample_app/urls.py +10 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/sample_app/views.py +31 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/static/assets/css/admin.css +75 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/static/assets/img/potato.png +0 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/static/src/js/main.js +18 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/static/src/pages/another_app/contacts.svelte +12 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/static/src/pages/layout.svelte +32 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/static/src/pages/sample_app/about.svelte +12 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/static/src/pages/sample_app/index.svelte +12 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/templates/base.html +19 -0
- data/templates/django/django-inertia-svelte-template/django-inertia-svelte-template-starter/vite.config.js +39 -0
- data/templates/django/djangoTemplate/djangoTemplate/__init__.py +0 -0
- data/templates/django/djangoTemplate/djangoTemplate/asgi.py +16 -0
- data/templates/django/djangoTemplate/djangoTemplate/settings.py +122 -0
- data/templates/django/djangoTemplate/djangoTemplate/urls.py +22 -0
- data/templates/django/djangoTemplate/djangoTemplate/wsgi.py +16 -0
- data/templates/django/djangoTemplate/manage.py +22 -0
- data/templates/expressjs/javascript/advance-expressjs-template/README.md +308 -0
- data/templates/expressjs/javascript/advance-expressjs-template/__tests__/setup.js +29 -0
- data/templates/expressjs/javascript/advance-expressjs-template/__tests__/user.test.js +242 -0
- data/templates/expressjs/javascript/advance-expressjs-template/controllers/user.controller.js +167 -0
- data/templates/expressjs/javascript/advance-expressjs-template/db/database.js +37 -0
- data/templates/expressjs/javascript/advance-expressjs-template/index.js +59 -0
- data/templates/expressjs/javascript/advance-expressjs-template/jest.config.js +19 -0
- data/templates/expressjs/javascript/advance-expressjs-template/middleware/errorHandler.js +81 -0
- data/templates/expressjs/javascript/advance-expressjs-template/middleware/security.js +96 -0
- data/templates/expressjs/javascript/advance-expressjs-template/middleware/validation.js +54 -0
- data/templates/expressjs/javascript/advance-expressjs-template/models/user.model.js +64 -0
- data/templates/expressjs/javascript/advance-expressjs-template/package.json +36 -0
- data/templates/expressjs/javascript/advance-expressjs-template/routes/index.js +31 -0
- data/templates/expressjs/javascript/advance-expressjs-template/routes/user.routes.js +44 -0
- data/templates/expressjs/javascript/advance-expressjs-template/utils/logger.js +68 -0
- data/templates/expressjs/javascript/basic-expressjs-template/controllers/user.controller.js +13 -0
- data/templates/expressjs/javascript/basic-expressjs-template/index.js +28 -0
- data/templates/expressjs/javascript/basic-expressjs-template/models/user.model.js +9 -0
- data/templates/expressjs/javascript/basic-expressjs-template/package.json +14 -0
- data/templates/expressjs/javascript/basic-expressjs-template/routes/user.routes.js +9 -0
- data/templates/expressjs/typescript/advance-expressjs-template/README.md +294 -0
- data/templates/expressjs/typescript/advance-expressjs-template/__tests__/setup.ts +29 -0
- data/templates/expressjs/typescript/advance-expressjs-template/__tests__/user.test.ts +242 -0
- data/templates/expressjs/typescript/advance-expressjs-template/db/database.ts +38 -0
- data/templates/expressjs/typescript/advance-expressjs-template/index.ts +59 -0
- data/templates/expressjs/typescript/advance-expressjs-template/jest.config.js +25 -0
- data/templates/expressjs/typescript/advance-expressjs-template/middleware/errorHandler.ts +92 -0
- data/templates/expressjs/typescript/advance-expressjs-template/middleware/security.ts +96 -0
- data/templates/expressjs/typescript/advance-expressjs-template/middleware/validation.ts +55 -0
- data/templates/expressjs/typescript/advance-expressjs-template/models/user.model.ts +65 -0
- data/templates/expressjs/typescript/advance-expressjs-template/package.json +49 -0
- data/templates/expressjs/typescript/advance-expressjs-template/routes/index.ts +31 -0
- data/templates/expressjs/typescript/advance-expressjs-template/routes/user.routes.ts +44 -0
- data/templates/expressjs/typescript/advance-expressjs-template/types/index.ts +53 -0
- data/templates/expressjs/typescript/advance-expressjs-template/utils/logger.ts +79 -0
- data/templates/expressjs/typescript/basic-expressjs-template/controllers/user.controller.ts +14 -0
- data/templates/expressjs/typescript/basic-expressjs-template/index.ts +28 -0
- data/templates/expressjs/typescript/basic-expressjs-template/models/user.model.ts +14 -0
- data/templates/expressjs/typescript/basic-expressjs-template/package.json +18 -0
- data/templates/expressjs/typescript/basic-expressjs-template/routes/user.routes.ts +9 -0
- data/templates/flask/flask-cookiecutter-advance-template/Dockerfile +7 -0
- data/templates/flask/flask-cookiecutter-advance-template/LICENSE +19 -0
- data/templates/flask/flask-cookiecutter-advance-template/README.md +235 -0
- data/templates/flask/flask-cookiecutter-advance-template/SECURITY.md +1 -0
- data/templates/flask/flask-cookiecutter-advance-template/cookiecutter-docker.sh +55 -0
- data/templates/flask/flask-cookiecutter-advance-template/cookiecutter.json +12 -0
- data/templates/flask/flask-cookiecutter-advance-template/cookiecutter_spec.py +100 -0
- data/templates/flask/flask-cookiecutter-advance-template/hooks/__init__.py +0 -0
- data/templates/flask/flask-cookiecutter-advance-template/hooks/post_gen_project.py +40 -0
- data/templates/flask/flask-cookiecutter-advance-template/hooks/pre_gen_project.py +59 -0
- data/templates/flask/flask-cookiecutter-advance-template/requirements.txt +4 -0
- data/templates/flask/flask-cookiecutter-advance-template/tasks.py +102 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/Dockerfile +75 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/LICENSE +19 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/Pipfile +66 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/Procfile +2 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/README.md +235 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/app.json +29 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/assets/css/style.css +86 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/assets/img/favicon.ico +0 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/assets/js/main.js +20 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/assets/js/plugins.js +1 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/assets/js/script.js +1 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/autoapp.py +5 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/docker-compose.yml +56 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/eslint.config.js +6 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/package.json +57 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/pyproject.toml +3 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/requirements/dev.txt +18 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/requirements/prod.txt +40 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/requirements.txt +3 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/setup.cfg +5 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/shell_scripts/auto_pipenv.sh +7 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/shell_scripts/supervisord_entrypoint.sh +13 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/supervisord.conf +21 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/supervisord_programs/gunicorn.conf +16 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/tests/__init__.py +1 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/tests/conftest.py +53 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/tests/factories.py +30 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/tests/settings.py +13 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/tests/test_database.py +69 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/tests/test_forms.py +74 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/tests/test_functional.py +120 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/tests/test_models.py +76 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/webpack.config.js +83 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/__init__.py +1 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/app.py +91 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/commands.py +83 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/compat.py +18 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/database.py +89 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/extensions.py +19 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/public/__init__.py +3 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/public/forms.py +39 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/public/views.py +77 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/settings.py +25 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/401.html +16 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/404.html +15 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/500.html +14 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/footer.html +14 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/layout.html +71 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/nav.html +52 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/about.html +12 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/home.html +35 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/register.html +31 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/users/members.html +9 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/user/__init__.py +3 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/user/forms.py +45 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/user/models.py +65 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/user/views.py +13 -0
- data/templates/flask/flask-cookiecutter-advance-template/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/utils.py +10 -0
- data/templates/flask/flask-project-template/ABOUT_THIS_TEMPLATE.md +198 -0
- data/templates/flask/flask-project-template/CONTRIBUTING.md +113 -0
- data/templates/flask/flask-project-template/Containerfile +9 -0
- data/templates/flask/flask-project-template/HISTORY.md +0 -0
- data/templates/flask/flask-project-template/LICENSE +24 -0
- data/templates/flask/flask-project-template/MANIFEST.in +5 -0
- data/templates/flask/flask-project-template/Makefile +119 -0
- data/templates/flask/flask-project-template/README.md +114 -0
- data/templates/flask/flask-project-template/apply.sh +77 -0
- data/templates/flask/flask-project-template/docs/index.md +17 -0
- data/templates/flask/flask-project-template/mkdocs.yml +2 -0
- data/templates/flask/flask-project-template/project_name/VERSION +1 -0
- data/templates/flask/flask-project-template/project_name/__init__.py +3 -0
- data/templates/flask/flask-project-template/project_name/__main__.py +13 -0
- data/templates/flask/flask-project-template/project_name/base.py +21 -0
- data/templates/flask/flask-project-template/project_name/ext/__init__.py +0 -0
- data/templates/flask/flask-project-template/project_name/ext/admin.py +33 -0
- data/templates/flask/flask-project-template/project_name/ext/auth.py +33 -0
- data/templates/flask/flask-project-template/project_name/ext/commands.py +43 -0
- data/templates/flask/flask-project-template/project_name/ext/database.py +7 -0
- data/templates/flask/flask-project-template/project_name/ext/restapi/__init__.py +13 -0
- data/templates/flask/flask-project-template/project_name/ext/restapi/resources.py +35 -0
- data/templates/flask/flask-project-template/project_name/ext/webui/__init__.py +16 -0
- data/templates/flask/flask-project-template/project_name/ext/webui/templates/index.html +29 -0
- data/templates/flask/flask-project-template/project_name/ext/webui/templates/product.html +13 -0
- data/templates/flask/flask-project-template/project_name/ext/webui/views.py +26 -0
- data/templates/flask/flask-project-template/project_name/models.py +16 -0
- data/templates/flask/flask-project-template/requirements-base.txt +10 -0
- data/templates/flask/flask-project-template/requirements-test.txt +5 -0
- data/templates/flask/flask-project-template/requirements.txt +9 -0
- data/templates/flask/flask-project-template/settings.toml +47 -0
- data/templates/flask/flask-project-template/setup.py +49 -0
- data/templates/flask/flask-project-template/tests/__init__.py +0 -0
- data/templates/flask/flask-project-template/tests/conftest.py +33 -0
- data/templates/flask/flask-project-template/tests/test_api.py +28 -0
- data/templates/flask/flask-project-template/wsgi.py +3 -0
- data/templates/flask/flask-template-bootstrap/LICENSE +21 -0
- data/templates/flask/flask-template-bootstrap/README.md +20 -0
- data/templates/flask/flask-template-bootstrap/app.py +46 -0
- data/templates/flask/flask-template-bootstrap/flask_screenshot.png +0 -0
- data/templates/flask/flask-template-bootstrap/requirements.txt +3 -0
- data/templates/flask/flask-template-bootstrap/templates/about.html +10 -0
- data/templates/flask/flask-template-bootstrap/templates/contact.html +7 -0
- data/templates/flask/flask-template-bootstrap/templates/includes/_navbar.html +28 -0
- data/templates/flask/flask-template-bootstrap/templates/index.html +13 -0
- data/templates/flask/flask-template-bootstrap/templates/layout.html +40 -0
- data/templates/flask/flask-template-bootstrap/templates/service.html +9 -0
- data/templates/flask/flask-template-with-useful-plugins/LICENSE.MD +675 -0
- data/templates/flask/flask-template-with-useful-plugins/Pipfile +25 -0
- data/templates/flask/flask-template-with-useful-plugins/Pipfile.lock +412 -0
- data/templates/flask/flask-template-with-useful-plugins/README.md +44 -0
- data/templates/flask/flask-template-with-useful-plugins/app/__init__.py +27 -0
- data/templates/flask/flask-template-with-useful-plugins/app/configuration.py +26 -0
- data/templates/flask/flask-template-with-useful-plugins/app/forms.py +13 -0
- data/templates/flask/flask-template-with-useful-plugins/app/models.py +31 -0
- data/templates/flask/flask-template-with-useful-plugins/app/templates/base.html +83 -0
- data/templates/flask/flask-template-with-useful-plugins/app/templates/index.html +20 -0
- data/templates/flask/flask-template-with-useful-plugins/app/templates/list.html +61 -0
- data/templates/flask/flask-template-with-useful-plugins/app/templates/login.html +27 -0
- data/templates/flask/flask-template-with-useful-plugins/app/templates/new.html +29 -0
- data/templates/flask/flask-template-with-useful-plugins/app/views.py +68 -0
- data/templates/flask/flask-template-with-useful-plugins/run.py +11 -0
- data/templates/go/golang-boilerplate/Dockerfile +25 -0
- data/templates/go/golang-boilerplate/api/auth.go +176 -0
- data/templates/go/golang-boilerplate/api/auth_test.go +71 -0
- data/templates/go/golang-boilerplate/api/context.go +120 -0
- data/templates/go/golang-boilerplate/api/cronjob.go +24 -0
- data/templates/go/golang-boilerplate/api/db_helper.go +86 -0
- data/templates/go/golang-boilerplate/api/handler.go +514 -0
- data/templates/go/golang-boilerplate/api/handler_test.go +188 -0
- data/templates/go/golang-boilerplate/api/user.go +80 -0
- data/templates/go/golang-boilerplate/api/user_test.go +43 -0
- data/templates/go/golang-boilerplate/api/webhook.go +33 -0
- data/templates/go/golang-boilerplate/config/config.go +137 -0
- data/templates/go/golang-boilerplate/config/config_test.go +1 -0
- data/templates/go/golang-boilerplate/core/db.go +161 -0
- data/templates/go/golang-boilerplate/core/error.go +144 -0
- data/templates/go/golang-boilerplate/core/json.go +278 -0
- data/templates/go/golang-boilerplate/core/test.go +237 -0
- data/templates/go/golang-boilerplate/core/timestamp.go +111 -0
- data/templates/go/golang-boilerplate/core/type.go +7 -0
- data/templates/go/golang-boilerplate/db/dbconf.yml +17 -0
- data/templates/go/golang-boilerplate/db/migrations/20190611174624_base.sql +42 -0
- data/templates/go/golang-boilerplate/db/seed.sql +1 -0
- data/templates/go/golang-boilerplate/go.mod +34 -0
- data/templates/go/golang-boilerplate/go.sum +328 -0
- data/templates/go/golang-boilerplate/log/hook.go +137 -0
- data/templates/go/golang-boilerplate/log/log.go +66 -0
- data/templates/go/golang-boilerplate/log/logger.go +40 -0
- data/templates/go/golang-boilerplate/log/logstash.go +64 -0
- data/templates/go/golang-boilerplate/main.go +31 -0
- data/templates/go/golang-boilerplate/makefile +17 -0
- data/templates/go/golang-boilerplate/middleware/configuration.go +19 -0
- data/templates/go/golang-boilerplate/middleware/db.go +21 -0
- data/templates/go/golang-boilerplate/middleware/elastic.go +21 -0
- data/templates/go/golang-boilerplate/middleware/header.go +30 -0
- data/templates/go/golang-boilerplate/middleware/initialize.go +28 -0
- data/templates/go/golang-boilerplate/middleware/session.go +64 -0
- data/templates/go/golang-boilerplate/middleware/type.go +50 -0
- data/templates/go/golang-boilerplate/model/configuration.go +59 -0
- data/templates/go/golang-boilerplate/model/context.go +16 -0
- data/templates/go/golang-boilerplate/model/creator.go +16 -0
- data/templates/go/golang-boilerplate/model/creator_test.go +13 -0
- data/templates/go/golang-boilerplate/model/db_test.go +38 -0
- data/templates/go/golang-boilerplate/model/deleter.go +32 -0
- data/templates/go/golang-boilerplate/model/deleter_test.go +13 -0
- data/templates/go/golang-boilerplate/model/getter.go +16 -0
- data/templates/go/golang-boilerplate/model/getter_test.go +13 -0
- data/templates/go/golang-boilerplate/model/jwt.go +86 -0
- data/templates/go/golang-boilerplate/model/jwt_test.go +28 -0
- data/templates/go/golang-boilerplate/model/model.go +141 -0
- data/templates/go/golang-boilerplate/model/restrictor.go +19 -0
- data/templates/go/golang-boilerplate/model/restrictor_test.go +13 -0
- data/templates/go/golang-boilerplate/model/sorter.go +16 -0
- data/templates/go/golang-boilerplate/model/sorter_test.go +46 -0
- data/templates/go/golang-boilerplate/model/test_helper.go +107 -0
- data/templates/go/golang-boilerplate/model/updater.go +16 -0
- data/templates/go/golang-boilerplate/model/updater_test.go +14 -0
- data/templates/go/golang-boilerplate/model/user.go +295 -0
- data/templates/go/golang-boilerplate/model/user_test.go +215 -0
- data/templates/go/golang-boilerplate/model/validator.go +80 -0
- data/templates/go/golang-boilerplate/model/validator_test.go +135 -0
- data/templates/go/golang-boilerplate/server/router.go +141 -0
- data/templates/go/golang-boilerplate/server/server.go +26 -0
- data/templates/go/golang-boilerplate/util/helper.go +300 -0
- data/templates/go/golang-boilerplate/util/helper_test.go +230 -0
- data/templates/nestjs/typescript/template/README.md +98 -0
- data/templates/nestjs/typescript/template/eslint.config.mjs +34 -0
- data/templates/nestjs/typescript/template/nest-cli.json +8 -0
- data/templates/nestjs/typescript/template/package.json +73 -0
- data/templates/nestjs/typescript/template/src/app.controller.spec.ts +22 -0
- data/templates/nestjs/typescript/template/src/app.controller.ts +12 -0
- data/templates/nestjs/typescript/template/src/app.module.ts +10 -0
- data/templates/nestjs/typescript/template/src/app.service.ts +8 -0
- data/templates/nestjs/typescript/template/src/main.ts +8 -0
- data/templates/nestjs/typescript/template/test/app.e2e-spec.ts +25 -0
- data/templates/nestjs/typescript/template/test/jest-e2e.json +9 -0
- data/templates/nestjs/typescript/template/tsconfig.build.json +4 -0
- data/templates/nestjs/typescript/template/tsconfig.json +21 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/README.md +36 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/app/favicon.ico +0 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/app/globals.css +42 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/app/layout.js +27 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/app/page.js +8 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/app/page.module.css +167 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/eslint.config.mjs +14 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/jsconfig.json +7 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/next.config.mjs +4 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/package.json +21 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/javascript/no-src-no-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/README.md +36 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/app/favicon.ico +0 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/app/globals.css +122 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/app/layout.js +29 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/app/page.js +103 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/components.json +21 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/eslint.config.mjs +14 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/jsconfig.json +7 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/lib/utils.js +6 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/next.config.mjs +4 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/package.json +28 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/postcss.config.mjs +5 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/javascript/no-src-shadcn-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/README.md +36 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/app/favicon.ico +0 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/app/globals.css +26 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/app/layout.js +29 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/app/page.js +10 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/eslint.config.mjs +14 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/jsconfig.json +7 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/next.config.mjs +4 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/package.json +23 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/postcss.config.mjs +5 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/javascript/no-src-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/README.md +36 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/eslint.config.mjs +14 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/jsconfig.json +7 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/next.config.mjs +4 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/package.json +21 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/src/app/favicon.ico +0 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/src/app/globals.css +42 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/src/app/layout.js +27 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/src/app/page.js +8 -0
- data/templates/nextjs/javascript/src-no-tailwind-template/src/app/page.module.css +167 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/README.md +36 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/components.json +21 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/eslint.config.mjs +14 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/jsconfig.json +7 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/next.config.mjs +4 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/package.json +29 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/postcss.config.mjs +5 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/src/app/favicon.ico +0 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/src/app/globals.css +122 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/src/app/layout.js +29 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/src/app/page.js +10 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/src/components/ui/button.jsx +55 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/src/components/ui/card.jsx +101 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/src/components/ui/input.jsx +24 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/src/components/ui/textarea.jsx +20 -0
- data/templates/nextjs/javascript/src-shadcn-tailwind-template/src/lib/utils.js +6 -0
- data/templates/nextjs/javascript/src-tailwind-template/README.md +36 -0
- data/templates/nextjs/javascript/src-tailwind-template/eslint.config.mjs +14 -0
- data/templates/nextjs/javascript/src-tailwind-template/jsconfig.json +7 -0
- data/templates/nextjs/javascript/src-tailwind-template/next.config.mjs +4 -0
- data/templates/nextjs/javascript/src-tailwind-template/package.json +23 -0
- data/templates/nextjs/javascript/src-tailwind-template/postcss.config.mjs +5 -0
- data/templates/nextjs/javascript/src-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/javascript/src-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/javascript/src-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/javascript/src-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/javascript/src-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/javascript/src-tailwind-template/src/app/favicon.ico +0 -0
- data/templates/nextjs/javascript/src-tailwind-template/src/app/globals.css +26 -0
- data/templates/nextjs/javascript/src-tailwind-template/src/app/layout.js +29 -0
- data/templates/nextjs/javascript/src-tailwind-template/src/app/page.js +10 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/README.md +36 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/app/favicon.ico +0 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/app/globals.css +42 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/app/layout.tsx +32 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/app/page.module.css +167 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/app/page.tsx +8 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/eslint.config.mjs +16 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/next-env.d.ts +5 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/next.config.ts +7 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/package.json +25 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/typescript/no-src-no-tailwind-template/tsconfig.json +27 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/README.md +36 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/app/favicon.ico +0 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/app/globals.css +122 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/app/layout.tsx +34 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/app/page.tsx +8 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/components/ui/button.tsx +59 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/components/ui/card.tsx +92 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/components/ui/input.tsx +21 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/components/ui/textarea.tsx +18 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/components.json +21 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/eslint.config.mjs +16 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/lib/utils.ts +6 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/next-env.d.ts +5 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/next.config.ts +7 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/package.json +33 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/postcss.config.mjs +5 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/typescript/no-src-shadcn-tailwind-template/tsconfig.json +27 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/README.md +36 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/app/favicon.ico +0 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/app/globals.css +26 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/app/layout.tsx +34 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/app/page.tsx +8 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/eslint.config.mjs +16 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/next-env.d.ts +5 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/next.config.ts +7 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/package.json +27 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/postcss.config.mjs +5 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/typescript/no-src-tailwind-template/tsconfig.json +27 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/README.md +36 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/eslint.config.mjs +16 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/next-env.d.ts +5 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/next.config.ts +7 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/package.json +25 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/src/app/favicon.ico +0 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/src/app/globals.css +42 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/src/app/layout.tsx +32 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/src/app/page.module.css +167 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/src/app/page.tsx +8 -0
- data/templates/nextjs/typescript/src-no-tailwind-template/tsconfig.json +27 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/README.md +36 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/components.json +21 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/eslint.config.mjs +16 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/next-env.d.ts +5 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/next.config.ts +7 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/package.json +33 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/postcss.config.mjs +5 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/src/app/favicon.ico +0 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/src/app/globals.css +122 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/src/app/layout.tsx +34 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/src/app/page.tsx +10 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/src/components/ui/button.tsx +59 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/src/components/ui/card.tsx +92 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/src/components/ui/input.tsx +21 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/src/components/ui/textarea.tsx +18 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/src/lib/utils.ts +6 -0
- data/templates/nextjs/typescript/src-shadcn-tailwind-template/tsconfig.json +27 -0
- data/templates/nextjs/typescript/src-tailwind-template/README.md +36 -0
- data/templates/nextjs/typescript/src-tailwind-template/eslint.config.mjs +16 -0
- data/templates/nextjs/typescript/src-tailwind-template/next-env.d.ts +5 -0
- data/templates/nextjs/typescript/src-tailwind-template/next.config.ts +7 -0
- data/templates/nextjs/typescript/src-tailwind-template/package.json +27 -0
- data/templates/nextjs/typescript/src-tailwind-template/postcss.config.mjs +5 -0
- data/templates/nextjs/typescript/src-tailwind-template/public/file.svg +1 -0
- data/templates/nextjs/typescript/src-tailwind-template/public/globe.svg +1 -0
- data/templates/nextjs/typescript/src-tailwind-template/public/next.svg +1 -0
- data/templates/nextjs/typescript/src-tailwind-template/public/vercel.svg +1 -0
- data/templates/nextjs/typescript/src-tailwind-template/public/window.svg +1 -0
- data/templates/nextjs/typescript/src-tailwind-template/src/app/favicon.ico +0 -0
- data/templates/nextjs/typescript/src-tailwind-template/src/app/globals.css +26 -0
- data/templates/nextjs/typescript/src-tailwind-template/src/app/layout.tsx +34 -0
- data/templates/nextjs/typescript/src-tailwind-template/src/app/page.tsx +10 -0
- data/templates/nextjs/typescript/src-tailwind-template/tsconfig.json +27 -0
- data/templates/nuxtjs/typescript/no-shadcn-no-tailwind-template/README.md +75 -0
- data/templates/nuxtjs/typescript/no-shadcn-no-tailwind-template/app/app.vue +6 -0
- data/templates/nuxtjs/typescript/no-shadcn-no-tailwind-template/nuxt.config.ts +14 -0
- data/templates/nuxtjs/typescript/no-shadcn-no-tailwind-template/package.json +26 -0
- data/templates/nuxtjs/typescript/no-shadcn-no-tailwind-template/pnpm-lock.yaml +11478 -0
- data/templates/nuxtjs/typescript/no-shadcn-no-tailwind-template/public/favicon.ico +0 -0
- data/templates/nuxtjs/typescript/no-shadcn-no-tailwind-template/public/robots.txt +2 -0
- data/templates/nuxtjs/typescript/no-shadcn-no-tailwind-template/tsconfig.json +18 -0
- data/templates/nuxtjs/typescript/no-shadcn-tailwind-template/README.md +75 -0
- data/templates/nuxtjs/typescript/no-shadcn-tailwind-template/app/app.vue +6 -0
- data/templates/nuxtjs/typescript/no-shadcn-tailwind-template/nuxt.config.ts +14 -0
- data/templates/nuxtjs/typescript/no-shadcn-tailwind-template/package.json +26 -0
- data/templates/nuxtjs/typescript/no-shadcn-tailwind-template/pnpm-lock.yaml +11478 -0
- data/templates/nuxtjs/typescript/no-shadcn-tailwind-template/public/favicon.ico +0 -0
- data/templates/nuxtjs/typescript/no-shadcn-tailwind-template/public/robots.txt +2 -0
- data/templates/nuxtjs/typescript/no-shadcn-tailwind-template/tsconfig.json +18 -0
- data/templates/nuxtjs/typescript/shadcn-tailwind-template/README.md +75 -0
- data/templates/nuxtjs/typescript/shadcn-tailwind-template/app/app.vue +6 -0
- data/templates/nuxtjs/typescript/shadcn-tailwind-template/nuxt.config.ts +14 -0
- data/templates/nuxtjs/typescript/shadcn-tailwind-template/package.json +26 -0
- data/templates/nuxtjs/typescript/shadcn-tailwind-template/pnpm-lock.yaml +11478 -0
- data/templates/nuxtjs/typescript/shadcn-tailwind-template/public/favicon.ico +0 -0
- data/templates/nuxtjs/typescript/shadcn-tailwind-template/public/robots.txt +2 -0
- data/templates/nuxtjs/typescript/shadcn-tailwind-template/tsconfig.json +18 -0
- data/templates/react-native/javascript/template/App.jsx +45 -0
- data/templates/react-native/javascript/template/Gemfile +16 -0
- data/templates/react-native/javascript/template/README.md +97 -0
- data/templates/react-native/javascript/template/__tests__/App.test.tsx +13 -0
- data/templates/react-native/javascript/template/android/app/build.gradle +119 -0
- data/templates/react-native/javascript/template/android/app/debug.keystore +0 -0
- data/templates/react-native/javascript/template/android/app/proguard-rules.pro +10 -0
- data/templates/react-native/javascript/template/android/app/src/main/AndroidManifest.xml +27 -0
- data/templates/react-native/javascript/template/android/app/src/main/java/com/template/MainActivity.kt +22 -0
- data/templates/react-native/javascript/template/android/app/src/main/java/com/template/MainApplication.kt +38 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/values/strings.xml +3 -0
- data/templates/react-native/javascript/template/android/app/src/main/res/values/styles.xml +9 -0
- data/templates/react-native/javascript/template/android/build.gradle +21 -0
- data/templates/react-native/javascript/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/templates/react-native/javascript/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- data/templates/react-native/javascript/template/android/gradle.properties +44 -0
- data/templates/react-native/javascript/template/android/gradlew +251 -0
- data/templates/react-native/javascript/template/android/gradlew.bat +99 -0
- data/templates/react-native/javascript/template/android/settings.gradle +6 -0
- data/templates/react-native/javascript/template/app.json +4 -0
- data/templates/react-native/javascript/template/babel.config.js +3 -0
- data/templates/react-native/javascript/template/index.js +9 -0
- data/templates/react-native/javascript/template/ios/Podfile +35 -0
- data/templates/react-native/javascript/template/ios/template/AppDelegate.swift +48 -0
- data/templates/react-native/javascript/template/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/templates/react-native/javascript/template/ios/template/Images.xcassets/Contents.json +6 -0
- data/templates/react-native/javascript/template/ios/template/Info.plist +52 -0
- data/templates/react-native/javascript/template/ios/template/LaunchScreen.storyboard +47 -0
- data/templates/react-native/javascript/template/ios/template/PrivacyInfo.xcprivacy +37 -0
- data/templates/react-native/javascript/template/ios/template.xcodeproj/project.pbxproj +471 -0
- data/templates/react-native/javascript/template/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +88 -0
- data/templates/react-native/javascript/template/jest.config.js +3 -0
- data/templates/react-native/javascript/template/metro.config.js +11 -0
- data/templates/react-native/javascript/template/package.json +36 -0
- data/templates/react-native/typescript/template/App.tsx +45 -0
- data/templates/react-native/typescript/template/Gemfile +16 -0
- data/templates/react-native/typescript/template/README.md +97 -0
- data/templates/react-native/typescript/template/__tests__/App.test.tsx +13 -0
- data/templates/react-native/typescript/template/android/app/build.gradle +119 -0
- data/templates/react-native/typescript/template/android/app/debug.keystore +0 -0
- data/templates/react-native/typescript/template/android/app/proguard-rules.pro +10 -0
- data/templates/react-native/typescript/template/android/app/src/main/AndroidManifest.xml +27 -0
- data/templates/react-native/typescript/template/android/app/src/main/java/com/template/MainActivity.kt +22 -0
- data/templates/react-native/typescript/template/android/app/src/main/java/com/template/MainApplication.kt +38 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/values/strings.xml +3 -0
- data/templates/react-native/typescript/template/android/app/src/main/res/values/styles.xml +9 -0
- data/templates/react-native/typescript/template/android/build.gradle +21 -0
- data/templates/react-native/typescript/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/templates/react-native/typescript/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- data/templates/react-native/typescript/template/android/gradle.properties +44 -0
- data/templates/react-native/typescript/template/android/gradlew +251 -0
- data/templates/react-native/typescript/template/android/gradlew.bat +99 -0
- data/templates/react-native/typescript/template/android/settings.gradle +6 -0
- data/templates/react-native/typescript/template/app.json +4 -0
- data/templates/react-native/typescript/template/babel.config.js +3 -0
- data/templates/react-native/typescript/template/index.js +9 -0
- data/templates/react-native/typescript/template/ios/Podfile +35 -0
- data/templates/react-native/typescript/template/ios/template/AppDelegate.swift +48 -0
- data/templates/react-native/typescript/template/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/templates/react-native/typescript/template/ios/template/Images.xcassets/Contents.json +6 -0
- data/templates/react-native/typescript/template/ios/template/Info.plist +52 -0
- data/templates/react-native/typescript/template/ios/template/LaunchScreen.storyboard +47 -0
- data/templates/react-native/typescript/template/ios/template/PrivacyInfo.xcprivacy +37 -0
- data/templates/react-native/typescript/template/ios/template.xcodeproj/project.pbxproj +471 -0
- data/templates/react-native/typescript/template/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +88 -0
- data/templates/react-native/typescript/template/jest.config.js +3 -0
- data/templates/react-native/typescript/template/metro.config.js +11 -0
- data/templates/react-native/typescript/template/package.json +41 -0
- data/templates/react-native/typescript/template/tsconfig.json +5 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/README.md +12 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/eslint.config.js +29 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/index.html +13 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/package.json +27 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/public/vite.svg +1 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/src/App.css +42 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/src/App.jsx +10 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/src/assets/react.svg +1 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/src/index.css +68 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/src/main.jsx +10 -0
- data/templates/reactjs/vite/javascript/no-shadcn-no-tailwind-template/vite.config.js +7 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/README.md +12 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/eslint.config.js +29 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/index.html +13 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/package.json +29 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/public/vite.svg +1 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/src/App.css +44 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/src/App.jsx +10 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/src/assets/react.svg +1 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/src/index.css +70 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/src/main.jsx +10 -0
- data/templates/reactjs/vite/javascript/no-shadcn-tailwind-template/vite.config.js +8 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/README.md +12 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/components.json +21 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/eslint.config.js +29 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/index.html +13 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/jsconfig.json +10 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/package.json +38 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/public/vite.svg +1 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/App.css +162 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/App.jsx +10 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/assets/react.svg +1 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/components/ui/button.jsx +55 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/components/ui/card.jsx +101 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/components/ui/input.jsx +24 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/components/ui/textarea.jsx +20 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/index.css +70 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/lib/utils.js +6 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/src/main.jsx +10 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/tailwind.config.js +12 -0
- data/templates/reactjs/vite/javascript/shadcn-tailwind-template/vite.config.js +13 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/README.md +69 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/eslint.config.js +23 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/index.html +13 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/package.json +29 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/public/vite.svg +1 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/src/App.css +42 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/src/App.tsx +10 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/src/assets/react.svg +1 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/src/index.css +68 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/src/main.tsx +10 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/src/vite-env.d.ts +1 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/tsconfig.app.json +27 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/tsconfig.json +7 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/tsconfig.node.json +25 -0
- data/templates/reactjs/vite/typescript/no-shadcn-no-tailwind-template/vite.config.ts +7 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/README.md +69 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/eslint.config.js +23 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/index.html +13 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/package.json +31 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/public/vite.svg +1 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/src/App.css +42 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/src/App.tsx +10 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/src/assets/react.svg +1 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/src/index.css +68 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/src/main.tsx +10 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/src/vite-env.d.ts +1 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/tsconfig.app.json +27 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/tsconfig.json +7 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/tsconfig.node.json +25 -0
- data/templates/reactjs/vite/typescript/no-shadcn-tailwind-template/vite.config.ts +7 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/README.md +69 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/components.json +21 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/eslint.config.js +23 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/index.html +13 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/package.json +39 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/public/vite.svg +1 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/App.css +162 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/App.tsx +10 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/assets/react.svg +1 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/components/ui/button.tsx +59 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/components/ui/card.tsx +92 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/components/ui/input.tsx +21 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/components/ui/textarea.tsx +18 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/index.css +69 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/lib/utils.ts +6 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/main.tsx +10 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/src/vite-env.d.ts +1 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/tailwind.config.js +11 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/tsconfig.app.json +34 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/tsconfig.json +17 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/tsconfig.node.json +25 -0
- data/templates/reactjs/vite/typescript/shadcn-tailwind-template/vite.config.ts +7 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/README.md +12 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/README.md +308 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/__tests__/setup.js +29 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/__tests__/user.test.js +242 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/controllers/user.controller.js +167 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/db/database.js +37 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/index.js +59 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/jest.config.js +19 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/middleware/errorHandler.js +81 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/middleware/security.js +96 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/middleware/validation.js +54 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/models/user.model.js +64 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/package.json +36 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/routes/index.js +31 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/routes/user.routes.js +44 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend/utils/logger.js +68 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/components.json +21 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/eslint.config.js +29 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/index.html +13 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/jsconfig.json +10 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/package.json +38 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/public/vite.svg +1 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/App.css +162 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/App.jsx +10 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/assets/react.svg +1 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/components/ui/button.jsx +55 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/components/ui/card.jsx +101 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/components/ui/input.jsx +24 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/components/ui/textarea.jsx +20 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/index.css +70 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/lib/utils.js +6 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src/main.jsx +10 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/tailwind.config.js +12 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/vite.config.js +13 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/README.md +12 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend/controllers/user.controller.js +13 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend/index.js +28 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend/models/user.model.js +9 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend/package.json +14 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend/routes/user.routes.js +9 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/components.json +21 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/eslint.config.js +29 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/index.html +13 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/jsconfig.json +10 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/package.json +38 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/public/vite.svg +1 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/App.css +162 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/App.jsx +10 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/assets/react.svg +1 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/components/ui/button.jsx +55 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/components/ui/card.jsx +101 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/components/ui/input.jsx +24 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/components/ui/textarea.jsx +20 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/index.css +70 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/lib/utils.js +6 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src/main.jsx +10 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/tailwind.config.js +12 -0
- data/templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/vite.config.js +13 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/README.md +69 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/README.md +294 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/__tests__/setup.ts +29 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/__tests__/user.test.ts +242 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/db/database.ts +38 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/index.ts +59 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/jest.config.js +25 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/middleware/errorHandler.ts +92 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/middleware/security.ts +96 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/middleware/validation.ts +55 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/models/user.model.ts +65 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/package.json +49 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/routes/index.ts +31 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/routes/user.routes.ts +44 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/types/index.ts +53 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend/utils/logger.ts +79 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/components.json +21 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/eslint.config.js +23 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/index.html +13 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/package.json +39 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/public/vite.svg +1 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/App.css +162 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/App.tsx +10 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/assets/react.svg +1 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/components/ui/button.tsx +59 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/components/ui/card.tsx +92 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/components/ui/input.tsx +21 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/components/ui/textarea.tsx +18 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/index.css +69 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/lib/utils.ts +6 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/main.tsx +10 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src/vite-env.d.ts +1 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/tailwind.config.js +11 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/tsconfig.app.json +34 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/tsconfig.json +17 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/tsconfig.node.json +25 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/vite.config.ts +7 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/README.md +69 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend/controllers/user.controller.ts +14 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend/index.ts +28 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend/models/user.model.ts +14 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend/package.json +18 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend/routes/user.routes.ts +9 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/components.json +21 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/eslint.config.js +23 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/index.html +13 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/package.json +39 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/public/vite.svg +1 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/App.css +162 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/App.tsx +10 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/assets/react.svg +1 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/components/ui/button.tsx +59 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/components/ui/card.tsx +92 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/components/ui/input.tsx +21 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/components/ui/textarea.tsx +18 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/index.css +69 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/lib/utils.ts +6 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/main.tsx +10 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/src/vite-env.d.ts +1 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/tailwind.config.js +11 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/tsconfig.app.json +34 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/tsconfig.json +17 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/tsconfig.node.json +25 -0
- data/templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/vite.config.ts +7 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/README.md +69 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/README.md +98 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/eslint.config.mjs +34 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/nest-cli.json +8 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/package.json +73 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/src/app.controller.spec.ts +22 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/src/app.controller.ts +12 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/src/app.module.ts +10 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/src/app.service.ts +8 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/src/main.ts +8 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/test/app.e2e-spec.ts +25 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/test/jest-e2e.json +9 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/tsconfig.build.json +4 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend/tsconfig.json +21 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/components.json +21 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/eslint.config.js +23 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/index.html +13 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/package.json +39 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/public/vite.svg +1 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/App.css +162 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/App.tsx +10 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/assets/react.svg +1 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/components/ui/button.tsx +59 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/components/ui/card.tsx +92 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/components/ui/input.tsx +21 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/components/ui/textarea.tsx +18 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/index.css +69 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/lib/utils.ts +6 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/main.tsx +10 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src/vite-env.d.ts +1 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/tailwind.config.js +11 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/tsconfig.app.json +34 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/tsconfig.json +17 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/tsconfig.node.json +25 -0
- data/templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/vite.config.ts +7 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/Dockerfile +22 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/README.md +87 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/app/app.css +15 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/app/root.tsx +75 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/app/routes/home.tsx +13 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/app/routes.ts +3 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/app/welcome/logo-dark.svg +23 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/app/welcome/logo-light.svg +23 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/app/welcome/welcome.tsx +89 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/package.json +30 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/public/favicon.ico +0 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/react-router.config.ts +7 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/tsconfig.json +27 -0
- data/templates/remixjs/typescript/no-shadcn-no-tailwind-template/vite.config.ts +8 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/Dockerfile +22 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/README.md +87 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/app/app.css +15 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/app/root.tsx +75 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/app/routes/home.tsx +13 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/app/routes.ts +3 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/app/welcome/logo-dark.svg +23 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/app/welcome/logo-light.svg +23 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/app/welcome/welcome.tsx +89 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/package.json +30 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/public/favicon.ico +0 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/react-router.config.ts +7 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/tsconfig.json +27 -0
- data/templates/remixjs/typescript/no-shadcn-tailwind-template/vite.config.ts +8 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/Dockerfile +22 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/README.md +87 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/app.css +134 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/components/ui/button.tsx +59 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/components/ui/card.tsx +92 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/components/ui/input.tsx +21 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/components/ui/textarea.tsx +18 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/lib/utils.ts +6 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/root.tsx +75 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/routes/home.tsx +13 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/routes.ts +3 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/welcome/logo-dark.svg +23 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/welcome/logo-light.svg +23 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/app/welcome/welcome.tsx +89 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/components.json +21 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/package-lock.json +4767 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/package.json +37 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/public/favicon.ico +0 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/react-router.config.ts +7 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/tsconfig.json +27 -0
- data/templates/remixjs/typescript/shadcn-tailwind-template/vite.config.ts +8 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Dockerfile +75 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Gemfile +29 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Gemfile.lock +279 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Procfile.dev +4 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/README.md +57 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Rakefile +6 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/assets/config/manifest.js +3 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/assets/stylesheets/application.css +3 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/channels/application_cable/channel.rb +4 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/channels/application_cable/connection.rb +4 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/controllers/application_controller.rb +2 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/controllers/home_controller.rb +13 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/helpers/application_helper.rb +2 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/application.js +3 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/controllers/application.js +9 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/controllers/home_controller.js +19 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/controllers/index.js +8 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/jobs/application_job.rb +7 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/mailers/application_mailer.rb +4 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/models/application_record.rb +3 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/home/_content.html.erb +3 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/home/index.html.erb +8 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/layouts/application.html.erb +16 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/layouts/mailer.html.erb +13 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/layouts/mailer.text.erb +1 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/bundle +109 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/dev +11 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/docker-entrypoint +8 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/rails +4 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/rake +4 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/setup +36 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/application.rb +27 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/boot.rb +4 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/cable.yml +10 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/credentials.yml.enc +1 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/database.yml +85 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environment.rb +5 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environments/development.rb +76 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environments/production.rb +97 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environments/test.rb +64 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/assets.rb +12 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/content_security_policy.rb +25 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/filter_parameter_logging.rb +8 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/inflections.rb +16 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/permissions_policy.rb +13 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/locales/en.yml +31 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/puma.rb +44 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/routes.rb +11 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/storage.yml +34 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config.ru +6 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/db/schema.rb +17 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/db/seeds.rb +9 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/docker-compose.yaml +14 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/esbuild.config.js +58 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/package.json +24 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/postcss.config.js +9 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/404.html +67 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/422.html +67 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/500.html +66 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/apple-touch-icon-precomposed.png +0 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/apple-touch-icon.png +0 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/favicon.ico +0 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/robots.txt +1 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/tailwind.config.js +8 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/test/application_system_test_case.rb +5 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/test/channels/application_cable/connection_test.rb +13 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/test/test_helper.rb +15 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/watch-stimulus.js +18 -0
- data/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/yarn.lock +981 -0
- data/templates/ruby/ruby-on-rails-apis-template/Capfile +11 -0
- data/templates/ruby/ruby-on-rails-apis-template/Gemfile +31 -0
- data/templates/ruby/ruby-on-rails-apis-template/Gemfile.lock +214 -0
- data/templates/ruby/ruby-on-rails-apis-template/README.md +35 -0
- data/templates/ruby/ruby-on-rails-apis-template/Rakefile +6 -0
- data/templates/ruby/ruby-on-rails-apis-template/app/channels/application_cable/channel.rb +4 -0
- data/templates/ruby/ruby-on-rails-apis-template/app/channels/application_cable/connection.rb +4 -0
- data/templates/ruby/ruby-on-rails-apis-template/app/controllers/application_controller.rb +3 -0
- data/templates/ruby/ruby-on-rails-apis-template/app/jobs/application_job.rb +2 -0
- data/templates/ruby/ruby-on-rails-apis-template/app/mailers/application_mailer.rb +4 -0
- data/templates/ruby/ruby-on-rails-apis-template/app/models/application_record.rb +3 -0
- data/templates/ruby/ruby-on-rails-apis-template/app/models/user.rb +6 -0
- data/templates/ruby/ruby-on-rails-apis-template/app/views/layouts/mailer.html.erb +13 -0
- data/templates/ruby/ruby-on-rails-apis-template/app/views/layouts/mailer.text.erb +1 -0
- data/templates/ruby/ruby-on-rails-apis-template/bin/bundle +3 -0
- data/templates/ruby/ruby-on-rails-apis-template/bin/rails +9 -0
- data/templates/ruby/ruby-on-rails-apis-template/bin/rake +9 -0
- data/templates/ruby/ruby-on-rails-apis-template/bin/setup +34 -0
- data/templates/ruby/ruby-on-rails-apis-template/bin/spring +15 -0
- data/templates/ruby/ruby-on-rails-apis-template/bin/update +29 -0
- data/templates/ruby/ruby-on-rails-apis-template/circle.yml +12 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/application.rb +31 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/boot.rb +3 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/cable.yml +9 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/database.yml +19 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/deploy/production.rb +6 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/deploy.rb +87 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/environment.rb +5 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/environments/development.rb +47 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/environments/production.rb +78 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/environments/test.rb +42 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/application_controller_renderer.rb +6 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/backtrace_silencers.rb +7 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/cors.rb +8 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/devise.rb +4 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/devise_token_auth.rb +49 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/filter_parameter_logging.rb +4 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/inflections.rb +16 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/mime_types.rb +4 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/new_framework_defaults.rb +18 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/initializers/wrap_parameters.rb +14 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/locales/en.yml +2 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/puma.rb +13 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/routes.rb +3 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/secrets.yml +22 -0
- data/templates/ruby/ruby-on-rails-apis-template/config/spring.rb +6 -0
- data/templates/ruby/ruby-on-rails-apis-template/config.ru +5 -0
- data/templates/ruby/ruby-on-rails-apis-template/db/migrate/20160824081533_devise_token_auth_create_users.rb +54 -0
- data/templates/ruby/ruby-on-rails-apis-template/db/schema.rb +46 -0
- data/templates/ruby/ruby-on-rails-apis-template/db/seeds.rb +7 -0
- data/templates/ruby/ruby-on-rails-apis-template/spec/rails_helper.rb +67 -0
- data/templates/ruby/ruby-on-rails-apis-template/spec/spec_helper.rb +11 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/Capfile +25 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/Dockerfile +34 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/Gemfile +121 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/Gemfile.lock +478 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/Procfile.dev +4 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/README.md +57 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/Rakefile +6 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/config/esbuild.js +0 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/config/manifest.js +4 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/images/admin/000m.jpg +0 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/images/admin/logo.svg +4 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/admin/profile.scss +3 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/admin.bootstrap.scss +3 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/application.bootstrap.scss +3 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/lib/tabler.min.css +14 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/channels/application_cable/channel.rb +6 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/channels/application_cable/connection.rb +6 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/base_controller.rb +13 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/confirmations_controller.rb +32 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/home_controller.rb +5 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/omniauth_callbacks_controller.rb +30 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/passwords_controller.rb +34 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/profile_controller.rb +41 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/registrations_controller.rb +62 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/sessions_controller.rb +29 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/unlocks_controller.rb +32 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/users_controller.rb +55 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/application_controller.rb +5 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/concerns/active_storage.rb +9 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/home_controller.rb +5 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/decorators/admins/profile_decorator.rb +13 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/decorators/application_decorator.rb +10 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/helpers/admin/application_helper.rb +33 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/helpers/application_helper.rb +4 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/admin.js +6 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/application.js +6 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/admin/dashboard_controller.js +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/admin/flash_message_controller.js +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/admin/index.js +8 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/flash_message_controller.js +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/home_controller.js +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/index.js +8 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/lib/tabler.min.js +9 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/jobs/application_job.rb +9 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/mailers/admin/application_mailer.rb +5 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/mailers/admin/user_mailer.rb +10 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/mailers/application_mailer.rb +6 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/models/admin.rb +39 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/models/application_record.rb +6 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/models/user.rb +54 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/services/application_service.rb +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_flash_messages.html.erb +11 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_footer.html.erb +34 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_javascript_tags.html.erb +29 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_page_header.html.erb +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_page_header_actions.html.erb +5 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_page_header_breadcrumb.html.erb +12 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_pagination.html.erb +24 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_primary_navbar.html.erb +48 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_secondary_navbar.html.erb +31 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_stylesheet_link_tags.html.erb +8 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/home/index.html.erb +8 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/password_resets/edit.html.erb +21 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/password_resets/new.html.erb +17 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/profile/index.html.erb +61 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/profile/password.html.erb +65 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/sessions/new.html.erb +18 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/user_mailer/password_reset.html.erb +14 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/user_mailer/password_reset.text.erb +9 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/_form.html.erb +46 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/edit.html.erb +17 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/index.html.erb +72 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/new.html.erb +16 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/show.html.erb +33 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/confirmations/new.html.erb +16 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/email_changed.html.erb +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/password_change.html.erb +3 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/sessions/new.html.erb +26 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/shared/_error_messages.html.erb +15 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/shared/_links.html.erb +25 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/unlocks/new.html.erb +16 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/home/index.html.erb +2 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/admin/authentication.html.erb +32 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/admin/base.html.erb +29 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/application.html.erb +16 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/mailer.html.erb +13 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/mailer.text.erb +1 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/bin/bundle +114 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/bin/dev +9 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/bin/importmap +4 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/bin/rails +4 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/bin/rake +4 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/bin/setup +33 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/application.rb +27 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/boot.rb +4 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/cable.yml +10 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/credentials.yml.enc +1 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/database.yml +86 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/production.rb +56 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/staging.rb +56 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/templates/nginx_conf.erb +23 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/templates/puma.rb.erb +54 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy.rb +95 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/environment.rb +5 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/environments/development.rb +75 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/environments/production.rb +94 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/environments/test.rb +60 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/assets.rb +13 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/content_security_policy.rb +25 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/devise.rb +311 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/filter_parameter_logging.rb +8 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/inflections.rb +16 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/permissions_policy.rb +11 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/sidekiq.rb +34 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/locales/devise.en.yml +65 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/locales/en.yml +33 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/puma/production.rb +41 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/puma/staging.rb +41 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/puma.rb +43 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/routes.rb +24 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/sidekiq.yml +3 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config/storage.yml +34 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/config.ru +8 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/db/migrate/20220731033724_create_active_storage_tables.active_storage.rb +57 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/db/migrate/20221015181021_devise_create_admins.rb +45 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/db/migrate/20221021163750_devise_create_users.rb +50 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/db/schema.rb +101 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/db/seeds.rb +9 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/docker-compose.yml +80 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/USAGE +5 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/scaffold_generator.rb +84 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/controller.rb.tt +58 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/_form.html.erb.tt +41 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/edit.html.erb.tt +17 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/index.html.erb.tt +74 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/new.html.erb.tt +16 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/show.html.erb.tt +37 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/functional_test.rb.tt +53 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/system_test.rb.tt +52 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/lib/tasks/auto_annotate_models.rake +61 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/package.json +17 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/public/404.html +67 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/public/422.html +67 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/public/500.html +66 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/public/apple-touch-icon-precomposed.png +0 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/public/apple-touch-icon.png +0 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/public/favicon.ico +0 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/public/robots.txt +1 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/scripts/start.sh +14 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/spec/factories/admins.rb +6 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/spec/factories/users.rb +6 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/spec/models/admin_spec.rb +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/spec/models/user_spec.rb +7 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/spec/rails_helper.rb +63 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/spec/spec_helper.rb +94 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/systemd/puma.service +26 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/systemd/sidekiq.service +90 -0
- data/templates/ruby/ruby-on-rails-boilerplate-template/yarn.lock +294 -0
- data/templates/rust/advance-rust-template/Cargo.toml +22 -0
- data/templates/rust/advance-rust-template/README.md +81 -0
- data/templates/rust/advance-rust-template/env.example +4 -0
- data/templates/rust/advance-rust-template/src/config.rs +17 -0
- data/templates/rust/advance-rust-template/src/errors.rs +17 -0
- data/templates/rust/advance-rust-template/src/handlers.rs +28 -0
- data/templates/rust/advance-rust-template/src/main.rs +33 -0
- data/templates/rust/advance-rust-template/src/models.rs +1 -0
- data/templates/rust/advance-rust-template/src/routes.rs +10 -0
- data/templates/rust/advance-rust-template/tests/integration.rs +18 -0
- data/templates/rust/basic-rust-template/Cargo.toml +7 -0
- data/templates/rust/basic-rust-template/README.md +38 -0
- data/templates/rust/basic-rust-template/src/main.rs +54 -0
- data/templates/vuejs/javascript/headless-tailwind-template/README.md +60 -0
- data/templates/vuejs/javascript/headless-tailwind-template/e2e/vue.spec.js +8 -0
- data/templates/vuejs/javascript/headless-tailwind-template/eslint.config.js +40 -0
- data/templates/vuejs/javascript/headless-tailwind-template/index.html +13 -0
- data/templates/vuejs/javascript/headless-tailwind-template/jsconfig.json +8 -0
- data/templates/vuejs/javascript/headless-tailwind-template/package.json +47 -0
- data/templates/vuejs/javascript/headless-tailwind-template/playwright.config.js +110 -0
- data/templates/vuejs/javascript/headless-tailwind-template/public/favicon.ico +0 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/App.vue +26 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/assets/base.css +86 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/assets/logo.svg +1 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/assets/main.css +37 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/HelloWorld.vue +44 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/TheWelcome.vue +95 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/WelcomeItem.vue +86 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/__tests__/HelloWorld.spec.js +11 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/icons/IconCommunity.vue +7 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/icons/IconDocumentation.vue +7 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/icons/IconEcosystem.vue +7 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/icons/IconSupport.vue +7 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/icons/IconTooling.vue +19 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/ui/BaseButton.vue +8 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/ui/BaseCard.vue +6 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/ui/BaseInput.vue +19 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/components/ui/BaseTextarea.vue +19 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/main.js +14 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/router/index.js +23 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/stores/counter.js +12 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/views/AboutView.vue +15 -0
- data/templates/vuejs/javascript/headless-tailwind-template/src/views/HomeView.vue +9 -0
- data/templates/vuejs/javascript/headless-tailwind-template/tailwind.config.js +11 -0
- data/templates/vuejs/javascript/headless-tailwind-template/vite.config.js +20 -0
- data/templates/vuejs/javascript/headless-tailwind-template/vitest.config.js +14 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/README.md +58 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/eslint.config.js +34 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/index.html +13 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/jsconfig.json +8 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/nightwatch.conf.cjs +153 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/package.json +47 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/public/favicon.ico +0 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/App.vue +85 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/assets/base.css +86 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/assets/logo.svg +1 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/assets/main.css +35 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/components/HelloWorld.vue +44 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/components/TheWelcome.vue +95 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/components/WelcomeItem.vue +86 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/components/__tests__/HelloWorld.spec.js +11 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/components/icons/IconCommunity.vue +7 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/components/icons/IconDocumentation.vue +7 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/components/icons/IconEcosystem.vue +7 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/components/icons/IconSupport.vue +7 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/components/icons/IconTooling.vue +19 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/main.js +14 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/router/index.js +23 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/stores/counter.js +12 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/views/AboutView.vue +15 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/src/views/HomeView.vue +9 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/tests/e2e/example.js +11 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/vite.config.js +22 -0
- data/templates/vuejs/javascript/no-headless-no-tailwind-template/vitest.config.js +14 -0
- data/templates/vuejs/typescript/headless-tailwind-template/README.md +64 -0
- data/templates/vuejs/typescript/headless-tailwind-template/e2e/tsconfig.json +4 -0
- data/templates/vuejs/typescript/headless-tailwind-template/e2e/vue.spec.ts +8 -0
- data/templates/vuejs/typescript/headless-tailwind-template/env.d.ts +1 -0
- data/templates/vuejs/typescript/headless-tailwind-template/eslint.config.ts +36 -0
- data/templates/vuejs/typescript/headless-tailwind-template/index.html +13 -0
- data/templates/vuejs/typescript/headless-tailwind-template/package.json +54 -0
- data/templates/vuejs/typescript/headless-tailwind-template/playwright.config.ts +110 -0
- data/templates/vuejs/typescript/headless-tailwind-template/public/favicon.ico +0 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/App.vue +26 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/assets/base.css +86 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/assets/logo.svg +1 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/assets/main.css +35 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/HelloWorld.vue +41 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/TheWelcome.vue +95 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/WelcomeItem.vue +87 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/__tests__/HelloWorld.spec.ts +11 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/icons/IconCommunity.vue +7 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/icons/IconDocumentation.vue +7 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/icons/IconEcosystem.vue +7 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/icons/IconSupport.vue +7 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/icons/IconTooling.vue +19 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/ui/BaseButton.vue +8 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/ui/BaseCard.vue +6 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/ui/BaseInput.vue +19 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/components/ui/BaseTextarea.vue +19 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/main.ts +14 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/router/index.ts +23 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/stores/counter.ts +12 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/views/AboutView.vue +15 -0
- data/templates/vuejs/typescript/headless-tailwind-template/src/views/HomeView.vue +9 -0
- data/templates/vuejs/typescript/headless-tailwind-template/tailwind.config.js +11 -0
- data/templates/vuejs/typescript/headless-tailwind-template/tsconfig.app.json +12 -0
- data/templates/vuejs/typescript/headless-tailwind-template/tsconfig.json +14 -0
- data/templates/vuejs/typescript/headless-tailwind-template/tsconfig.node.json +19 -0
- data/templates/vuejs/typescript/headless-tailwind-template/tsconfig.vitest.json +11 -0
- data/templates/vuejs/typescript/headless-tailwind-template/vite.config.ts +20 -0
- data/templates/vuejs/typescript/headless-tailwind-template/vitest.config.ts +14 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/README.md +64 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/e2e/tsconfig.json +4 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/e2e/vue.spec.ts +8 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/env.d.ts +1 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/eslint.config.ts +36 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/index.html +13 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/package.json +51 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/playwright.config.ts +110 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/public/favicon.ico +0 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/App.vue +85 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/assets/base.css +86 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/assets/logo.svg +1 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/assets/main.css +35 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/components/HelloWorld.vue +41 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/components/TheWelcome.vue +95 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/components/WelcomeItem.vue +87 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/components/__tests__/HelloWorld.spec.ts +11 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/components/icons/IconCommunity.vue +7 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/components/icons/IconDocumentation.vue +7 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/components/icons/IconEcosystem.vue +7 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/components/icons/IconSupport.vue +7 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/components/icons/IconTooling.vue +19 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/main.ts +14 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/router/index.ts +23 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/stores/counter.ts +12 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/views/AboutView.vue +15 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/src/views/HomeView.vue +9 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/tsconfig.app.json +12 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/tsconfig.json +14 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/tsconfig.node.json +19 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/tsconfig.vitest.json +11 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/vite.config.ts +20 -0
- data/templates/vuejs/typescript/no-headless-no-tailwind-template/vitest.config.ts +14 -0
- metadata +2991 -0
|
@@ -0,0 +1,4767 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shadcn-tailwind-template",
|
|
3
|
+
"lockfileVersion": 3,
|
|
4
|
+
"requires": true,
|
|
5
|
+
"packages": {
|
|
6
|
+
"": {
|
|
7
|
+
"name": "shadcn-tailwind-template",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@react-router/node": "^7.7.1",
|
|
10
|
+
"@react-router/serve": "^7.7.1",
|
|
11
|
+
"isbot": "^5.1.27",
|
|
12
|
+
"react": "^19.1.0",
|
|
13
|
+
"react-dom": "^19.1.0",
|
|
14
|
+
"react-router": "^7.7.1"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@react-router/dev": "^7.7.1",
|
|
18
|
+
"@tailwindcss/vite": "^4.1.4",
|
|
19
|
+
"@types/node": "^20",
|
|
20
|
+
"@types/react": "^19.1.2",
|
|
21
|
+
"@types/react-dom": "^19.1.2",
|
|
22
|
+
"tailwindcss": "^4.1.4",
|
|
23
|
+
"typescript": "^5.8.3",
|
|
24
|
+
"vite": "^6.3.3",
|
|
25
|
+
"vite-tsconfig-paths": "^5.1.4"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"node_modules/@ampproject/remapping": {
|
|
29
|
+
"version": "2.3.0",
|
|
30
|
+
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
|
|
31
|
+
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
|
|
32
|
+
"dev": true,
|
|
33
|
+
"license": "Apache-2.0",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@jridgewell/gen-mapping": "^0.3.5",
|
|
36
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=6.0.0"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"node_modules/@babel/code-frame": {
|
|
43
|
+
"version": "7.27.1",
|
|
44
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
|
45
|
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
|
|
46
|
+
"dev": true,
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@babel/helper-validator-identifier": "^7.27.1",
|
|
50
|
+
"js-tokens": "^4.0.0",
|
|
51
|
+
"picocolors": "^1.1.1"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=6.9.0"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"node_modules/@babel/compat-data": {
|
|
58
|
+
"version": "7.28.0",
|
|
59
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz",
|
|
60
|
+
"integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==",
|
|
61
|
+
"dev": true,
|
|
62
|
+
"license": "MIT",
|
|
63
|
+
"engines": {
|
|
64
|
+
"node": ">=6.9.0"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"node_modules/@babel/core": {
|
|
68
|
+
"version": "7.28.0",
|
|
69
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz",
|
|
70
|
+
"integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==",
|
|
71
|
+
"dev": true,
|
|
72
|
+
"license": "MIT",
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"@ampproject/remapping": "^2.2.0",
|
|
75
|
+
"@babel/code-frame": "^7.27.1",
|
|
76
|
+
"@babel/generator": "^7.28.0",
|
|
77
|
+
"@babel/helper-compilation-targets": "^7.27.2",
|
|
78
|
+
"@babel/helper-module-transforms": "^7.27.3",
|
|
79
|
+
"@babel/helpers": "^7.27.6",
|
|
80
|
+
"@babel/parser": "^7.28.0",
|
|
81
|
+
"@babel/template": "^7.27.2",
|
|
82
|
+
"@babel/traverse": "^7.28.0",
|
|
83
|
+
"@babel/types": "^7.28.0",
|
|
84
|
+
"convert-source-map": "^2.0.0",
|
|
85
|
+
"debug": "^4.1.0",
|
|
86
|
+
"gensync": "^1.0.0-beta.2",
|
|
87
|
+
"json5": "^2.2.3",
|
|
88
|
+
"semver": "^6.3.1"
|
|
89
|
+
},
|
|
90
|
+
"engines": {
|
|
91
|
+
"node": ">=6.9.0"
|
|
92
|
+
},
|
|
93
|
+
"funding": {
|
|
94
|
+
"type": "opencollective",
|
|
95
|
+
"url": "https://opencollective.com/babel"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"node_modules/@babel/core/node_modules/semver": {
|
|
99
|
+
"version": "6.3.1",
|
|
100
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
101
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
102
|
+
"dev": true,
|
|
103
|
+
"license": "ISC",
|
|
104
|
+
"bin": {
|
|
105
|
+
"semver": "bin/semver.js"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"node_modules/@babel/generator": {
|
|
109
|
+
"version": "7.28.0",
|
|
110
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz",
|
|
111
|
+
"integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==",
|
|
112
|
+
"dev": true,
|
|
113
|
+
"license": "MIT",
|
|
114
|
+
"dependencies": {
|
|
115
|
+
"@babel/parser": "^7.28.0",
|
|
116
|
+
"@babel/types": "^7.28.0",
|
|
117
|
+
"@jridgewell/gen-mapping": "^0.3.12",
|
|
118
|
+
"@jridgewell/trace-mapping": "^0.3.28",
|
|
119
|
+
"jsesc": "^3.0.2"
|
|
120
|
+
},
|
|
121
|
+
"engines": {
|
|
122
|
+
"node": ">=6.9.0"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"node_modules/@babel/helper-annotate-as-pure": {
|
|
126
|
+
"version": "7.27.3",
|
|
127
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz",
|
|
128
|
+
"integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==",
|
|
129
|
+
"dev": true,
|
|
130
|
+
"license": "MIT",
|
|
131
|
+
"dependencies": {
|
|
132
|
+
"@babel/types": "^7.27.3"
|
|
133
|
+
},
|
|
134
|
+
"engines": {
|
|
135
|
+
"node": ">=6.9.0"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"node_modules/@babel/helper-compilation-targets": {
|
|
139
|
+
"version": "7.27.2",
|
|
140
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
|
|
141
|
+
"integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
|
|
142
|
+
"dev": true,
|
|
143
|
+
"license": "MIT",
|
|
144
|
+
"dependencies": {
|
|
145
|
+
"@babel/compat-data": "^7.27.2",
|
|
146
|
+
"@babel/helper-validator-option": "^7.27.1",
|
|
147
|
+
"browserslist": "^4.24.0",
|
|
148
|
+
"lru-cache": "^5.1.1",
|
|
149
|
+
"semver": "^6.3.1"
|
|
150
|
+
},
|
|
151
|
+
"engines": {
|
|
152
|
+
"node": ">=6.9.0"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
|
|
156
|
+
"version": "6.3.1",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
158
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
159
|
+
"dev": true,
|
|
160
|
+
"license": "ISC",
|
|
161
|
+
"bin": {
|
|
162
|
+
"semver": "bin/semver.js"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"node_modules/@babel/helper-create-class-features-plugin": {
|
|
166
|
+
"version": "7.27.1",
|
|
167
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz",
|
|
168
|
+
"integrity": "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==",
|
|
169
|
+
"dev": true,
|
|
170
|
+
"license": "MIT",
|
|
171
|
+
"dependencies": {
|
|
172
|
+
"@babel/helper-annotate-as-pure": "^7.27.1",
|
|
173
|
+
"@babel/helper-member-expression-to-functions": "^7.27.1",
|
|
174
|
+
"@babel/helper-optimise-call-expression": "^7.27.1",
|
|
175
|
+
"@babel/helper-replace-supers": "^7.27.1",
|
|
176
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
|
|
177
|
+
"@babel/traverse": "^7.27.1",
|
|
178
|
+
"semver": "^6.3.1"
|
|
179
|
+
},
|
|
180
|
+
"engines": {
|
|
181
|
+
"node": ">=6.9.0"
|
|
182
|
+
},
|
|
183
|
+
"peerDependencies": {
|
|
184
|
+
"@babel/core": "^7.0.0"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
|
|
188
|
+
"version": "6.3.1",
|
|
189
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
190
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
191
|
+
"dev": true,
|
|
192
|
+
"license": "ISC",
|
|
193
|
+
"bin": {
|
|
194
|
+
"semver": "bin/semver.js"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"node_modules/@babel/helper-globals": {
|
|
198
|
+
"version": "7.28.0",
|
|
199
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
|
|
200
|
+
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
|
|
201
|
+
"dev": true,
|
|
202
|
+
"license": "MIT",
|
|
203
|
+
"engines": {
|
|
204
|
+
"node": ">=6.9.0"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"node_modules/@babel/helper-member-expression-to-functions": {
|
|
208
|
+
"version": "7.27.1",
|
|
209
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz",
|
|
210
|
+
"integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==",
|
|
211
|
+
"dev": true,
|
|
212
|
+
"license": "MIT",
|
|
213
|
+
"dependencies": {
|
|
214
|
+
"@babel/traverse": "^7.27.1",
|
|
215
|
+
"@babel/types": "^7.27.1"
|
|
216
|
+
},
|
|
217
|
+
"engines": {
|
|
218
|
+
"node": ">=6.9.0"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"node_modules/@babel/helper-module-imports": {
|
|
222
|
+
"version": "7.27.1",
|
|
223
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
|
|
224
|
+
"integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
|
|
225
|
+
"dev": true,
|
|
226
|
+
"license": "MIT",
|
|
227
|
+
"dependencies": {
|
|
228
|
+
"@babel/traverse": "^7.27.1",
|
|
229
|
+
"@babel/types": "^7.27.1"
|
|
230
|
+
},
|
|
231
|
+
"engines": {
|
|
232
|
+
"node": ">=6.9.0"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"node_modules/@babel/helper-module-transforms": {
|
|
236
|
+
"version": "7.27.3",
|
|
237
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz",
|
|
238
|
+
"integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==",
|
|
239
|
+
"dev": true,
|
|
240
|
+
"license": "MIT",
|
|
241
|
+
"dependencies": {
|
|
242
|
+
"@babel/helper-module-imports": "^7.27.1",
|
|
243
|
+
"@babel/helper-validator-identifier": "^7.27.1",
|
|
244
|
+
"@babel/traverse": "^7.27.3"
|
|
245
|
+
},
|
|
246
|
+
"engines": {
|
|
247
|
+
"node": ">=6.9.0"
|
|
248
|
+
},
|
|
249
|
+
"peerDependencies": {
|
|
250
|
+
"@babel/core": "^7.0.0"
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"node_modules/@babel/helper-optimise-call-expression": {
|
|
254
|
+
"version": "7.27.1",
|
|
255
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz",
|
|
256
|
+
"integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==",
|
|
257
|
+
"dev": true,
|
|
258
|
+
"license": "MIT",
|
|
259
|
+
"dependencies": {
|
|
260
|
+
"@babel/types": "^7.27.1"
|
|
261
|
+
},
|
|
262
|
+
"engines": {
|
|
263
|
+
"node": ">=6.9.0"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"node_modules/@babel/helper-plugin-utils": {
|
|
267
|
+
"version": "7.27.1",
|
|
268
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
|
|
269
|
+
"integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
|
|
270
|
+
"dev": true,
|
|
271
|
+
"license": "MIT",
|
|
272
|
+
"engines": {
|
|
273
|
+
"node": ">=6.9.0"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"node_modules/@babel/helper-replace-supers": {
|
|
277
|
+
"version": "7.27.1",
|
|
278
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz",
|
|
279
|
+
"integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==",
|
|
280
|
+
"dev": true,
|
|
281
|
+
"license": "MIT",
|
|
282
|
+
"dependencies": {
|
|
283
|
+
"@babel/helper-member-expression-to-functions": "^7.27.1",
|
|
284
|
+
"@babel/helper-optimise-call-expression": "^7.27.1",
|
|
285
|
+
"@babel/traverse": "^7.27.1"
|
|
286
|
+
},
|
|
287
|
+
"engines": {
|
|
288
|
+
"node": ">=6.9.0"
|
|
289
|
+
},
|
|
290
|
+
"peerDependencies": {
|
|
291
|
+
"@babel/core": "^7.0.0"
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
|
|
295
|
+
"version": "7.27.1",
|
|
296
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz",
|
|
297
|
+
"integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==",
|
|
298
|
+
"dev": true,
|
|
299
|
+
"license": "MIT",
|
|
300
|
+
"dependencies": {
|
|
301
|
+
"@babel/traverse": "^7.27.1",
|
|
302
|
+
"@babel/types": "^7.27.1"
|
|
303
|
+
},
|
|
304
|
+
"engines": {
|
|
305
|
+
"node": ">=6.9.0"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"node_modules/@babel/helper-string-parser": {
|
|
309
|
+
"version": "7.27.1",
|
|
310
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
|
311
|
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
|
312
|
+
"dev": true,
|
|
313
|
+
"license": "MIT",
|
|
314
|
+
"engines": {
|
|
315
|
+
"node": ">=6.9.0"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
319
|
+
"version": "7.27.1",
|
|
320
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
|
|
321
|
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
|
|
322
|
+
"dev": true,
|
|
323
|
+
"license": "MIT",
|
|
324
|
+
"engines": {
|
|
325
|
+
"node": ">=6.9.0"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"node_modules/@babel/helper-validator-option": {
|
|
329
|
+
"version": "7.27.1",
|
|
330
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
|
|
331
|
+
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
|
|
332
|
+
"dev": true,
|
|
333
|
+
"license": "MIT",
|
|
334
|
+
"engines": {
|
|
335
|
+
"node": ">=6.9.0"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"node_modules/@babel/helpers": {
|
|
339
|
+
"version": "7.28.2",
|
|
340
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.2.tgz",
|
|
341
|
+
"integrity": "sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==",
|
|
342
|
+
"dev": true,
|
|
343
|
+
"license": "MIT",
|
|
344
|
+
"dependencies": {
|
|
345
|
+
"@babel/template": "^7.27.2",
|
|
346
|
+
"@babel/types": "^7.28.2"
|
|
347
|
+
},
|
|
348
|
+
"engines": {
|
|
349
|
+
"node": ">=6.9.0"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"node_modules/@babel/parser": {
|
|
353
|
+
"version": "7.28.0",
|
|
354
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz",
|
|
355
|
+
"integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==",
|
|
356
|
+
"dev": true,
|
|
357
|
+
"license": "MIT",
|
|
358
|
+
"dependencies": {
|
|
359
|
+
"@babel/types": "^7.28.0"
|
|
360
|
+
},
|
|
361
|
+
"bin": {
|
|
362
|
+
"parser": "bin/babel-parser.js"
|
|
363
|
+
},
|
|
364
|
+
"engines": {
|
|
365
|
+
"node": ">=6.0.0"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"node_modules/@babel/plugin-syntax-jsx": {
|
|
369
|
+
"version": "7.27.1",
|
|
370
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz",
|
|
371
|
+
"integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==",
|
|
372
|
+
"dev": true,
|
|
373
|
+
"license": "MIT",
|
|
374
|
+
"dependencies": {
|
|
375
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
376
|
+
},
|
|
377
|
+
"engines": {
|
|
378
|
+
"node": ">=6.9.0"
|
|
379
|
+
},
|
|
380
|
+
"peerDependencies": {
|
|
381
|
+
"@babel/core": "^7.0.0-0"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"node_modules/@babel/plugin-syntax-typescript": {
|
|
385
|
+
"version": "7.27.1",
|
|
386
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz",
|
|
387
|
+
"integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==",
|
|
388
|
+
"dev": true,
|
|
389
|
+
"license": "MIT",
|
|
390
|
+
"dependencies": {
|
|
391
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
392
|
+
},
|
|
393
|
+
"engines": {
|
|
394
|
+
"node": ">=6.9.0"
|
|
395
|
+
},
|
|
396
|
+
"peerDependencies": {
|
|
397
|
+
"@babel/core": "^7.0.0-0"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
"node_modules/@babel/plugin-transform-modules-commonjs": {
|
|
401
|
+
"version": "7.27.1",
|
|
402
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz",
|
|
403
|
+
"integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==",
|
|
404
|
+
"dev": true,
|
|
405
|
+
"license": "MIT",
|
|
406
|
+
"dependencies": {
|
|
407
|
+
"@babel/helper-module-transforms": "^7.27.1",
|
|
408
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
409
|
+
},
|
|
410
|
+
"engines": {
|
|
411
|
+
"node": ">=6.9.0"
|
|
412
|
+
},
|
|
413
|
+
"peerDependencies": {
|
|
414
|
+
"@babel/core": "^7.0.0-0"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"node_modules/@babel/plugin-transform-typescript": {
|
|
418
|
+
"version": "7.28.0",
|
|
419
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.0.tgz",
|
|
420
|
+
"integrity": "sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==",
|
|
421
|
+
"dev": true,
|
|
422
|
+
"license": "MIT",
|
|
423
|
+
"dependencies": {
|
|
424
|
+
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
425
|
+
"@babel/helper-create-class-features-plugin": "^7.27.1",
|
|
426
|
+
"@babel/helper-plugin-utils": "^7.27.1",
|
|
427
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
|
|
428
|
+
"@babel/plugin-syntax-typescript": "^7.27.1"
|
|
429
|
+
},
|
|
430
|
+
"engines": {
|
|
431
|
+
"node": ">=6.9.0"
|
|
432
|
+
},
|
|
433
|
+
"peerDependencies": {
|
|
434
|
+
"@babel/core": "^7.0.0-0"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"node_modules/@babel/preset-typescript": {
|
|
438
|
+
"version": "7.27.1",
|
|
439
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.27.1.tgz",
|
|
440
|
+
"integrity": "sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==",
|
|
441
|
+
"dev": true,
|
|
442
|
+
"license": "MIT",
|
|
443
|
+
"dependencies": {
|
|
444
|
+
"@babel/helper-plugin-utils": "^7.27.1",
|
|
445
|
+
"@babel/helper-validator-option": "^7.27.1",
|
|
446
|
+
"@babel/plugin-syntax-jsx": "^7.27.1",
|
|
447
|
+
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
|
|
448
|
+
"@babel/plugin-transform-typescript": "^7.27.1"
|
|
449
|
+
},
|
|
450
|
+
"engines": {
|
|
451
|
+
"node": ">=6.9.0"
|
|
452
|
+
},
|
|
453
|
+
"peerDependencies": {
|
|
454
|
+
"@babel/core": "^7.0.0-0"
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
"node_modules/@babel/template": {
|
|
458
|
+
"version": "7.27.2",
|
|
459
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
|
|
460
|
+
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
|
|
461
|
+
"dev": true,
|
|
462
|
+
"license": "MIT",
|
|
463
|
+
"dependencies": {
|
|
464
|
+
"@babel/code-frame": "^7.27.1",
|
|
465
|
+
"@babel/parser": "^7.27.2",
|
|
466
|
+
"@babel/types": "^7.27.1"
|
|
467
|
+
},
|
|
468
|
+
"engines": {
|
|
469
|
+
"node": ">=6.9.0"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"node_modules/@babel/traverse": {
|
|
473
|
+
"version": "7.28.0",
|
|
474
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz",
|
|
475
|
+
"integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==",
|
|
476
|
+
"dev": true,
|
|
477
|
+
"license": "MIT",
|
|
478
|
+
"dependencies": {
|
|
479
|
+
"@babel/code-frame": "^7.27.1",
|
|
480
|
+
"@babel/generator": "^7.28.0",
|
|
481
|
+
"@babel/helper-globals": "^7.28.0",
|
|
482
|
+
"@babel/parser": "^7.28.0",
|
|
483
|
+
"@babel/template": "^7.27.2",
|
|
484
|
+
"@babel/types": "^7.28.0",
|
|
485
|
+
"debug": "^4.3.1"
|
|
486
|
+
},
|
|
487
|
+
"engines": {
|
|
488
|
+
"node": ">=6.9.0"
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"node_modules/@babel/types": {
|
|
492
|
+
"version": "7.28.2",
|
|
493
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz",
|
|
494
|
+
"integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==",
|
|
495
|
+
"dev": true,
|
|
496
|
+
"license": "MIT",
|
|
497
|
+
"dependencies": {
|
|
498
|
+
"@babel/helper-string-parser": "^7.27.1",
|
|
499
|
+
"@babel/helper-validator-identifier": "^7.27.1"
|
|
500
|
+
},
|
|
501
|
+
"engines": {
|
|
502
|
+
"node": ">=6.9.0"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
506
|
+
"version": "0.25.8",
|
|
507
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.8.tgz",
|
|
508
|
+
"integrity": "sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==",
|
|
509
|
+
"cpu": [
|
|
510
|
+
"ppc64"
|
|
511
|
+
],
|
|
512
|
+
"dev": true,
|
|
513
|
+
"license": "MIT",
|
|
514
|
+
"optional": true,
|
|
515
|
+
"os": [
|
|
516
|
+
"aix"
|
|
517
|
+
],
|
|
518
|
+
"engines": {
|
|
519
|
+
"node": ">=18"
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
"node_modules/@esbuild/android-arm": {
|
|
523
|
+
"version": "0.25.8",
|
|
524
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.8.tgz",
|
|
525
|
+
"integrity": "sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==",
|
|
526
|
+
"cpu": [
|
|
527
|
+
"arm"
|
|
528
|
+
],
|
|
529
|
+
"dev": true,
|
|
530
|
+
"license": "MIT",
|
|
531
|
+
"optional": true,
|
|
532
|
+
"os": [
|
|
533
|
+
"android"
|
|
534
|
+
],
|
|
535
|
+
"engines": {
|
|
536
|
+
"node": ">=18"
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
"node_modules/@esbuild/android-arm64": {
|
|
540
|
+
"version": "0.25.8",
|
|
541
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.8.tgz",
|
|
542
|
+
"integrity": "sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==",
|
|
543
|
+
"cpu": [
|
|
544
|
+
"arm64"
|
|
545
|
+
],
|
|
546
|
+
"dev": true,
|
|
547
|
+
"license": "MIT",
|
|
548
|
+
"optional": true,
|
|
549
|
+
"os": [
|
|
550
|
+
"android"
|
|
551
|
+
],
|
|
552
|
+
"engines": {
|
|
553
|
+
"node": ">=18"
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
"node_modules/@esbuild/android-x64": {
|
|
557
|
+
"version": "0.25.8",
|
|
558
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.8.tgz",
|
|
559
|
+
"integrity": "sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==",
|
|
560
|
+
"cpu": [
|
|
561
|
+
"x64"
|
|
562
|
+
],
|
|
563
|
+
"dev": true,
|
|
564
|
+
"license": "MIT",
|
|
565
|
+
"optional": true,
|
|
566
|
+
"os": [
|
|
567
|
+
"android"
|
|
568
|
+
],
|
|
569
|
+
"engines": {
|
|
570
|
+
"node": ">=18"
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
574
|
+
"version": "0.25.8",
|
|
575
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.8.tgz",
|
|
576
|
+
"integrity": "sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==",
|
|
577
|
+
"cpu": [
|
|
578
|
+
"arm64"
|
|
579
|
+
],
|
|
580
|
+
"dev": true,
|
|
581
|
+
"license": "MIT",
|
|
582
|
+
"optional": true,
|
|
583
|
+
"os": [
|
|
584
|
+
"darwin"
|
|
585
|
+
],
|
|
586
|
+
"engines": {
|
|
587
|
+
"node": ">=18"
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
591
|
+
"version": "0.25.8",
|
|
592
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.8.tgz",
|
|
593
|
+
"integrity": "sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==",
|
|
594
|
+
"cpu": [
|
|
595
|
+
"x64"
|
|
596
|
+
],
|
|
597
|
+
"dev": true,
|
|
598
|
+
"license": "MIT",
|
|
599
|
+
"optional": true,
|
|
600
|
+
"os": [
|
|
601
|
+
"darwin"
|
|
602
|
+
],
|
|
603
|
+
"engines": {
|
|
604
|
+
"node": ">=18"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
608
|
+
"version": "0.25.8",
|
|
609
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.8.tgz",
|
|
610
|
+
"integrity": "sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==",
|
|
611
|
+
"cpu": [
|
|
612
|
+
"arm64"
|
|
613
|
+
],
|
|
614
|
+
"dev": true,
|
|
615
|
+
"license": "MIT",
|
|
616
|
+
"optional": true,
|
|
617
|
+
"os": [
|
|
618
|
+
"freebsd"
|
|
619
|
+
],
|
|
620
|
+
"engines": {
|
|
621
|
+
"node": ">=18"
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
625
|
+
"version": "0.25.8",
|
|
626
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.8.tgz",
|
|
627
|
+
"integrity": "sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==",
|
|
628
|
+
"cpu": [
|
|
629
|
+
"x64"
|
|
630
|
+
],
|
|
631
|
+
"dev": true,
|
|
632
|
+
"license": "MIT",
|
|
633
|
+
"optional": true,
|
|
634
|
+
"os": [
|
|
635
|
+
"freebsd"
|
|
636
|
+
],
|
|
637
|
+
"engines": {
|
|
638
|
+
"node": ">=18"
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"node_modules/@esbuild/linux-arm": {
|
|
642
|
+
"version": "0.25.8",
|
|
643
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.8.tgz",
|
|
644
|
+
"integrity": "sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==",
|
|
645
|
+
"cpu": [
|
|
646
|
+
"arm"
|
|
647
|
+
],
|
|
648
|
+
"dev": true,
|
|
649
|
+
"license": "MIT",
|
|
650
|
+
"optional": true,
|
|
651
|
+
"os": [
|
|
652
|
+
"linux"
|
|
653
|
+
],
|
|
654
|
+
"engines": {
|
|
655
|
+
"node": ">=18"
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
659
|
+
"version": "0.25.8",
|
|
660
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.8.tgz",
|
|
661
|
+
"integrity": "sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==",
|
|
662
|
+
"cpu": [
|
|
663
|
+
"arm64"
|
|
664
|
+
],
|
|
665
|
+
"dev": true,
|
|
666
|
+
"license": "MIT",
|
|
667
|
+
"optional": true,
|
|
668
|
+
"os": [
|
|
669
|
+
"linux"
|
|
670
|
+
],
|
|
671
|
+
"engines": {
|
|
672
|
+
"node": ">=18"
|
|
673
|
+
}
|
|
674
|
+
},
|
|
675
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
676
|
+
"version": "0.25.8",
|
|
677
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.8.tgz",
|
|
678
|
+
"integrity": "sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==",
|
|
679
|
+
"cpu": [
|
|
680
|
+
"ia32"
|
|
681
|
+
],
|
|
682
|
+
"dev": true,
|
|
683
|
+
"license": "MIT",
|
|
684
|
+
"optional": true,
|
|
685
|
+
"os": [
|
|
686
|
+
"linux"
|
|
687
|
+
],
|
|
688
|
+
"engines": {
|
|
689
|
+
"node": ">=18"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
693
|
+
"version": "0.25.8",
|
|
694
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.8.tgz",
|
|
695
|
+
"integrity": "sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==",
|
|
696
|
+
"cpu": [
|
|
697
|
+
"loong64"
|
|
698
|
+
],
|
|
699
|
+
"dev": true,
|
|
700
|
+
"license": "MIT",
|
|
701
|
+
"optional": true,
|
|
702
|
+
"os": [
|
|
703
|
+
"linux"
|
|
704
|
+
],
|
|
705
|
+
"engines": {
|
|
706
|
+
"node": ">=18"
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
710
|
+
"version": "0.25.8",
|
|
711
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.8.tgz",
|
|
712
|
+
"integrity": "sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==",
|
|
713
|
+
"cpu": [
|
|
714
|
+
"mips64el"
|
|
715
|
+
],
|
|
716
|
+
"dev": true,
|
|
717
|
+
"license": "MIT",
|
|
718
|
+
"optional": true,
|
|
719
|
+
"os": [
|
|
720
|
+
"linux"
|
|
721
|
+
],
|
|
722
|
+
"engines": {
|
|
723
|
+
"node": ">=18"
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
727
|
+
"version": "0.25.8",
|
|
728
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.8.tgz",
|
|
729
|
+
"integrity": "sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==",
|
|
730
|
+
"cpu": [
|
|
731
|
+
"ppc64"
|
|
732
|
+
],
|
|
733
|
+
"dev": true,
|
|
734
|
+
"license": "MIT",
|
|
735
|
+
"optional": true,
|
|
736
|
+
"os": [
|
|
737
|
+
"linux"
|
|
738
|
+
],
|
|
739
|
+
"engines": {
|
|
740
|
+
"node": ">=18"
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
744
|
+
"version": "0.25.8",
|
|
745
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.8.tgz",
|
|
746
|
+
"integrity": "sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==",
|
|
747
|
+
"cpu": [
|
|
748
|
+
"riscv64"
|
|
749
|
+
],
|
|
750
|
+
"dev": true,
|
|
751
|
+
"license": "MIT",
|
|
752
|
+
"optional": true,
|
|
753
|
+
"os": [
|
|
754
|
+
"linux"
|
|
755
|
+
],
|
|
756
|
+
"engines": {
|
|
757
|
+
"node": ">=18"
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
761
|
+
"version": "0.25.8",
|
|
762
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.8.tgz",
|
|
763
|
+
"integrity": "sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==",
|
|
764
|
+
"cpu": [
|
|
765
|
+
"s390x"
|
|
766
|
+
],
|
|
767
|
+
"dev": true,
|
|
768
|
+
"license": "MIT",
|
|
769
|
+
"optional": true,
|
|
770
|
+
"os": [
|
|
771
|
+
"linux"
|
|
772
|
+
],
|
|
773
|
+
"engines": {
|
|
774
|
+
"node": ">=18"
|
|
775
|
+
}
|
|
776
|
+
},
|
|
777
|
+
"node_modules/@esbuild/linux-x64": {
|
|
778
|
+
"version": "0.25.8",
|
|
779
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.8.tgz",
|
|
780
|
+
"integrity": "sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==",
|
|
781
|
+
"cpu": [
|
|
782
|
+
"x64"
|
|
783
|
+
],
|
|
784
|
+
"dev": true,
|
|
785
|
+
"license": "MIT",
|
|
786
|
+
"optional": true,
|
|
787
|
+
"os": [
|
|
788
|
+
"linux"
|
|
789
|
+
],
|
|
790
|
+
"engines": {
|
|
791
|
+
"node": ">=18"
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
"node_modules/@esbuild/netbsd-arm64": {
|
|
795
|
+
"version": "0.25.8",
|
|
796
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.8.tgz",
|
|
797
|
+
"integrity": "sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==",
|
|
798
|
+
"cpu": [
|
|
799
|
+
"arm64"
|
|
800
|
+
],
|
|
801
|
+
"dev": true,
|
|
802
|
+
"license": "MIT",
|
|
803
|
+
"optional": true,
|
|
804
|
+
"os": [
|
|
805
|
+
"netbsd"
|
|
806
|
+
],
|
|
807
|
+
"engines": {
|
|
808
|
+
"node": ">=18"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
812
|
+
"version": "0.25.8",
|
|
813
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.8.tgz",
|
|
814
|
+
"integrity": "sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==",
|
|
815
|
+
"cpu": [
|
|
816
|
+
"x64"
|
|
817
|
+
],
|
|
818
|
+
"dev": true,
|
|
819
|
+
"license": "MIT",
|
|
820
|
+
"optional": true,
|
|
821
|
+
"os": [
|
|
822
|
+
"netbsd"
|
|
823
|
+
],
|
|
824
|
+
"engines": {
|
|
825
|
+
"node": ">=18"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
829
|
+
"version": "0.25.8",
|
|
830
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.8.tgz",
|
|
831
|
+
"integrity": "sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==",
|
|
832
|
+
"cpu": [
|
|
833
|
+
"arm64"
|
|
834
|
+
],
|
|
835
|
+
"dev": true,
|
|
836
|
+
"license": "MIT",
|
|
837
|
+
"optional": true,
|
|
838
|
+
"os": [
|
|
839
|
+
"openbsd"
|
|
840
|
+
],
|
|
841
|
+
"engines": {
|
|
842
|
+
"node": ">=18"
|
|
843
|
+
}
|
|
844
|
+
},
|
|
845
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
846
|
+
"version": "0.25.8",
|
|
847
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.8.tgz",
|
|
848
|
+
"integrity": "sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==",
|
|
849
|
+
"cpu": [
|
|
850
|
+
"x64"
|
|
851
|
+
],
|
|
852
|
+
"dev": true,
|
|
853
|
+
"license": "MIT",
|
|
854
|
+
"optional": true,
|
|
855
|
+
"os": [
|
|
856
|
+
"openbsd"
|
|
857
|
+
],
|
|
858
|
+
"engines": {
|
|
859
|
+
"node": ">=18"
|
|
860
|
+
}
|
|
861
|
+
},
|
|
862
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
863
|
+
"version": "0.25.8",
|
|
864
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.8.tgz",
|
|
865
|
+
"integrity": "sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==",
|
|
866
|
+
"cpu": [
|
|
867
|
+
"arm64"
|
|
868
|
+
],
|
|
869
|
+
"dev": true,
|
|
870
|
+
"license": "MIT",
|
|
871
|
+
"optional": true,
|
|
872
|
+
"os": [
|
|
873
|
+
"openharmony"
|
|
874
|
+
],
|
|
875
|
+
"engines": {
|
|
876
|
+
"node": ">=18"
|
|
877
|
+
}
|
|
878
|
+
},
|
|
879
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
880
|
+
"version": "0.25.8",
|
|
881
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.8.tgz",
|
|
882
|
+
"integrity": "sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==",
|
|
883
|
+
"cpu": [
|
|
884
|
+
"x64"
|
|
885
|
+
],
|
|
886
|
+
"dev": true,
|
|
887
|
+
"license": "MIT",
|
|
888
|
+
"optional": true,
|
|
889
|
+
"os": [
|
|
890
|
+
"sunos"
|
|
891
|
+
],
|
|
892
|
+
"engines": {
|
|
893
|
+
"node": ">=18"
|
|
894
|
+
}
|
|
895
|
+
},
|
|
896
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
897
|
+
"version": "0.25.8",
|
|
898
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.8.tgz",
|
|
899
|
+
"integrity": "sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==",
|
|
900
|
+
"cpu": [
|
|
901
|
+
"arm64"
|
|
902
|
+
],
|
|
903
|
+
"dev": true,
|
|
904
|
+
"license": "MIT",
|
|
905
|
+
"optional": true,
|
|
906
|
+
"os": [
|
|
907
|
+
"win32"
|
|
908
|
+
],
|
|
909
|
+
"engines": {
|
|
910
|
+
"node": ">=18"
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
914
|
+
"version": "0.25.8",
|
|
915
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.8.tgz",
|
|
916
|
+
"integrity": "sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==",
|
|
917
|
+
"cpu": [
|
|
918
|
+
"ia32"
|
|
919
|
+
],
|
|
920
|
+
"dev": true,
|
|
921
|
+
"license": "MIT",
|
|
922
|
+
"optional": true,
|
|
923
|
+
"os": [
|
|
924
|
+
"win32"
|
|
925
|
+
],
|
|
926
|
+
"engines": {
|
|
927
|
+
"node": ">=18"
|
|
928
|
+
}
|
|
929
|
+
},
|
|
930
|
+
"node_modules/@esbuild/win32-x64": {
|
|
931
|
+
"version": "0.25.8",
|
|
932
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.8.tgz",
|
|
933
|
+
"integrity": "sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==",
|
|
934
|
+
"cpu": [
|
|
935
|
+
"x64"
|
|
936
|
+
],
|
|
937
|
+
"dev": true,
|
|
938
|
+
"license": "MIT",
|
|
939
|
+
"optional": true,
|
|
940
|
+
"os": [
|
|
941
|
+
"win32"
|
|
942
|
+
],
|
|
943
|
+
"engines": {
|
|
944
|
+
"node": ">=18"
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
"node_modules/@isaacs/cliui": {
|
|
948
|
+
"version": "8.0.2",
|
|
949
|
+
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
|
|
950
|
+
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
|
|
951
|
+
"dev": true,
|
|
952
|
+
"license": "ISC",
|
|
953
|
+
"dependencies": {
|
|
954
|
+
"string-width": "^5.1.2",
|
|
955
|
+
"string-width-cjs": "npm:string-width@^4.2.0",
|
|
956
|
+
"strip-ansi": "^7.0.1",
|
|
957
|
+
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
|
|
958
|
+
"wrap-ansi": "^8.1.0",
|
|
959
|
+
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
|
|
960
|
+
},
|
|
961
|
+
"engines": {
|
|
962
|
+
"node": ">=12"
|
|
963
|
+
}
|
|
964
|
+
},
|
|
965
|
+
"node_modules/@isaacs/fs-minipass": {
|
|
966
|
+
"version": "4.0.1",
|
|
967
|
+
"resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
|
|
968
|
+
"integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
|
|
969
|
+
"dev": true,
|
|
970
|
+
"license": "ISC",
|
|
971
|
+
"dependencies": {
|
|
972
|
+
"minipass": "^7.0.4"
|
|
973
|
+
},
|
|
974
|
+
"engines": {
|
|
975
|
+
"node": ">=18.0.0"
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
979
|
+
"version": "0.3.12",
|
|
980
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz",
|
|
981
|
+
"integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==",
|
|
982
|
+
"dev": true,
|
|
983
|
+
"license": "MIT",
|
|
984
|
+
"dependencies": {
|
|
985
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
986
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
990
|
+
"version": "3.1.2",
|
|
991
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
992
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
993
|
+
"dev": true,
|
|
994
|
+
"license": "MIT",
|
|
995
|
+
"engines": {
|
|
996
|
+
"node": ">=6.0.0"
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
1000
|
+
"version": "1.5.4",
|
|
1001
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz",
|
|
1002
|
+
"integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==",
|
|
1003
|
+
"dev": true,
|
|
1004
|
+
"license": "MIT"
|
|
1005
|
+
},
|
|
1006
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
1007
|
+
"version": "0.3.29",
|
|
1008
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz",
|
|
1009
|
+
"integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==",
|
|
1010
|
+
"dev": true,
|
|
1011
|
+
"license": "MIT",
|
|
1012
|
+
"dependencies": {
|
|
1013
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
1014
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
1015
|
+
}
|
|
1016
|
+
},
|
|
1017
|
+
"node_modules/@mjackson/node-fetch-server": {
|
|
1018
|
+
"version": "0.2.0",
|
|
1019
|
+
"resolved": "https://registry.npmjs.org/@mjackson/node-fetch-server/-/node-fetch-server-0.2.0.tgz",
|
|
1020
|
+
"integrity": "sha512-EMlH1e30yzmTpGLQjlFmaDAjyOeZhng1/XCd7DExR8PNAnG/G1tyruZxEoUe11ClnwGhGrtsdnyyUx1frSzjng==",
|
|
1021
|
+
"license": "MIT"
|
|
1022
|
+
},
|
|
1023
|
+
"node_modules/@npmcli/git": {
|
|
1024
|
+
"version": "4.1.0",
|
|
1025
|
+
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz",
|
|
1026
|
+
"integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==",
|
|
1027
|
+
"dev": true,
|
|
1028
|
+
"license": "ISC",
|
|
1029
|
+
"dependencies": {
|
|
1030
|
+
"@npmcli/promise-spawn": "^6.0.0",
|
|
1031
|
+
"lru-cache": "^7.4.4",
|
|
1032
|
+
"npm-pick-manifest": "^8.0.0",
|
|
1033
|
+
"proc-log": "^3.0.0",
|
|
1034
|
+
"promise-inflight": "^1.0.1",
|
|
1035
|
+
"promise-retry": "^2.0.1",
|
|
1036
|
+
"semver": "^7.3.5",
|
|
1037
|
+
"which": "^3.0.0"
|
|
1038
|
+
},
|
|
1039
|
+
"engines": {
|
|
1040
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
1041
|
+
}
|
|
1042
|
+
},
|
|
1043
|
+
"node_modules/@npmcli/git/node_modules/lru-cache": {
|
|
1044
|
+
"version": "7.18.3",
|
|
1045
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
|
|
1046
|
+
"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
|
|
1047
|
+
"dev": true,
|
|
1048
|
+
"license": "ISC",
|
|
1049
|
+
"engines": {
|
|
1050
|
+
"node": ">=12"
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
"node_modules/@npmcli/package-json": {
|
|
1054
|
+
"version": "4.0.1",
|
|
1055
|
+
"resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-4.0.1.tgz",
|
|
1056
|
+
"integrity": "sha512-lRCEGdHZomFsURroh522YvA/2cVb9oPIJrjHanCJZkiasz1BzcnLr3tBJhlV7S86MBJBuAQ33is2D60YitZL2Q==",
|
|
1057
|
+
"dev": true,
|
|
1058
|
+
"license": "ISC",
|
|
1059
|
+
"dependencies": {
|
|
1060
|
+
"@npmcli/git": "^4.1.0",
|
|
1061
|
+
"glob": "^10.2.2",
|
|
1062
|
+
"hosted-git-info": "^6.1.1",
|
|
1063
|
+
"json-parse-even-better-errors": "^3.0.0",
|
|
1064
|
+
"normalize-package-data": "^5.0.0",
|
|
1065
|
+
"proc-log": "^3.0.0",
|
|
1066
|
+
"semver": "^7.5.3"
|
|
1067
|
+
},
|
|
1068
|
+
"engines": {
|
|
1069
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
"node_modules/@npmcli/promise-spawn": {
|
|
1073
|
+
"version": "6.0.2",
|
|
1074
|
+
"resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
|
|
1075
|
+
"integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==",
|
|
1076
|
+
"dev": true,
|
|
1077
|
+
"license": "ISC",
|
|
1078
|
+
"dependencies": {
|
|
1079
|
+
"which": "^3.0.0"
|
|
1080
|
+
},
|
|
1081
|
+
"engines": {
|
|
1082
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
"node_modules/@pkgjs/parseargs": {
|
|
1086
|
+
"version": "0.11.0",
|
|
1087
|
+
"resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
|
|
1088
|
+
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
|
|
1089
|
+
"dev": true,
|
|
1090
|
+
"license": "MIT",
|
|
1091
|
+
"optional": true,
|
|
1092
|
+
"engines": {
|
|
1093
|
+
"node": ">=14"
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1096
|
+
"node_modules/@react-router/dev": {
|
|
1097
|
+
"version": "7.7.1",
|
|
1098
|
+
"resolved": "https://registry.npmjs.org/@react-router/dev/-/dev-7.7.1.tgz",
|
|
1099
|
+
"integrity": "sha512-ByfgHmAyfx/JQYN/QwUx1sFJlBA5Z3HQAZ638wHSb+m6khWtHqSaKCvPqQh1P00wdEAeV3tX5L1aUM/ceCF6+w==",
|
|
1100
|
+
"dev": true,
|
|
1101
|
+
"license": "MIT",
|
|
1102
|
+
"dependencies": {
|
|
1103
|
+
"@babel/core": "^7.27.7",
|
|
1104
|
+
"@babel/generator": "^7.27.5",
|
|
1105
|
+
"@babel/parser": "^7.27.7",
|
|
1106
|
+
"@babel/plugin-syntax-jsx": "^7.27.1",
|
|
1107
|
+
"@babel/preset-typescript": "^7.27.1",
|
|
1108
|
+
"@babel/traverse": "^7.27.7",
|
|
1109
|
+
"@babel/types": "^7.27.7",
|
|
1110
|
+
"@npmcli/package-json": "^4.0.1",
|
|
1111
|
+
"@react-router/node": "7.7.1",
|
|
1112
|
+
"arg": "^5.0.1",
|
|
1113
|
+
"babel-dead-code-elimination": "^1.0.6",
|
|
1114
|
+
"chokidar": "^4.0.0",
|
|
1115
|
+
"dedent": "^1.5.3",
|
|
1116
|
+
"es-module-lexer": "^1.3.1",
|
|
1117
|
+
"exit-hook": "2.2.1",
|
|
1118
|
+
"isbot": "^5.1.11",
|
|
1119
|
+
"jsesc": "3.0.2",
|
|
1120
|
+
"lodash": "^4.17.21",
|
|
1121
|
+
"pathe": "^1.1.2",
|
|
1122
|
+
"picocolors": "^1.1.1",
|
|
1123
|
+
"prettier": "^3.6.2",
|
|
1124
|
+
"react-refresh": "^0.14.0",
|
|
1125
|
+
"semver": "^7.3.7",
|
|
1126
|
+
"set-cookie-parser": "^2.6.0",
|
|
1127
|
+
"tinyglobby": "^0.2.14",
|
|
1128
|
+
"valibot": "^0.41.0",
|
|
1129
|
+
"vite-node": "^3.2.2"
|
|
1130
|
+
},
|
|
1131
|
+
"bin": {
|
|
1132
|
+
"react-router": "bin.js"
|
|
1133
|
+
},
|
|
1134
|
+
"engines": {
|
|
1135
|
+
"node": ">=20.0.0"
|
|
1136
|
+
},
|
|
1137
|
+
"peerDependencies": {
|
|
1138
|
+
"@react-router/serve": "^7.7.1",
|
|
1139
|
+
"react-router": "^7.7.1",
|
|
1140
|
+
"typescript": "^5.1.0",
|
|
1141
|
+
"vite": "^5.1.0 || ^6.0.0 || ^7.0.0",
|
|
1142
|
+
"wrangler": "^3.28.2 || ^4.0.0"
|
|
1143
|
+
},
|
|
1144
|
+
"peerDependenciesMeta": {
|
|
1145
|
+
"@react-router/serve": {
|
|
1146
|
+
"optional": true
|
|
1147
|
+
},
|
|
1148
|
+
"typescript": {
|
|
1149
|
+
"optional": true
|
|
1150
|
+
},
|
|
1151
|
+
"wrangler": {
|
|
1152
|
+
"optional": true
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
},
|
|
1156
|
+
"node_modules/@react-router/express": {
|
|
1157
|
+
"version": "7.7.1",
|
|
1158
|
+
"resolved": "https://registry.npmjs.org/@react-router/express/-/express-7.7.1.tgz",
|
|
1159
|
+
"integrity": "sha512-OEZwIM7i/KPSDjwVRg3LqeNIwG41U+SeFOwMjhZRFfyrnwghHfvWsDajf73r4ccMh+RRHcP1GIN6VSU3XZk7MA==",
|
|
1160
|
+
"license": "MIT",
|
|
1161
|
+
"dependencies": {
|
|
1162
|
+
"@react-router/node": "7.7.1"
|
|
1163
|
+
},
|
|
1164
|
+
"engines": {
|
|
1165
|
+
"node": ">=20.0.0"
|
|
1166
|
+
},
|
|
1167
|
+
"peerDependencies": {
|
|
1168
|
+
"express": "^4.17.1 || ^5",
|
|
1169
|
+
"react-router": "7.7.1",
|
|
1170
|
+
"typescript": "^5.1.0"
|
|
1171
|
+
},
|
|
1172
|
+
"peerDependenciesMeta": {
|
|
1173
|
+
"typescript": {
|
|
1174
|
+
"optional": true
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
"node_modules/@react-router/node": {
|
|
1179
|
+
"version": "7.7.1",
|
|
1180
|
+
"resolved": "https://registry.npmjs.org/@react-router/node/-/node-7.7.1.tgz",
|
|
1181
|
+
"integrity": "sha512-EHd6PEcw2nmcJmcYTPA0MmRWSqOaJ/meycfCp0ADA9T/6b7+fUHfr9XcNyf7UeZtYwu4zGyuYfPmLU5ic6Ugyg==",
|
|
1182
|
+
"license": "MIT",
|
|
1183
|
+
"dependencies": {
|
|
1184
|
+
"@mjackson/node-fetch-server": "^0.2.0"
|
|
1185
|
+
},
|
|
1186
|
+
"engines": {
|
|
1187
|
+
"node": ">=20.0.0"
|
|
1188
|
+
},
|
|
1189
|
+
"peerDependencies": {
|
|
1190
|
+
"react-router": "7.7.1",
|
|
1191
|
+
"typescript": "^5.1.0"
|
|
1192
|
+
},
|
|
1193
|
+
"peerDependenciesMeta": {
|
|
1194
|
+
"typescript": {
|
|
1195
|
+
"optional": true
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
},
|
|
1199
|
+
"node_modules/@react-router/serve": {
|
|
1200
|
+
"version": "7.7.1",
|
|
1201
|
+
"resolved": "https://registry.npmjs.org/@react-router/serve/-/serve-7.7.1.tgz",
|
|
1202
|
+
"integrity": "sha512-LyAiX+oI+6O6j2xWPUoKW+cgayUf3USBosSMv73Jtwi99XUhSDu2MUhM+BB+AbrYRubauZ83QpZTROiXoaf8jA==",
|
|
1203
|
+
"license": "MIT",
|
|
1204
|
+
"dependencies": {
|
|
1205
|
+
"@react-router/express": "7.7.1",
|
|
1206
|
+
"@react-router/node": "7.7.1",
|
|
1207
|
+
"compression": "^1.7.4",
|
|
1208
|
+
"express": "^4.19.2",
|
|
1209
|
+
"get-port": "5.1.1",
|
|
1210
|
+
"morgan": "^1.10.0",
|
|
1211
|
+
"source-map-support": "^0.5.21"
|
|
1212
|
+
},
|
|
1213
|
+
"bin": {
|
|
1214
|
+
"react-router-serve": "bin.js"
|
|
1215
|
+
},
|
|
1216
|
+
"engines": {
|
|
1217
|
+
"node": ">=20.0.0"
|
|
1218
|
+
},
|
|
1219
|
+
"peerDependencies": {
|
|
1220
|
+
"react-router": "7.7.1"
|
|
1221
|
+
}
|
|
1222
|
+
},
|
|
1223
|
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
1224
|
+
"version": "4.46.1",
|
|
1225
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.46.1.tgz",
|
|
1226
|
+
"integrity": "sha512-oENme6QxtLCqjChRUUo3S6X8hjCXnWmJWnedD7VbGML5GUtaOtAyx+fEEXnBXVf0CBZApMQU0Idwi0FmyxzQhw==",
|
|
1227
|
+
"cpu": [
|
|
1228
|
+
"arm"
|
|
1229
|
+
],
|
|
1230
|
+
"dev": true,
|
|
1231
|
+
"license": "MIT",
|
|
1232
|
+
"optional": true,
|
|
1233
|
+
"os": [
|
|
1234
|
+
"android"
|
|
1235
|
+
]
|
|
1236
|
+
},
|
|
1237
|
+
"node_modules/@rollup/rollup-android-arm64": {
|
|
1238
|
+
"version": "4.46.1",
|
|
1239
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.46.1.tgz",
|
|
1240
|
+
"integrity": "sha512-OikvNT3qYTl9+4qQ9Bpn6+XHM+ogtFadRLuT2EXiFQMiNkXFLQfNVppi5o28wvYdHL2s3fM0D/MZJ8UkNFZWsw==",
|
|
1241
|
+
"cpu": [
|
|
1242
|
+
"arm64"
|
|
1243
|
+
],
|
|
1244
|
+
"dev": true,
|
|
1245
|
+
"license": "MIT",
|
|
1246
|
+
"optional": true,
|
|
1247
|
+
"os": [
|
|
1248
|
+
"android"
|
|
1249
|
+
]
|
|
1250
|
+
},
|
|
1251
|
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
1252
|
+
"version": "4.46.1",
|
|
1253
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.46.1.tgz",
|
|
1254
|
+
"integrity": "sha512-EFYNNGij2WllnzljQDQnlFTXzSJw87cpAs4TVBAWLdkvic5Uh5tISrIL6NRcxoh/b2EFBG/TK8hgRrGx94zD4A==",
|
|
1255
|
+
"cpu": [
|
|
1256
|
+
"arm64"
|
|
1257
|
+
],
|
|
1258
|
+
"dev": true,
|
|
1259
|
+
"license": "MIT",
|
|
1260
|
+
"optional": true,
|
|
1261
|
+
"os": [
|
|
1262
|
+
"darwin"
|
|
1263
|
+
]
|
|
1264
|
+
},
|
|
1265
|
+
"node_modules/@rollup/rollup-darwin-x64": {
|
|
1266
|
+
"version": "4.46.1",
|
|
1267
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.46.1.tgz",
|
|
1268
|
+
"integrity": "sha512-ZaNH06O1KeTug9WI2+GRBE5Ujt9kZw4a1+OIwnBHal92I8PxSsl5KpsrPvthRynkhMck4XPdvY0z26Cym/b7oA==",
|
|
1269
|
+
"cpu": [
|
|
1270
|
+
"x64"
|
|
1271
|
+
],
|
|
1272
|
+
"dev": true,
|
|
1273
|
+
"license": "MIT",
|
|
1274
|
+
"optional": true,
|
|
1275
|
+
"os": [
|
|
1276
|
+
"darwin"
|
|
1277
|
+
]
|
|
1278
|
+
},
|
|
1279
|
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
1280
|
+
"version": "4.46.1",
|
|
1281
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.46.1.tgz",
|
|
1282
|
+
"integrity": "sha512-n4SLVebZP8uUlJ2r04+g2U/xFeiQlw09Me5UFqny8HGbARl503LNH5CqFTb5U5jNxTouhRjai6qPT0CR5c/Iig==",
|
|
1283
|
+
"cpu": [
|
|
1284
|
+
"arm64"
|
|
1285
|
+
],
|
|
1286
|
+
"dev": true,
|
|
1287
|
+
"license": "MIT",
|
|
1288
|
+
"optional": true,
|
|
1289
|
+
"os": [
|
|
1290
|
+
"freebsd"
|
|
1291
|
+
]
|
|
1292
|
+
},
|
|
1293
|
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
1294
|
+
"version": "4.46.1",
|
|
1295
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.46.1.tgz",
|
|
1296
|
+
"integrity": "sha512-8vu9c02F16heTqpvo3yeiu7Vi1REDEC/yES/dIfq3tSXe6mLndiwvYr3AAvd1tMNUqE9yeGYa5w7PRbI5QUV+w==",
|
|
1297
|
+
"cpu": [
|
|
1298
|
+
"x64"
|
|
1299
|
+
],
|
|
1300
|
+
"dev": true,
|
|
1301
|
+
"license": "MIT",
|
|
1302
|
+
"optional": true,
|
|
1303
|
+
"os": [
|
|
1304
|
+
"freebsd"
|
|
1305
|
+
]
|
|
1306
|
+
},
|
|
1307
|
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
1308
|
+
"version": "4.46.1",
|
|
1309
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.46.1.tgz",
|
|
1310
|
+
"integrity": "sha512-K4ncpWl7sQuyp6rWiGUvb6Q18ba8mzM0rjWJ5JgYKlIXAau1db7hZnR0ldJvqKWWJDxqzSLwGUhA4jp+KqgDtQ==",
|
|
1311
|
+
"cpu": [
|
|
1312
|
+
"arm"
|
|
1313
|
+
],
|
|
1314
|
+
"dev": true,
|
|
1315
|
+
"license": "MIT",
|
|
1316
|
+
"optional": true,
|
|
1317
|
+
"os": [
|
|
1318
|
+
"linux"
|
|
1319
|
+
]
|
|
1320
|
+
},
|
|
1321
|
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
1322
|
+
"version": "4.46.1",
|
|
1323
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.46.1.tgz",
|
|
1324
|
+
"integrity": "sha512-YykPnXsjUjmXE6j6k2QBBGAn1YsJUix7pYaPLK3RVE0bQL2jfdbfykPxfF8AgBlqtYbfEnYHmLXNa6QETjdOjQ==",
|
|
1325
|
+
"cpu": [
|
|
1326
|
+
"arm"
|
|
1327
|
+
],
|
|
1328
|
+
"dev": true,
|
|
1329
|
+
"license": "MIT",
|
|
1330
|
+
"optional": true,
|
|
1331
|
+
"os": [
|
|
1332
|
+
"linux"
|
|
1333
|
+
]
|
|
1334
|
+
},
|
|
1335
|
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
1336
|
+
"version": "4.46.1",
|
|
1337
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.46.1.tgz",
|
|
1338
|
+
"integrity": "sha512-kKvqBGbZ8i9pCGW3a1FH3HNIVg49dXXTsChGFsHGXQaVJPLA4f/O+XmTxfklhccxdF5FefUn2hvkoGJH0ScWOA==",
|
|
1339
|
+
"cpu": [
|
|
1340
|
+
"arm64"
|
|
1341
|
+
],
|
|
1342
|
+
"dev": true,
|
|
1343
|
+
"license": "MIT",
|
|
1344
|
+
"optional": true,
|
|
1345
|
+
"os": [
|
|
1346
|
+
"linux"
|
|
1347
|
+
]
|
|
1348
|
+
},
|
|
1349
|
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
1350
|
+
"version": "4.46.1",
|
|
1351
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.46.1.tgz",
|
|
1352
|
+
"integrity": "sha512-zzX5nTw1N1plmqC9RGC9vZHFuiM7ZP7oSWQGqpbmfjK7p947D518cVK1/MQudsBdcD84t6k70WNczJOct6+hdg==",
|
|
1353
|
+
"cpu": [
|
|
1354
|
+
"arm64"
|
|
1355
|
+
],
|
|
1356
|
+
"dev": true,
|
|
1357
|
+
"license": "MIT",
|
|
1358
|
+
"optional": true,
|
|
1359
|
+
"os": [
|
|
1360
|
+
"linux"
|
|
1361
|
+
]
|
|
1362
|
+
},
|
|
1363
|
+
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
|
|
1364
|
+
"version": "4.46.1",
|
|
1365
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.46.1.tgz",
|
|
1366
|
+
"integrity": "sha512-O8CwgSBo6ewPpktFfSDgB6SJN9XDcPSvuwxfejiddbIC/hn9Tg6Ai0f0eYDf3XvB/+PIWzOQL+7+TZoB8p9Yuw==",
|
|
1367
|
+
"cpu": [
|
|
1368
|
+
"loong64"
|
|
1369
|
+
],
|
|
1370
|
+
"dev": true,
|
|
1371
|
+
"license": "MIT",
|
|
1372
|
+
"optional": true,
|
|
1373
|
+
"os": [
|
|
1374
|
+
"linux"
|
|
1375
|
+
]
|
|
1376
|
+
},
|
|
1377
|
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1378
|
+
"version": "4.46.1",
|
|
1379
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.46.1.tgz",
|
|
1380
|
+
"integrity": "sha512-JnCfFVEKeq6G3h3z8e60kAp8Rd7QVnWCtPm7cxx+5OtP80g/3nmPtfdCXbVl063e3KsRnGSKDHUQMydmzc/wBA==",
|
|
1381
|
+
"cpu": [
|
|
1382
|
+
"ppc64"
|
|
1383
|
+
],
|
|
1384
|
+
"dev": true,
|
|
1385
|
+
"license": "MIT",
|
|
1386
|
+
"optional": true,
|
|
1387
|
+
"os": [
|
|
1388
|
+
"linux"
|
|
1389
|
+
]
|
|
1390
|
+
},
|
|
1391
|
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1392
|
+
"version": "4.46.1",
|
|
1393
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.46.1.tgz",
|
|
1394
|
+
"integrity": "sha512-dVxuDqS237eQXkbYzQQfdf/njgeNw6LZuVyEdUaWwRpKHhsLI+y4H/NJV8xJGU19vnOJCVwaBFgr936FHOnJsQ==",
|
|
1395
|
+
"cpu": [
|
|
1396
|
+
"riscv64"
|
|
1397
|
+
],
|
|
1398
|
+
"dev": true,
|
|
1399
|
+
"license": "MIT",
|
|
1400
|
+
"optional": true,
|
|
1401
|
+
"os": [
|
|
1402
|
+
"linux"
|
|
1403
|
+
]
|
|
1404
|
+
},
|
|
1405
|
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1406
|
+
"version": "4.46.1",
|
|
1407
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.46.1.tgz",
|
|
1408
|
+
"integrity": "sha512-CvvgNl2hrZrTR9jXK1ye0Go0HQRT6ohQdDfWR47/KFKiLd5oN5T14jRdUVGF4tnsN8y9oSfMOqH6RuHh+ck8+w==",
|
|
1409
|
+
"cpu": [
|
|
1410
|
+
"riscv64"
|
|
1411
|
+
],
|
|
1412
|
+
"dev": true,
|
|
1413
|
+
"license": "MIT",
|
|
1414
|
+
"optional": true,
|
|
1415
|
+
"os": [
|
|
1416
|
+
"linux"
|
|
1417
|
+
]
|
|
1418
|
+
},
|
|
1419
|
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1420
|
+
"version": "4.46.1",
|
|
1421
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.46.1.tgz",
|
|
1422
|
+
"integrity": "sha512-x7ANt2VOg2565oGHJ6rIuuAon+A8sfe1IeUx25IKqi49OjSr/K3awoNqr9gCwGEJo9OuXlOn+H2p1VJKx1psxA==",
|
|
1423
|
+
"cpu": [
|
|
1424
|
+
"s390x"
|
|
1425
|
+
],
|
|
1426
|
+
"dev": true,
|
|
1427
|
+
"license": "MIT",
|
|
1428
|
+
"optional": true,
|
|
1429
|
+
"os": [
|
|
1430
|
+
"linux"
|
|
1431
|
+
]
|
|
1432
|
+
},
|
|
1433
|
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1434
|
+
"version": "4.46.1",
|
|
1435
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.46.1.tgz",
|
|
1436
|
+
"integrity": "sha512-9OADZYryz/7E8/qt0vnaHQgmia2Y0wrjSSn1V/uL+zw/i7NUhxbX4cHXdEQ7dnJgzYDS81d8+tf6nbIdRFZQoQ==",
|
|
1437
|
+
"cpu": [
|
|
1438
|
+
"x64"
|
|
1439
|
+
],
|
|
1440
|
+
"dev": true,
|
|
1441
|
+
"license": "MIT",
|
|
1442
|
+
"optional": true,
|
|
1443
|
+
"os": [
|
|
1444
|
+
"linux"
|
|
1445
|
+
]
|
|
1446
|
+
},
|
|
1447
|
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1448
|
+
"version": "4.46.1",
|
|
1449
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.46.1.tgz",
|
|
1450
|
+
"integrity": "sha512-NuvSCbXEKY+NGWHyivzbjSVJi68Xfq1VnIvGmsuXs6TCtveeoDRKutI5vf2ntmNnVq64Q4zInet0UDQ+yMB6tA==",
|
|
1451
|
+
"cpu": [
|
|
1452
|
+
"x64"
|
|
1453
|
+
],
|
|
1454
|
+
"dev": true,
|
|
1455
|
+
"license": "MIT",
|
|
1456
|
+
"optional": true,
|
|
1457
|
+
"os": [
|
|
1458
|
+
"linux"
|
|
1459
|
+
]
|
|
1460
|
+
},
|
|
1461
|
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1462
|
+
"version": "4.46.1",
|
|
1463
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.46.1.tgz",
|
|
1464
|
+
"integrity": "sha512-mWz+6FSRb82xuUMMV1X3NGiaPFqbLN9aIueHleTZCc46cJvwTlvIh7reQLk4p97dv0nddyewBhwzryBHH7wtPw==",
|
|
1465
|
+
"cpu": [
|
|
1466
|
+
"arm64"
|
|
1467
|
+
],
|
|
1468
|
+
"dev": true,
|
|
1469
|
+
"license": "MIT",
|
|
1470
|
+
"optional": true,
|
|
1471
|
+
"os": [
|
|
1472
|
+
"win32"
|
|
1473
|
+
]
|
|
1474
|
+
},
|
|
1475
|
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1476
|
+
"version": "4.46.1",
|
|
1477
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.46.1.tgz",
|
|
1478
|
+
"integrity": "sha512-7Thzy9TMXDw9AU4f4vsLNBxh7/VOKuXi73VH3d/kHGr0tZ3x/ewgL9uC7ojUKmH1/zvmZe2tLapYcZllk3SO8Q==",
|
|
1479
|
+
"cpu": [
|
|
1480
|
+
"ia32"
|
|
1481
|
+
],
|
|
1482
|
+
"dev": true,
|
|
1483
|
+
"license": "MIT",
|
|
1484
|
+
"optional": true,
|
|
1485
|
+
"os": [
|
|
1486
|
+
"win32"
|
|
1487
|
+
]
|
|
1488
|
+
},
|
|
1489
|
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1490
|
+
"version": "4.46.1",
|
|
1491
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.46.1.tgz",
|
|
1492
|
+
"integrity": "sha512-7GVB4luhFmGUNXXJhH2jJwZCFB3pIOixv2E3s17GQHBFUOQaISlt7aGcQgqvCaDSxTZJUzlK/QJ1FN8S94MrzQ==",
|
|
1493
|
+
"cpu": [
|
|
1494
|
+
"x64"
|
|
1495
|
+
],
|
|
1496
|
+
"dev": true,
|
|
1497
|
+
"license": "MIT",
|
|
1498
|
+
"optional": true,
|
|
1499
|
+
"os": [
|
|
1500
|
+
"win32"
|
|
1501
|
+
]
|
|
1502
|
+
},
|
|
1503
|
+
"node_modules/@tailwindcss/node": {
|
|
1504
|
+
"version": "4.1.11",
|
|
1505
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.11.tgz",
|
|
1506
|
+
"integrity": "sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==",
|
|
1507
|
+
"dev": true,
|
|
1508
|
+
"license": "MIT",
|
|
1509
|
+
"dependencies": {
|
|
1510
|
+
"@ampproject/remapping": "^2.3.0",
|
|
1511
|
+
"enhanced-resolve": "^5.18.1",
|
|
1512
|
+
"jiti": "^2.4.2",
|
|
1513
|
+
"lightningcss": "1.30.1",
|
|
1514
|
+
"magic-string": "^0.30.17",
|
|
1515
|
+
"source-map-js": "^1.2.1",
|
|
1516
|
+
"tailwindcss": "4.1.11"
|
|
1517
|
+
}
|
|
1518
|
+
},
|
|
1519
|
+
"node_modules/@tailwindcss/oxide": {
|
|
1520
|
+
"version": "4.1.11",
|
|
1521
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.11.tgz",
|
|
1522
|
+
"integrity": "sha512-Q69XzrtAhuyfHo+5/HMgr1lAiPP/G40OMFAnws7xcFEYqcypZmdW8eGXaOUIeOl1dzPJBPENXgbjsOyhg2nkrg==",
|
|
1523
|
+
"dev": true,
|
|
1524
|
+
"hasInstallScript": true,
|
|
1525
|
+
"license": "MIT",
|
|
1526
|
+
"dependencies": {
|
|
1527
|
+
"detect-libc": "^2.0.4",
|
|
1528
|
+
"tar": "^7.4.3"
|
|
1529
|
+
},
|
|
1530
|
+
"engines": {
|
|
1531
|
+
"node": ">= 10"
|
|
1532
|
+
},
|
|
1533
|
+
"optionalDependencies": {
|
|
1534
|
+
"@tailwindcss/oxide-android-arm64": "4.1.11",
|
|
1535
|
+
"@tailwindcss/oxide-darwin-arm64": "4.1.11",
|
|
1536
|
+
"@tailwindcss/oxide-darwin-x64": "4.1.11",
|
|
1537
|
+
"@tailwindcss/oxide-freebsd-x64": "4.1.11",
|
|
1538
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.11",
|
|
1539
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.11",
|
|
1540
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.1.11",
|
|
1541
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.1.11",
|
|
1542
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.1.11",
|
|
1543
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.1.11",
|
|
1544
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.1.11",
|
|
1545
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.1.11"
|
|
1546
|
+
}
|
|
1547
|
+
},
|
|
1548
|
+
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
1549
|
+
"version": "4.1.11",
|
|
1550
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.11.tgz",
|
|
1551
|
+
"integrity": "sha512-3IfFuATVRUMZZprEIx9OGDjG3Ou3jG4xQzNTvjDoKmU9JdmoCohQJ83MYd0GPnQIu89YoJqvMM0G3uqLRFtetg==",
|
|
1552
|
+
"cpu": [
|
|
1553
|
+
"arm64"
|
|
1554
|
+
],
|
|
1555
|
+
"dev": true,
|
|
1556
|
+
"license": "MIT",
|
|
1557
|
+
"optional": true,
|
|
1558
|
+
"os": [
|
|
1559
|
+
"android"
|
|
1560
|
+
],
|
|
1561
|
+
"engines": {
|
|
1562
|
+
"node": ">= 10"
|
|
1563
|
+
}
|
|
1564
|
+
},
|
|
1565
|
+
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
1566
|
+
"version": "4.1.11",
|
|
1567
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.11.tgz",
|
|
1568
|
+
"integrity": "sha512-ESgStEOEsyg8J5YcMb1xl8WFOXfeBmrhAwGsFxxB2CxY9evy63+AtpbDLAyRkJnxLy2WsD1qF13E97uQyP1lfQ==",
|
|
1569
|
+
"cpu": [
|
|
1570
|
+
"arm64"
|
|
1571
|
+
],
|
|
1572
|
+
"dev": true,
|
|
1573
|
+
"license": "MIT",
|
|
1574
|
+
"optional": true,
|
|
1575
|
+
"os": [
|
|
1576
|
+
"darwin"
|
|
1577
|
+
],
|
|
1578
|
+
"engines": {
|
|
1579
|
+
"node": ">= 10"
|
|
1580
|
+
}
|
|
1581
|
+
},
|
|
1582
|
+
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
1583
|
+
"version": "4.1.11",
|
|
1584
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.11.tgz",
|
|
1585
|
+
"integrity": "sha512-EgnK8kRchgmgzG6jE10UQNaH9Mwi2n+yw1jWmof9Vyg2lpKNX2ioe7CJdf9M5f8V9uaQxInenZkOxnTVL3fhAw==",
|
|
1586
|
+
"cpu": [
|
|
1587
|
+
"x64"
|
|
1588
|
+
],
|
|
1589
|
+
"dev": true,
|
|
1590
|
+
"license": "MIT",
|
|
1591
|
+
"optional": true,
|
|
1592
|
+
"os": [
|
|
1593
|
+
"darwin"
|
|
1594
|
+
],
|
|
1595
|
+
"engines": {
|
|
1596
|
+
"node": ">= 10"
|
|
1597
|
+
}
|
|
1598
|
+
},
|
|
1599
|
+
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
1600
|
+
"version": "4.1.11",
|
|
1601
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.11.tgz",
|
|
1602
|
+
"integrity": "sha512-xdqKtbpHs7pQhIKmqVpxStnY1skuNh4CtbcyOHeX1YBE0hArj2romsFGb6yUmzkq/6M24nkxDqU8GYrKrz+UcA==",
|
|
1603
|
+
"cpu": [
|
|
1604
|
+
"x64"
|
|
1605
|
+
],
|
|
1606
|
+
"dev": true,
|
|
1607
|
+
"license": "MIT",
|
|
1608
|
+
"optional": true,
|
|
1609
|
+
"os": [
|
|
1610
|
+
"freebsd"
|
|
1611
|
+
],
|
|
1612
|
+
"engines": {
|
|
1613
|
+
"node": ">= 10"
|
|
1614
|
+
}
|
|
1615
|
+
},
|
|
1616
|
+
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
1617
|
+
"version": "4.1.11",
|
|
1618
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.11.tgz",
|
|
1619
|
+
"integrity": "sha512-ryHQK2eyDYYMwB5wZL46uoxz2zzDZsFBwfjssgB7pzytAeCCa6glsiJGjhTEddq/4OsIjsLNMAiMlHNYnkEEeg==",
|
|
1620
|
+
"cpu": [
|
|
1621
|
+
"arm"
|
|
1622
|
+
],
|
|
1623
|
+
"dev": true,
|
|
1624
|
+
"license": "MIT",
|
|
1625
|
+
"optional": true,
|
|
1626
|
+
"os": [
|
|
1627
|
+
"linux"
|
|
1628
|
+
],
|
|
1629
|
+
"engines": {
|
|
1630
|
+
"node": ">= 10"
|
|
1631
|
+
}
|
|
1632
|
+
},
|
|
1633
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
1634
|
+
"version": "4.1.11",
|
|
1635
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.11.tgz",
|
|
1636
|
+
"integrity": "sha512-mYwqheq4BXF83j/w75ewkPJmPZIqqP1nhoghS9D57CLjsh3Nfq0m4ftTotRYtGnZd3eCztgbSPJ9QhfC91gDZQ==",
|
|
1637
|
+
"cpu": [
|
|
1638
|
+
"arm64"
|
|
1639
|
+
],
|
|
1640
|
+
"dev": true,
|
|
1641
|
+
"license": "MIT",
|
|
1642
|
+
"optional": true,
|
|
1643
|
+
"os": [
|
|
1644
|
+
"linux"
|
|
1645
|
+
],
|
|
1646
|
+
"engines": {
|
|
1647
|
+
"node": ">= 10"
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1650
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
1651
|
+
"version": "4.1.11",
|
|
1652
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.11.tgz",
|
|
1653
|
+
"integrity": "sha512-m/NVRFNGlEHJrNVk3O6I9ggVuNjXHIPoD6bqay/pubtYC9QIdAMpS+cswZQPBLvVvEF6GtSNONbDkZrjWZXYNQ==",
|
|
1654
|
+
"cpu": [
|
|
1655
|
+
"arm64"
|
|
1656
|
+
],
|
|
1657
|
+
"dev": true,
|
|
1658
|
+
"license": "MIT",
|
|
1659
|
+
"optional": true,
|
|
1660
|
+
"os": [
|
|
1661
|
+
"linux"
|
|
1662
|
+
],
|
|
1663
|
+
"engines": {
|
|
1664
|
+
"node": ">= 10"
|
|
1665
|
+
}
|
|
1666
|
+
},
|
|
1667
|
+
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
1668
|
+
"version": "4.1.11",
|
|
1669
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.11.tgz",
|
|
1670
|
+
"integrity": "sha512-YW6sblI7xukSD2TdbbaeQVDysIm/UPJtObHJHKxDEcW2exAtY47j52f8jZXkqE1krdnkhCMGqP3dbniu1Te2Fg==",
|
|
1671
|
+
"cpu": [
|
|
1672
|
+
"x64"
|
|
1673
|
+
],
|
|
1674
|
+
"dev": true,
|
|
1675
|
+
"license": "MIT",
|
|
1676
|
+
"optional": true,
|
|
1677
|
+
"os": [
|
|
1678
|
+
"linux"
|
|
1679
|
+
],
|
|
1680
|
+
"engines": {
|
|
1681
|
+
"node": ">= 10"
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
1685
|
+
"version": "4.1.11",
|
|
1686
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.11.tgz",
|
|
1687
|
+
"integrity": "sha512-e3C/RRhGunWYNC3aSF7exsQkdXzQ/M+aYuZHKnw4U7KQwTJotnWsGOIVih0s2qQzmEzOFIJ3+xt7iq67K/p56Q==",
|
|
1688
|
+
"cpu": [
|
|
1689
|
+
"x64"
|
|
1690
|
+
],
|
|
1691
|
+
"dev": true,
|
|
1692
|
+
"license": "MIT",
|
|
1693
|
+
"optional": true,
|
|
1694
|
+
"os": [
|
|
1695
|
+
"linux"
|
|
1696
|
+
],
|
|
1697
|
+
"engines": {
|
|
1698
|
+
"node": ">= 10"
|
|
1699
|
+
}
|
|
1700
|
+
},
|
|
1701
|
+
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
1702
|
+
"version": "4.1.11",
|
|
1703
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.11.tgz",
|
|
1704
|
+
"integrity": "sha512-Xo1+/GU0JEN/C/dvcammKHzeM6NqKovG+6921MR6oadee5XPBaKOumrJCXvopJ/Qb5TH7LX/UAywbqrP4lax0g==",
|
|
1705
|
+
"bundleDependencies": [
|
|
1706
|
+
"@napi-rs/wasm-runtime",
|
|
1707
|
+
"@emnapi/core",
|
|
1708
|
+
"@emnapi/runtime",
|
|
1709
|
+
"@tybys/wasm-util",
|
|
1710
|
+
"@emnapi/wasi-threads",
|
|
1711
|
+
"tslib"
|
|
1712
|
+
],
|
|
1713
|
+
"cpu": [
|
|
1714
|
+
"wasm32"
|
|
1715
|
+
],
|
|
1716
|
+
"dev": true,
|
|
1717
|
+
"license": "MIT",
|
|
1718
|
+
"optional": true,
|
|
1719
|
+
"dependencies": {
|
|
1720
|
+
"@emnapi/core": "^1.4.3",
|
|
1721
|
+
"@emnapi/runtime": "^1.4.3",
|
|
1722
|
+
"@emnapi/wasi-threads": "^1.0.2",
|
|
1723
|
+
"@napi-rs/wasm-runtime": "^0.2.11",
|
|
1724
|
+
"@tybys/wasm-util": "^0.9.0",
|
|
1725
|
+
"tslib": "^2.8.0"
|
|
1726
|
+
},
|
|
1727
|
+
"engines": {
|
|
1728
|
+
"node": ">=14.0.0"
|
|
1729
|
+
}
|
|
1730
|
+
},
|
|
1731
|
+
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
1732
|
+
"version": "4.1.11",
|
|
1733
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.11.tgz",
|
|
1734
|
+
"integrity": "sha512-UgKYx5PwEKrac3GPNPf6HVMNhUIGuUh4wlDFR2jYYdkX6pL/rn73zTq/4pzUm8fOjAn5L8zDeHp9iXmUGOXZ+w==",
|
|
1735
|
+
"cpu": [
|
|
1736
|
+
"arm64"
|
|
1737
|
+
],
|
|
1738
|
+
"dev": true,
|
|
1739
|
+
"license": "MIT",
|
|
1740
|
+
"optional": true,
|
|
1741
|
+
"os": [
|
|
1742
|
+
"win32"
|
|
1743
|
+
],
|
|
1744
|
+
"engines": {
|
|
1745
|
+
"node": ">= 10"
|
|
1746
|
+
}
|
|
1747
|
+
},
|
|
1748
|
+
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
1749
|
+
"version": "4.1.11",
|
|
1750
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.11.tgz",
|
|
1751
|
+
"integrity": "sha512-YfHoggn1j0LK7wR82TOucWc5LDCguHnoS879idHekmmiR7g9HUtMw9MI0NHatS28u/Xlkfi9w5RJWgz2Dl+5Qg==",
|
|
1752
|
+
"cpu": [
|
|
1753
|
+
"x64"
|
|
1754
|
+
],
|
|
1755
|
+
"dev": true,
|
|
1756
|
+
"license": "MIT",
|
|
1757
|
+
"optional": true,
|
|
1758
|
+
"os": [
|
|
1759
|
+
"win32"
|
|
1760
|
+
],
|
|
1761
|
+
"engines": {
|
|
1762
|
+
"node": ">= 10"
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
"node_modules/@tailwindcss/vite": {
|
|
1766
|
+
"version": "4.1.11",
|
|
1767
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.11.tgz",
|
|
1768
|
+
"integrity": "sha512-RHYhrR3hku0MJFRV+fN2gNbDNEh3dwKvY8XJvTxCSXeMOsCRSr+uKvDWQcbizrHgjML6ZmTE5OwMrl5wKcujCw==",
|
|
1769
|
+
"dev": true,
|
|
1770
|
+
"license": "MIT",
|
|
1771
|
+
"dependencies": {
|
|
1772
|
+
"@tailwindcss/node": "4.1.11",
|
|
1773
|
+
"@tailwindcss/oxide": "4.1.11",
|
|
1774
|
+
"tailwindcss": "4.1.11"
|
|
1775
|
+
},
|
|
1776
|
+
"peerDependencies": {
|
|
1777
|
+
"vite": "^5.2.0 || ^6 || ^7"
|
|
1778
|
+
}
|
|
1779
|
+
},
|
|
1780
|
+
"node_modules/@types/estree": {
|
|
1781
|
+
"version": "1.0.8",
|
|
1782
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
1783
|
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
1784
|
+
"dev": true,
|
|
1785
|
+
"license": "MIT"
|
|
1786
|
+
},
|
|
1787
|
+
"node_modules/@types/node": {
|
|
1788
|
+
"version": "20.19.9",
|
|
1789
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.9.tgz",
|
|
1790
|
+
"integrity": "sha512-cuVNgarYWZqxRJDQHEB58GEONhOK79QVR/qYx4S7kcUObQvUwvFnYxJuuHUKm2aieN9X3yZB4LZsuYNU1Qphsw==",
|
|
1791
|
+
"dev": true,
|
|
1792
|
+
"license": "MIT",
|
|
1793
|
+
"dependencies": {
|
|
1794
|
+
"undici-types": "~6.21.0"
|
|
1795
|
+
}
|
|
1796
|
+
},
|
|
1797
|
+
"node_modules/@types/react": {
|
|
1798
|
+
"version": "19.1.9",
|
|
1799
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.9.tgz",
|
|
1800
|
+
"integrity": "sha512-WmdoynAX8Stew/36uTSVMcLJJ1KRh6L3IZRx1PZ7qJtBqT3dYTgyDTx8H1qoRghErydW7xw9mSJ3wS//tCRpFA==",
|
|
1801
|
+
"dev": true,
|
|
1802
|
+
"license": "MIT",
|
|
1803
|
+
"dependencies": {
|
|
1804
|
+
"csstype": "^3.0.2"
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
"node_modules/@types/react-dom": {
|
|
1808
|
+
"version": "19.1.7",
|
|
1809
|
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.7.tgz",
|
|
1810
|
+
"integrity": "sha512-i5ZzwYpqjmrKenzkoLM2Ibzt6mAsM7pxB6BCIouEVVmgiqaMj1TjaK7hnA36hbW5aZv20kx7Lw6hWzPWg0Rurw==",
|
|
1811
|
+
"dev": true,
|
|
1812
|
+
"license": "MIT",
|
|
1813
|
+
"peerDependencies": {
|
|
1814
|
+
"@types/react": "^19.0.0"
|
|
1815
|
+
}
|
|
1816
|
+
},
|
|
1817
|
+
"node_modules/accepts": {
|
|
1818
|
+
"version": "1.3.8",
|
|
1819
|
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
|
1820
|
+
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
|
1821
|
+
"license": "MIT",
|
|
1822
|
+
"dependencies": {
|
|
1823
|
+
"mime-types": "~2.1.34",
|
|
1824
|
+
"negotiator": "0.6.3"
|
|
1825
|
+
},
|
|
1826
|
+
"engines": {
|
|
1827
|
+
"node": ">= 0.6"
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
"node_modules/accepts/node_modules/negotiator": {
|
|
1831
|
+
"version": "0.6.3",
|
|
1832
|
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
|
|
1833
|
+
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
|
|
1834
|
+
"license": "MIT",
|
|
1835
|
+
"engines": {
|
|
1836
|
+
"node": ">= 0.6"
|
|
1837
|
+
}
|
|
1838
|
+
},
|
|
1839
|
+
"node_modules/ansi-regex": {
|
|
1840
|
+
"version": "6.1.0",
|
|
1841
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
|
|
1842
|
+
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
|
|
1843
|
+
"dev": true,
|
|
1844
|
+
"license": "MIT",
|
|
1845
|
+
"engines": {
|
|
1846
|
+
"node": ">=12"
|
|
1847
|
+
},
|
|
1848
|
+
"funding": {
|
|
1849
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
1850
|
+
}
|
|
1851
|
+
},
|
|
1852
|
+
"node_modules/ansi-styles": {
|
|
1853
|
+
"version": "6.2.1",
|
|
1854
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
|
|
1855
|
+
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
|
|
1856
|
+
"dev": true,
|
|
1857
|
+
"license": "MIT",
|
|
1858
|
+
"engines": {
|
|
1859
|
+
"node": ">=12"
|
|
1860
|
+
},
|
|
1861
|
+
"funding": {
|
|
1862
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
1863
|
+
}
|
|
1864
|
+
},
|
|
1865
|
+
"node_modules/arg": {
|
|
1866
|
+
"version": "5.0.2",
|
|
1867
|
+
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
|
|
1868
|
+
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
|
|
1869
|
+
"dev": true,
|
|
1870
|
+
"license": "MIT"
|
|
1871
|
+
},
|
|
1872
|
+
"node_modules/array-flatten": {
|
|
1873
|
+
"version": "1.1.1",
|
|
1874
|
+
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
|
1875
|
+
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
|
|
1876
|
+
"license": "MIT"
|
|
1877
|
+
},
|
|
1878
|
+
"node_modules/babel-dead-code-elimination": {
|
|
1879
|
+
"version": "1.0.10",
|
|
1880
|
+
"resolved": "https://registry.npmjs.org/babel-dead-code-elimination/-/babel-dead-code-elimination-1.0.10.tgz",
|
|
1881
|
+
"integrity": "sha512-DV5bdJZTzZ0zn0DC24v3jD7Mnidh6xhKa4GfKCbq3sfW8kaWhDdZjP3i81geA8T33tdYqWKw4D3fVv0CwEgKVA==",
|
|
1882
|
+
"dev": true,
|
|
1883
|
+
"license": "MIT",
|
|
1884
|
+
"dependencies": {
|
|
1885
|
+
"@babel/core": "^7.23.7",
|
|
1886
|
+
"@babel/parser": "^7.23.6",
|
|
1887
|
+
"@babel/traverse": "^7.23.7",
|
|
1888
|
+
"@babel/types": "^7.23.6"
|
|
1889
|
+
}
|
|
1890
|
+
},
|
|
1891
|
+
"node_modules/balanced-match": {
|
|
1892
|
+
"version": "1.0.2",
|
|
1893
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
1894
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
1895
|
+
"dev": true,
|
|
1896
|
+
"license": "MIT"
|
|
1897
|
+
},
|
|
1898
|
+
"node_modules/basic-auth": {
|
|
1899
|
+
"version": "2.0.1",
|
|
1900
|
+
"resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz",
|
|
1901
|
+
"integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==",
|
|
1902
|
+
"license": "MIT",
|
|
1903
|
+
"dependencies": {
|
|
1904
|
+
"safe-buffer": "5.1.2"
|
|
1905
|
+
},
|
|
1906
|
+
"engines": {
|
|
1907
|
+
"node": ">= 0.8"
|
|
1908
|
+
}
|
|
1909
|
+
},
|
|
1910
|
+
"node_modules/basic-auth/node_modules/safe-buffer": {
|
|
1911
|
+
"version": "5.1.2",
|
|
1912
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1913
|
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1914
|
+
"license": "MIT"
|
|
1915
|
+
},
|
|
1916
|
+
"node_modules/body-parser": {
|
|
1917
|
+
"version": "1.20.3",
|
|
1918
|
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
|
|
1919
|
+
"integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
|
|
1920
|
+
"license": "MIT",
|
|
1921
|
+
"dependencies": {
|
|
1922
|
+
"bytes": "3.1.2",
|
|
1923
|
+
"content-type": "~1.0.5",
|
|
1924
|
+
"debug": "2.6.9",
|
|
1925
|
+
"depd": "2.0.0",
|
|
1926
|
+
"destroy": "1.2.0",
|
|
1927
|
+
"http-errors": "2.0.0",
|
|
1928
|
+
"iconv-lite": "0.4.24",
|
|
1929
|
+
"on-finished": "2.4.1",
|
|
1930
|
+
"qs": "6.13.0",
|
|
1931
|
+
"raw-body": "2.5.2",
|
|
1932
|
+
"type-is": "~1.6.18",
|
|
1933
|
+
"unpipe": "1.0.0"
|
|
1934
|
+
},
|
|
1935
|
+
"engines": {
|
|
1936
|
+
"node": ">= 0.8",
|
|
1937
|
+
"npm": "1.2.8000 || >= 1.4.16"
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
"node_modules/body-parser/node_modules/debug": {
|
|
1941
|
+
"version": "2.6.9",
|
|
1942
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
1943
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
1944
|
+
"license": "MIT",
|
|
1945
|
+
"dependencies": {
|
|
1946
|
+
"ms": "2.0.0"
|
|
1947
|
+
}
|
|
1948
|
+
},
|
|
1949
|
+
"node_modules/body-parser/node_modules/ms": {
|
|
1950
|
+
"version": "2.0.0",
|
|
1951
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
1952
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
1953
|
+
"license": "MIT"
|
|
1954
|
+
},
|
|
1955
|
+
"node_modules/brace-expansion": {
|
|
1956
|
+
"version": "2.0.2",
|
|
1957
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
|
|
1958
|
+
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
|
|
1959
|
+
"dev": true,
|
|
1960
|
+
"license": "MIT",
|
|
1961
|
+
"dependencies": {
|
|
1962
|
+
"balanced-match": "^1.0.0"
|
|
1963
|
+
}
|
|
1964
|
+
},
|
|
1965
|
+
"node_modules/browserslist": {
|
|
1966
|
+
"version": "4.25.1",
|
|
1967
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz",
|
|
1968
|
+
"integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==",
|
|
1969
|
+
"dev": true,
|
|
1970
|
+
"funding": [
|
|
1971
|
+
{
|
|
1972
|
+
"type": "opencollective",
|
|
1973
|
+
"url": "https://opencollective.com/browserslist"
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"type": "tidelift",
|
|
1977
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"type": "github",
|
|
1981
|
+
"url": "https://github.com/sponsors/ai"
|
|
1982
|
+
}
|
|
1983
|
+
],
|
|
1984
|
+
"license": "MIT",
|
|
1985
|
+
"dependencies": {
|
|
1986
|
+
"caniuse-lite": "^1.0.30001726",
|
|
1987
|
+
"electron-to-chromium": "^1.5.173",
|
|
1988
|
+
"node-releases": "^2.0.19",
|
|
1989
|
+
"update-browserslist-db": "^1.1.3"
|
|
1990
|
+
},
|
|
1991
|
+
"bin": {
|
|
1992
|
+
"browserslist": "cli.js"
|
|
1993
|
+
},
|
|
1994
|
+
"engines": {
|
|
1995
|
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"node_modules/buffer-from": {
|
|
1999
|
+
"version": "1.1.2",
|
|
2000
|
+
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
|
|
2001
|
+
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
|
|
2002
|
+
"license": "MIT"
|
|
2003
|
+
},
|
|
2004
|
+
"node_modules/bytes": {
|
|
2005
|
+
"version": "3.1.2",
|
|
2006
|
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
|
2007
|
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
|
2008
|
+
"license": "MIT",
|
|
2009
|
+
"engines": {
|
|
2010
|
+
"node": ">= 0.8"
|
|
2011
|
+
}
|
|
2012
|
+
},
|
|
2013
|
+
"node_modules/cac": {
|
|
2014
|
+
"version": "6.7.14",
|
|
2015
|
+
"resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz",
|
|
2016
|
+
"integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==",
|
|
2017
|
+
"dev": true,
|
|
2018
|
+
"license": "MIT",
|
|
2019
|
+
"engines": {
|
|
2020
|
+
"node": ">=8"
|
|
2021
|
+
}
|
|
2022
|
+
},
|
|
2023
|
+
"node_modules/call-bind-apply-helpers": {
|
|
2024
|
+
"version": "1.0.2",
|
|
2025
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
2026
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
2027
|
+
"license": "MIT",
|
|
2028
|
+
"dependencies": {
|
|
2029
|
+
"es-errors": "^1.3.0",
|
|
2030
|
+
"function-bind": "^1.1.2"
|
|
2031
|
+
},
|
|
2032
|
+
"engines": {
|
|
2033
|
+
"node": ">= 0.4"
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"node_modules/call-bound": {
|
|
2037
|
+
"version": "1.0.4",
|
|
2038
|
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
|
|
2039
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
2040
|
+
"license": "MIT",
|
|
2041
|
+
"dependencies": {
|
|
2042
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
2043
|
+
"get-intrinsic": "^1.3.0"
|
|
2044
|
+
},
|
|
2045
|
+
"engines": {
|
|
2046
|
+
"node": ">= 0.4"
|
|
2047
|
+
},
|
|
2048
|
+
"funding": {
|
|
2049
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2050
|
+
}
|
|
2051
|
+
},
|
|
2052
|
+
"node_modules/caniuse-lite": {
|
|
2053
|
+
"version": "1.0.30001731",
|
|
2054
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001731.tgz",
|
|
2055
|
+
"integrity": "sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==",
|
|
2056
|
+
"dev": true,
|
|
2057
|
+
"funding": [
|
|
2058
|
+
{
|
|
2059
|
+
"type": "opencollective",
|
|
2060
|
+
"url": "https://opencollective.com/browserslist"
|
|
2061
|
+
},
|
|
2062
|
+
{
|
|
2063
|
+
"type": "tidelift",
|
|
2064
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
"type": "github",
|
|
2068
|
+
"url": "https://github.com/sponsors/ai"
|
|
2069
|
+
}
|
|
2070
|
+
],
|
|
2071
|
+
"license": "CC-BY-4.0"
|
|
2072
|
+
},
|
|
2073
|
+
"node_modules/chokidar": {
|
|
2074
|
+
"version": "4.0.3",
|
|
2075
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
|
|
2076
|
+
"integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
|
|
2077
|
+
"dev": true,
|
|
2078
|
+
"license": "MIT",
|
|
2079
|
+
"dependencies": {
|
|
2080
|
+
"readdirp": "^4.0.1"
|
|
2081
|
+
},
|
|
2082
|
+
"engines": {
|
|
2083
|
+
"node": ">= 14.16.0"
|
|
2084
|
+
},
|
|
2085
|
+
"funding": {
|
|
2086
|
+
"url": "https://paulmillr.com/funding/"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"node_modules/chownr": {
|
|
2090
|
+
"version": "3.0.0",
|
|
2091
|
+
"resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
|
|
2092
|
+
"integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
|
|
2093
|
+
"dev": true,
|
|
2094
|
+
"license": "BlueOak-1.0.0",
|
|
2095
|
+
"engines": {
|
|
2096
|
+
"node": ">=18"
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2099
|
+
"node_modules/color-convert": {
|
|
2100
|
+
"version": "2.0.1",
|
|
2101
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
2102
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
2103
|
+
"dev": true,
|
|
2104
|
+
"license": "MIT",
|
|
2105
|
+
"dependencies": {
|
|
2106
|
+
"color-name": "~1.1.4"
|
|
2107
|
+
},
|
|
2108
|
+
"engines": {
|
|
2109
|
+
"node": ">=7.0.0"
|
|
2110
|
+
}
|
|
2111
|
+
},
|
|
2112
|
+
"node_modules/color-name": {
|
|
2113
|
+
"version": "1.1.4",
|
|
2114
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
2115
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
2116
|
+
"dev": true,
|
|
2117
|
+
"license": "MIT"
|
|
2118
|
+
},
|
|
2119
|
+
"node_modules/compressible": {
|
|
2120
|
+
"version": "2.0.18",
|
|
2121
|
+
"resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
|
|
2122
|
+
"integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
|
|
2123
|
+
"license": "MIT",
|
|
2124
|
+
"dependencies": {
|
|
2125
|
+
"mime-db": ">= 1.43.0 < 2"
|
|
2126
|
+
},
|
|
2127
|
+
"engines": {
|
|
2128
|
+
"node": ">= 0.6"
|
|
2129
|
+
}
|
|
2130
|
+
},
|
|
2131
|
+
"node_modules/compression": {
|
|
2132
|
+
"version": "1.8.1",
|
|
2133
|
+
"resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz",
|
|
2134
|
+
"integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==",
|
|
2135
|
+
"license": "MIT",
|
|
2136
|
+
"dependencies": {
|
|
2137
|
+
"bytes": "3.1.2",
|
|
2138
|
+
"compressible": "~2.0.18",
|
|
2139
|
+
"debug": "2.6.9",
|
|
2140
|
+
"negotiator": "~0.6.4",
|
|
2141
|
+
"on-headers": "~1.1.0",
|
|
2142
|
+
"safe-buffer": "5.2.1",
|
|
2143
|
+
"vary": "~1.1.2"
|
|
2144
|
+
},
|
|
2145
|
+
"engines": {
|
|
2146
|
+
"node": ">= 0.8.0"
|
|
2147
|
+
}
|
|
2148
|
+
},
|
|
2149
|
+
"node_modules/compression/node_modules/debug": {
|
|
2150
|
+
"version": "2.6.9",
|
|
2151
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
2152
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
2153
|
+
"license": "MIT",
|
|
2154
|
+
"dependencies": {
|
|
2155
|
+
"ms": "2.0.0"
|
|
2156
|
+
}
|
|
2157
|
+
},
|
|
2158
|
+
"node_modules/compression/node_modules/ms": {
|
|
2159
|
+
"version": "2.0.0",
|
|
2160
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
2161
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
2162
|
+
"license": "MIT"
|
|
2163
|
+
},
|
|
2164
|
+
"node_modules/content-disposition": {
|
|
2165
|
+
"version": "0.5.4",
|
|
2166
|
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
|
|
2167
|
+
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
|
|
2168
|
+
"license": "MIT",
|
|
2169
|
+
"dependencies": {
|
|
2170
|
+
"safe-buffer": "5.2.1"
|
|
2171
|
+
},
|
|
2172
|
+
"engines": {
|
|
2173
|
+
"node": ">= 0.6"
|
|
2174
|
+
}
|
|
2175
|
+
},
|
|
2176
|
+
"node_modules/content-type": {
|
|
2177
|
+
"version": "1.0.5",
|
|
2178
|
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
|
|
2179
|
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
|
2180
|
+
"license": "MIT",
|
|
2181
|
+
"engines": {
|
|
2182
|
+
"node": ">= 0.6"
|
|
2183
|
+
}
|
|
2184
|
+
},
|
|
2185
|
+
"node_modules/convert-source-map": {
|
|
2186
|
+
"version": "2.0.0",
|
|
2187
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
|
2188
|
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
|
2189
|
+
"dev": true,
|
|
2190
|
+
"license": "MIT"
|
|
2191
|
+
},
|
|
2192
|
+
"node_modules/cookie": {
|
|
2193
|
+
"version": "0.7.1",
|
|
2194
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
|
|
2195
|
+
"integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
|
|
2196
|
+
"license": "MIT",
|
|
2197
|
+
"engines": {
|
|
2198
|
+
"node": ">= 0.6"
|
|
2199
|
+
}
|
|
2200
|
+
},
|
|
2201
|
+
"node_modules/cookie-signature": {
|
|
2202
|
+
"version": "1.0.6",
|
|
2203
|
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
|
|
2204
|
+
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
|
|
2205
|
+
"license": "MIT"
|
|
2206
|
+
},
|
|
2207
|
+
"node_modules/cross-spawn": {
|
|
2208
|
+
"version": "7.0.6",
|
|
2209
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
2210
|
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
2211
|
+
"dev": true,
|
|
2212
|
+
"license": "MIT",
|
|
2213
|
+
"dependencies": {
|
|
2214
|
+
"path-key": "^3.1.0",
|
|
2215
|
+
"shebang-command": "^2.0.0",
|
|
2216
|
+
"which": "^2.0.1"
|
|
2217
|
+
},
|
|
2218
|
+
"engines": {
|
|
2219
|
+
"node": ">= 8"
|
|
2220
|
+
}
|
|
2221
|
+
},
|
|
2222
|
+
"node_modules/cross-spawn/node_modules/which": {
|
|
2223
|
+
"version": "2.0.2",
|
|
2224
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
2225
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
2226
|
+
"dev": true,
|
|
2227
|
+
"license": "ISC",
|
|
2228
|
+
"dependencies": {
|
|
2229
|
+
"isexe": "^2.0.0"
|
|
2230
|
+
},
|
|
2231
|
+
"bin": {
|
|
2232
|
+
"node-which": "bin/node-which"
|
|
2233
|
+
},
|
|
2234
|
+
"engines": {
|
|
2235
|
+
"node": ">= 8"
|
|
2236
|
+
}
|
|
2237
|
+
},
|
|
2238
|
+
"node_modules/csstype": {
|
|
2239
|
+
"version": "3.1.3",
|
|
2240
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
|
|
2241
|
+
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
|
|
2242
|
+
"dev": true,
|
|
2243
|
+
"license": "MIT"
|
|
2244
|
+
},
|
|
2245
|
+
"node_modules/debug": {
|
|
2246
|
+
"version": "4.4.1",
|
|
2247
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
|
|
2248
|
+
"integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
|
|
2249
|
+
"dev": true,
|
|
2250
|
+
"license": "MIT",
|
|
2251
|
+
"dependencies": {
|
|
2252
|
+
"ms": "^2.1.3"
|
|
2253
|
+
},
|
|
2254
|
+
"engines": {
|
|
2255
|
+
"node": ">=6.0"
|
|
2256
|
+
},
|
|
2257
|
+
"peerDependenciesMeta": {
|
|
2258
|
+
"supports-color": {
|
|
2259
|
+
"optional": true
|
|
2260
|
+
}
|
|
2261
|
+
}
|
|
2262
|
+
},
|
|
2263
|
+
"node_modules/dedent": {
|
|
2264
|
+
"version": "1.6.0",
|
|
2265
|
+
"resolved": "https://registry.npmjs.org/dedent/-/dedent-1.6.0.tgz",
|
|
2266
|
+
"integrity": "sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==",
|
|
2267
|
+
"dev": true,
|
|
2268
|
+
"license": "MIT",
|
|
2269
|
+
"peerDependencies": {
|
|
2270
|
+
"babel-plugin-macros": "^3.1.0"
|
|
2271
|
+
},
|
|
2272
|
+
"peerDependenciesMeta": {
|
|
2273
|
+
"babel-plugin-macros": {
|
|
2274
|
+
"optional": true
|
|
2275
|
+
}
|
|
2276
|
+
}
|
|
2277
|
+
},
|
|
2278
|
+
"node_modules/depd": {
|
|
2279
|
+
"version": "2.0.0",
|
|
2280
|
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
|
2281
|
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
|
2282
|
+
"license": "MIT",
|
|
2283
|
+
"engines": {
|
|
2284
|
+
"node": ">= 0.8"
|
|
2285
|
+
}
|
|
2286
|
+
},
|
|
2287
|
+
"node_modules/destroy": {
|
|
2288
|
+
"version": "1.2.0",
|
|
2289
|
+
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
|
|
2290
|
+
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
|
|
2291
|
+
"license": "MIT",
|
|
2292
|
+
"engines": {
|
|
2293
|
+
"node": ">= 0.8",
|
|
2294
|
+
"npm": "1.2.8000 || >= 1.4.16"
|
|
2295
|
+
}
|
|
2296
|
+
},
|
|
2297
|
+
"node_modules/detect-libc": {
|
|
2298
|
+
"version": "2.0.4",
|
|
2299
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
|
|
2300
|
+
"integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
|
|
2301
|
+
"dev": true,
|
|
2302
|
+
"license": "Apache-2.0",
|
|
2303
|
+
"engines": {
|
|
2304
|
+
"node": ">=8"
|
|
2305
|
+
}
|
|
2306
|
+
},
|
|
2307
|
+
"node_modules/dunder-proto": {
|
|
2308
|
+
"version": "1.0.1",
|
|
2309
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
2310
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
2311
|
+
"license": "MIT",
|
|
2312
|
+
"dependencies": {
|
|
2313
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
2314
|
+
"es-errors": "^1.3.0",
|
|
2315
|
+
"gopd": "^1.2.0"
|
|
2316
|
+
},
|
|
2317
|
+
"engines": {
|
|
2318
|
+
"node": ">= 0.4"
|
|
2319
|
+
}
|
|
2320
|
+
},
|
|
2321
|
+
"node_modules/eastasianwidth": {
|
|
2322
|
+
"version": "0.2.0",
|
|
2323
|
+
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
|
|
2324
|
+
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
|
|
2325
|
+
"dev": true,
|
|
2326
|
+
"license": "MIT"
|
|
2327
|
+
},
|
|
2328
|
+
"node_modules/ee-first": {
|
|
2329
|
+
"version": "1.1.1",
|
|
2330
|
+
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
|
2331
|
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
|
|
2332
|
+
"license": "MIT"
|
|
2333
|
+
},
|
|
2334
|
+
"node_modules/electron-to-chromium": {
|
|
2335
|
+
"version": "1.5.192",
|
|
2336
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.192.tgz",
|
|
2337
|
+
"integrity": "sha512-rP8Ez0w7UNw/9j5eSXCe10o1g/8B1P5SM90PCCMVkIRQn2R0LEHWz4Eh9RnxkniuDe1W0cTSOB3MLlkTGDcuCg==",
|
|
2338
|
+
"dev": true,
|
|
2339
|
+
"license": "ISC"
|
|
2340
|
+
},
|
|
2341
|
+
"node_modules/emoji-regex": {
|
|
2342
|
+
"version": "9.2.2",
|
|
2343
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
|
|
2344
|
+
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
|
2345
|
+
"dev": true,
|
|
2346
|
+
"license": "MIT"
|
|
2347
|
+
},
|
|
2348
|
+
"node_modules/encodeurl": {
|
|
2349
|
+
"version": "2.0.0",
|
|
2350
|
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
|
|
2351
|
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
|
2352
|
+
"license": "MIT",
|
|
2353
|
+
"engines": {
|
|
2354
|
+
"node": ">= 0.8"
|
|
2355
|
+
}
|
|
2356
|
+
},
|
|
2357
|
+
"node_modules/enhanced-resolve": {
|
|
2358
|
+
"version": "5.18.2",
|
|
2359
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.2.tgz",
|
|
2360
|
+
"integrity": "sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==",
|
|
2361
|
+
"dev": true,
|
|
2362
|
+
"license": "MIT",
|
|
2363
|
+
"dependencies": {
|
|
2364
|
+
"graceful-fs": "^4.2.4",
|
|
2365
|
+
"tapable": "^2.2.0"
|
|
2366
|
+
},
|
|
2367
|
+
"engines": {
|
|
2368
|
+
"node": ">=10.13.0"
|
|
2369
|
+
}
|
|
2370
|
+
},
|
|
2371
|
+
"node_modules/err-code": {
|
|
2372
|
+
"version": "2.0.3",
|
|
2373
|
+
"resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
|
|
2374
|
+
"integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
|
|
2375
|
+
"dev": true,
|
|
2376
|
+
"license": "MIT"
|
|
2377
|
+
},
|
|
2378
|
+
"node_modules/es-define-property": {
|
|
2379
|
+
"version": "1.0.1",
|
|
2380
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
2381
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
2382
|
+
"license": "MIT",
|
|
2383
|
+
"engines": {
|
|
2384
|
+
"node": ">= 0.4"
|
|
2385
|
+
}
|
|
2386
|
+
},
|
|
2387
|
+
"node_modules/es-errors": {
|
|
2388
|
+
"version": "1.3.0",
|
|
2389
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
2390
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
2391
|
+
"license": "MIT",
|
|
2392
|
+
"engines": {
|
|
2393
|
+
"node": ">= 0.4"
|
|
2394
|
+
}
|
|
2395
|
+
},
|
|
2396
|
+
"node_modules/es-module-lexer": {
|
|
2397
|
+
"version": "1.7.0",
|
|
2398
|
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz",
|
|
2399
|
+
"integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
|
|
2400
|
+
"dev": true,
|
|
2401
|
+
"license": "MIT"
|
|
2402
|
+
},
|
|
2403
|
+
"node_modules/es-object-atoms": {
|
|
2404
|
+
"version": "1.1.1",
|
|
2405
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
2406
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
2407
|
+
"license": "MIT",
|
|
2408
|
+
"dependencies": {
|
|
2409
|
+
"es-errors": "^1.3.0"
|
|
2410
|
+
},
|
|
2411
|
+
"engines": {
|
|
2412
|
+
"node": ">= 0.4"
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2415
|
+
"node_modules/esbuild": {
|
|
2416
|
+
"version": "0.25.8",
|
|
2417
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.8.tgz",
|
|
2418
|
+
"integrity": "sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==",
|
|
2419
|
+
"dev": true,
|
|
2420
|
+
"hasInstallScript": true,
|
|
2421
|
+
"license": "MIT",
|
|
2422
|
+
"bin": {
|
|
2423
|
+
"esbuild": "bin/esbuild"
|
|
2424
|
+
},
|
|
2425
|
+
"engines": {
|
|
2426
|
+
"node": ">=18"
|
|
2427
|
+
},
|
|
2428
|
+
"optionalDependencies": {
|
|
2429
|
+
"@esbuild/aix-ppc64": "0.25.8",
|
|
2430
|
+
"@esbuild/android-arm": "0.25.8",
|
|
2431
|
+
"@esbuild/android-arm64": "0.25.8",
|
|
2432
|
+
"@esbuild/android-x64": "0.25.8",
|
|
2433
|
+
"@esbuild/darwin-arm64": "0.25.8",
|
|
2434
|
+
"@esbuild/darwin-x64": "0.25.8",
|
|
2435
|
+
"@esbuild/freebsd-arm64": "0.25.8",
|
|
2436
|
+
"@esbuild/freebsd-x64": "0.25.8",
|
|
2437
|
+
"@esbuild/linux-arm": "0.25.8",
|
|
2438
|
+
"@esbuild/linux-arm64": "0.25.8",
|
|
2439
|
+
"@esbuild/linux-ia32": "0.25.8",
|
|
2440
|
+
"@esbuild/linux-loong64": "0.25.8",
|
|
2441
|
+
"@esbuild/linux-mips64el": "0.25.8",
|
|
2442
|
+
"@esbuild/linux-ppc64": "0.25.8",
|
|
2443
|
+
"@esbuild/linux-riscv64": "0.25.8",
|
|
2444
|
+
"@esbuild/linux-s390x": "0.25.8",
|
|
2445
|
+
"@esbuild/linux-x64": "0.25.8",
|
|
2446
|
+
"@esbuild/netbsd-arm64": "0.25.8",
|
|
2447
|
+
"@esbuild/netbsd-x64": "0.25.8",
|
|
2448
|
+
"@esbuild/openbsd-arm64": "0.25.8",
|
|
2449
|
+
"@esbuild/openbsd-x64": "0.25.8",
|
|
2450
|
+
"@esbuild/openharmony-arm64": "0.25.8",
|
|
2451
|
+
"@esbuild/sunos-x64": "0.25.8",
|
|
2452
|
+
"@esbuild/win32-arm64": "0.25.8",
|
|
2453
|
+
"@esbuild/win32-ia32": "0.25.8",
|
|
2454
|
+
"@esbuild/win32-x64": "0.25.8"
|
|
2455
|
+
}
|
|
2456
|
+
},
|
|
2457
|
+
"node_modules/escalade": {
|
|
2458
|
+
"version": "3.2.0",
|
|
2459
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
2460
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
2461
|
+
"dev": true,
|
|
2462
|
+
"license": "MIT",
|
|
2463
|
+
"engines": {
|
|
2464
|
+
"node": ">=6"
|
|
2465
|
+
}
|
|
2466
|
+
},
|
|
2467
|
+
"node_modules/escape-html": {
|
|
2468
|
+
"version": "1.0.3",
|
|
2469
|
+
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
|
2470
|
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
|
|
2471
|
+
"license": "MIT"
|
|
2472
|
+
},
|
|
2473
|
+
"node_modules/etag": {
|
|
2474
|
+
"version": "1.8.1",
|
|
2475
|
+
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
|
2476
|
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
|
2477
|
+
"license": "MIT",
|
|
2478
|
+
"engines": {
|
|
2479
|
+
"node": ">= 0.6"
|
|
2480
|
+
}
|
|
2481
|
+
},
|
|
2482
|
+
"node_modules/exit-hook": {
|
|
2483
|
+
"version": "2.2.1",
|
|
2484
|
+
"resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz",
|
|
2485
|
+
"integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==",
|
|
2486
|
+
"dev": true,
|
|
2487
|
+
"license": "MIT",
|
|
2488
|
+
"engines": {
|
|
2489
|
+
"node": ">=6"
|
|
2490
|
+
},
|
|
2491
|
+
"funding": {
|
|
2492
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2493
|
+
}
|
|
2494
|
+
},
|
|
2495
|
+
"node_modules/express": {
|
|
2496
|
+
"version": "4.21.2",
|
|
2497
|
+
"resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
|
|
2498
|
+
"integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
|
|
2499
|
+
"license": "MIT",
|
|
2500
|
+
"dependencies": {
|
|
2501
|
+
"accepts": "~1.3.8",
|
|
2502
|
+
"array-flatten": "1.1.1",
|
|
2503
|
+
"body-parser": "1.20.3",
|
|
2504
|
+
"content-disposition": "0.5.4",
|
|
2505
|
+
"content-type": "~1.0.4",
|
|
2506
|
+
"cookie": "0.7.1",
|
|
2507
|
+
"cookie-signature": "1.0.6",
|
|
2508
|
+
"debug": "2.6.9",
|
|
2509
|
+
"depd": "2.0.0",
|
|
2510
|
+
"encodeurl": "~2.0.0",
|
|
2511
|
+
"escape-html": "~1.0.3",
|
|
2512
|
+
"etag": "~1.8.1",
|
|
2513
|
+
"finalhandler": "1.3.1",
|
|
2514
|
+
"fresh": "0.5.2",
|
|
2515
|
+
"http-errors": "2.0.0",
|
|
2516
|
+
"merge-descriptors": "1.0.3",
|
|
2517
|
+
"methods": "~1.1.2",
|
|
2518
|
+
"on-finished": "2.4.1",
|
|
2519
|
+
"parseurl": "~1.3.3",
|
|
2520
|
+
"path-to-regexp": "0.1.12",
|
|
2521
|
+
"proxy-addr": "~2.0.7",
|
|
2522
|
+
"qs": "6.13.0",
|
|
2523
|
+
"range-parser": "~1.2.1",
|
|
2524
|
+
"safe-buffer": "5.2.1",
|
|
2525
|
+
"send": "0.19.0",
|
|
2526
|
+
"serve-static": "1.16.2",
|
|
2527
|
+
"setprototypeof": "1.2.0",
|
|
2528
|
+
"statuses": "2.0.1",
|
|
2529
|
+
"type-is": "~1.6.18",
|
|
2530
|
+
"utils-merge": "1.0.1",
|
|
2531
|
+
"vary": "~1.1.2"
|
|
2532
|
+
},
|
|
2533
|
+
"engines": {
|
|
2534
|
+
"node": ">= 0.10.0"
|
|
2535
|
+
},
|
|
2536
|
+
"funding": {
|
|
2537
|
+
"type": "opencollective",
|
|
2538
|
+
"url": "https://opencollective.com/express"
|
|
2539
|
+
}
|
|
2540
|
+
},
|
|
2541
|
+
"node_modules/express/node_modules/debug": {
|
|
2542
|
+
"version": "2.6.9",
|
|
2543
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
2544
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
2545
|
+
"license": "MIT",
|
|
2546
|
+
"dependencies": {
|
|
2547
|
+
"ms": "2.0.0"
|
|
2548
|
+
}
|
|
2549
|
+
},
|
|
2550
|
+
"node_modules/express/node_modules/ms": {
|
|
2551
|
+
"version": "2.0.0",
|
|
2552
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
2553
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
2554
|
+
"license": "MIT"
|
|
2555
|
+
},
|
|
2556
|
+
"node_modules/fdir": {
|
|
2557
|
+
"version": "6.4.6",
|
|
2558
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz",
|
|
2559
|
+
"integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
|
|
2560
|
+
"dev": true,
|
|
2561
|
+
"license": "MIT",
|
|
2562
|
+
"peerDependencies": {
|
|
2563
|
+
"picomatch": "^3 || ^4"
|
|
2564
|
+
},
|
|
2565
|
+
"peerDependenciesMeta": {
|
|
2566
|
+
"picomatch": {
|
|
2567
|
+
"optional": true
|
|
2568
|
+
}
|
|
2569
|
+
}
|
|
2570
|
+
},
|
|
2571
|
+
"node_modules/finalhandler": {
|
|
2572
|
+
"version": "1.3.1",
|
|
2573
|
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
|
|
2574
|
+
"integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
|
|
2575
|
+
"license": "MIT",
|
|
2576
|
+
"dependencies": {
|
|
2577
|
+
"debug": "2.6.9",
|
|
2578
|
+
"encodeurl": "~2.0.0",
|
|
2579
|
+
"escape-html": "~1.0.3",
|
|
2580
|
+
"on-finished": "2.4.1",
|
|
2581
|
+
"parseurl": "~1.3.3",
|
|
2582
|
+
"statuses": "2.0.1",
|
|
2583
|
+
"unpipe": "~1.0.0"
|
|
2584
|
+
},
|
|
2585
|
+
"engines": {
|
|
2586
|
+
"node": ">= 0.8"
|
|
2587
|
+
}
|
|
2588
|
+
},
|
|
2589
|
+
"node_modules/finalhandler/node_modules/debug": {
|
|
2590
|
+
"version": "2.6.9",
|
|
2591
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
2592
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
2593
|
+
"license": "MIT",
|
|
2594
|
+
"dependencies": {
|
|
2595
|
+
"ms": "2.0.0"
|
|
2596
|
+
}
|
|
2597
|
+
},
|
|
2598
|
+
"node_modules/finalhandler/node_modules/ms": {
|
|
2599
|
+
"version": "2.0.0",
|
|
2600
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
2601
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
2602
|
+
"license": "MIT"
|
|
2603
|
+
},
|
|
2604
|
+
"node_modules/foreground-child": {
|
|
2605
|
+
"version": "3.3.1",
|
|
2606
|
+
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
|
|
2607
|
+
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
|
|
2608
|
+
"dev": true,
|
|
2609
|
+
"license": "ISC",
|
|
2610
|
+
"dependencies": {
|
|
2611
|
+
"cross-spawn": "^7.0.6",
|
|
2612
|
+
"signal-exit": "^4.0.1"
|
|
2613
|
+
},
|
|
2614
|
+
"engines": {
|
|
2615
|
+
"node": ">=14"
|
|
2616
|
+
},
|
|
2617
|
+
"funding": {
|
|
2618
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2619
|
+
}
|
|
2620
|
+
},
|
|
2621
|
+
"node_modules/forwarded": {
|
|
2622
|
+
"version": "0.2.0",
|
|
2623
|
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
|
2624
|
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
|
2625
|
+
"license": "MIT",
|
|
2626
|
+
"engines": {
|
|
2627
|
+
"node": ">= 0.6"
|
|
2628
|
+
}
|
|
2629
|
+
},
|
|
2630
|
+
"node_modules/fresh": {
|
|
2631
|
+
"version": "0.5.2",
|
|
2632
|
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
|
2633
|
+
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
|
|
2634
|
+
"license": "MIT",
|
|
2635
|
+
"engines": {
|
|
2636
|
+
"node": ">= 0.6"
|
|
2637
|
+
}
|
|
2638
|
+
},
|
|
2639
|
+
"node_modules/fsevents": {
|
|
2640
|
+
"version": "2.3.3",
|
|
2641
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
2642
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
2643
|
+
"dev": true,
|
|
2644
|
+
"hasInstallScript": true,
|
|
2645
|
+
"license": "MIT",
|
|
2646
|
+
"optional": true,
|
|
2647
|
+
"os": [
|
|
2648
|
+
"darwin"
|
|
2649
|
+
],
|
|
2650
|
+
"engines": {
|
|
2651
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
2652
|
+
}
|
|
2653
|
+
},
|
|
2654
|
+
"node_modules/function-bind": {
|
|
2655
|
+
"version": "1.1.2",
|
|
2656
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
2657
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
2658
|
+
"license": "MIT",
|
|
2659
|
+
"funding": {
|
|
2660
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2661
|
+
}
|
|
2662
|
+
},
|
|
2663
|
+
"node_modules/gensync": {
|
|
2664
|
+
"version": "1.0.0-beta.2",
|
|
2665
|
+
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
|
2666
|
+
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
|
2667
|
+
"dev": true,
|
|
2668
|
+
"license": "MIT",
|
|
2669
|
+
"engines": {
|
|
2670
|
+
"node": ">=6.9.0"
|
|
2671
|
+
}
|
|
2672
|
+
},
|
|
2673
|
+
"node_modules/get-intrinsic": {
|
|
2674
|
+
"version": "1.3.0",
|
|
2675
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
2676
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
2677
|
+
"license": "MIT",
|
|
2678
|
+
"dependencies": {
|
|
2679
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
2680
|
+
"es-define-property": "^1.0.1",
|
|
2681
|
+
"es-errors": "^1.3.0",
|
|
2682
|
+
"es-object-atoms": "^1.1.1",
|
|
2683
|
+
"function-bind": "^1.1.2",
|
|
2684
|
+
"get-proto": "^1.0.1",
|
|
2685
|
+
"gopd": "^1.2.0",
|
|
2686
|
+
"has-symbols": "^1.1.0",
|
|
2687
|
+
"hasown": "^2.0.2",
|
|
2688
|
+
"math-intrinsics": "^1.1.0"
|
|
2689
|
+
},
|
|
2690
|
+
"engines": {
|
|
2691
|
+
"node": ">= 0.4"
|
|
2692
|
+
},
|
|
2693
|
+
"funding": {
|
|
2694
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2695
|
+
}
|
|
2696
|
+
},
|
|
2697
|
+
"node_modules/get-port": {
|
|
2698
|
+
"version": "5.1.1",
|
|
2699
|
+
"resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz",
|
|
2700
|
+
"integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==",
|
|
2701
|
+
"license": "MIT",
|
|
2702
|
+
"engines": {
|
|
2703
|
+
"node": ">=8"
|
|
2704
|
+
},
|
|
2705
|
+
"funding": {
|
|
2706
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2707
|
+
}
|
|
2708
|
+
},
|
|
2709
|
+
"node_modules/get-proto": {
|
|
2710
|
+
"version": "1.0.1",
|
|
2711
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
2712
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
2713
|
+
"license": "MIT",
|
|
2714
|
+
"dependencies": {
|
|
2715
|
+
"dunder-proto": "^1.0.1",
|
|
2716
|
+
"es-object-atoms": "^1.0.0"
|
|
2717
|
+
},
|
|
2718
|
+
"engines": {
|
|
2719
|
+
"node": ">= 0.4"
|
|
2720
|
+
}
|
|
2721
|
+
},
|
|
2722
|
+
"node_modules/glob": {
|
|
2723
|
+
"version": "10.4.5",
|
|
2724
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
|
|
2725
|
+
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
|
|
2726
|
+
"dev": true,
|
|
2727
|
+
"license": "ISC",
|
|
2728
|
+
"dependencies": {
|
|
2729
|
+
"foreground-child": "^3.1.0",
|
|
2730
|
+
"jackspeak": "^3.1.2",
|
|
2731
|
+
"minimatch": "^9.0.4",
|
|
2732
|
+
"minipass": "^7.1.2",
|
|
2733
|
+
"package-json-from-dist": "^1.0.0",
|
|
2734
|
+
"path-scurry": "^1.11.1"
|
|
2735
|
+
},
|
|
2736
|
+
"bin": {
|
|
2737
|
+
"glob": "dist/esm/bin.mjs"
|
|
2738
|
+
},
|
|
2739
|
+
"funding": {
|
|
2740
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2741
|
+
}
|
|
2742
|
+
},
|
|
2743
|
+
"node_modules/globrex": {
|
|
2744
|
+
"version": "0.1.2",
|
|
2745
|
+
"resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz",
|
|
2746
|
+
"integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==",
|
|
2747
|
+
"dev": true,
|
|
2748
|
+
"license": "MIT"
|
|
2749
|
+
},
|
|
2750
|
+
"node_modules/gopd": {
|
|
2751
|
+
"version": "1.2.0",
|
|
2752
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
2753
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
2754
|
+
"license": "MIT",
|
|
2755
|
+
"engines": {
|
|
2756
|
+
"node": ">= 0.4"
|
|
2757
|
+
},
|
|
2758
|
+
"funding": {
|
|
2759
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2760
|
+
}
|
|
2761
|
+
},
|
|
2762
|
+
"node_modules/graceful-fs": {
|
|
2763
|
+
"version": "4.2.11",
|
|
2764
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
2765
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
2766
|
+
"dev": true,
|
|
2767
|
+
"license": "ISC"
|
|
2768
|
+
},
|
|
2769
|
+
"node_modules/has-symbols": {
|
|
2770
|
+
"version": "1.1.0",
|
|
2771
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
2772
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
2773
|
+
"license": "MIT",
|
|
2774
|
+
"engines": {
|
|
2775
|
+
"node": ">= 0.4"
|
|
2776
|
+
},
|
|
2777
|
+
"funding": {
|
|
2778
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2779
|
+
}
|
|
2780
|
+
},
|
|
2781
|
+
"node_modules/hasown": {
|
|
2782
|
+
"version": "2.0.2",
|
|
2783
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
2784
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
2785
|
+
"license": "MIT",
|
|
2786
|
+
"dependencies": {
|
|
2787
|
+
"function-bind": "^1.1.2"
|
|
2788
|
+
},
|
|
2789
|
+
"engines": {
|
|
2790
|
+
"node": ">= 0.4"
|
|
2791
|
+
}
|
|
2792
|
+
},
|
|
2793
|
+
"node_modules/hosted-git-info": {
|
|
2794
|
+
"version": "6.1.3",
|
|
2795
|
+
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.3.tgz",
|
|
2796
|
+
"integrity": "sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==",
|
|
2797
|
+
"dev": true,
|
|
2798
|
+
"license": "ISC",
|
|
2799
|
+
"dependencies": {
|
|
2800
|
+
"lru-cache": "^7.5.1"
|
|
2801
|
+
},
|
|
2802
|
+
"engines": {
|
|
2803
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
2804
|
+
}
|
|
2805
|
+
},
|
|
2806
|
+
"node_modules/hosted-git-info/node_modules/lru-cache": {
|
|
2807
|
+
"version": "7.18.3",
|
|
2808
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
|
|
2809
|
+
"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
|
|
2810
|
+
"dev": true,
|
|
2811
|
+
"license": "ISC",
|
|
2812
|
+
"engines": {
|
|
2813
|
+
"node": ">=12"
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2816
|
+
"node_modules/http-errors": {
|
|
2817
|
+
"version": "2.0.0",
|
|
2818
|
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
|
|
2819
|
+
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
|
|
2820
|
+
"license": "MIT",
|
|
2821
|
+
"dependencies": {
|
|
2822
|
+
"depd": "2.0.0",
|
|
2823
|
+
"inherits": "2.0.4",
|
|
2824
|
+
"setprototypeof": "1.2.0",
|
|
2825
|
+
"statuses": "2.0.1",
|
|
2826
|
+
"toidentifier": "1.0.1"
|
|
2827
|
+
},
|
|
2828
|
+
"engines": {
|
|
2829
|
+
"node": ">= 0.8"
|
|
2830
|
+
}
|
|
2831
|
+
},
|
|
2832
|
+
"node_modules/iconv-lite": {
|
|
2833
|
+
"version": "0.4.24",
|
|
2834
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
|
2835
|
+
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
|
2836
|
+
"license": "MIT",
|
|
2837
|
+
"dependencies": {
|
|
2838
|
+
"safer-buffer": ">= 2.1.2 < 3"
|
|
2839
|
+
},
|
|
2840
|
+
"engines": {
|
|
2841
|
+
"node": ">=0.10.0"
|
|
2842
|
+
}
|
|
2843
|
+
},
|
|
2844
|
+
"node_modules/inherits": {
|
|
2845
|
+
"version": "2.0.4",
|
|
2846
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
2847
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
2848
|
+
"license": "ISC"
|
|
2849
|
+
},
|
|
2850
|
+
"node_modules/ipaddr.js": {
|
|
2851
|
+
"version": "1.9.1",
|
|
2852
|
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
|
2853
|
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
|
2854
|
+
"license": "MIT",
|
|
2855
|
+
"engines": {
|
|
2856
|
+
"node": ">= 0.10"
|
|
2857
|
+
}
|
|
2858
|
+
},
|
|
2859
|
+
"node_modules/is-core-module": {
|
|
2860
|
+
"version": "2.16.1",
|
|
2861
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
|
2862
|
+
"integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
|
|
2863
|
+
"dev": true,
|
|
2864
|
+
"license": "MIT",
|
|
2865
|
+
"dependencies": {
|
|
2866
|
+
"hasown": "^2.0.2"
|
|
2867
|
+
},
|
|
2868
|
+
"engines": {
|
|
2869
|
+
"node": ">= 0.4"
|
|
2870
|
+
},
|
|
2871
|
+
"funding": {
|
|
2872
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2873
|
+
}
|
|
2874
|
+
},
|
|
2875
|
+
"node_modules/is-fullwidth-code-point": {
|
|
2876
|
+
"version": "3.0.0",
|
|
2877
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
2878
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
2879
|
+
"dev": true,
|
|
2880
|
+
"license": "MIT",
|
|
2881
|
+
"engines": {
|
|
2882
|
+
"node": ">=8"
|
|
2883
|
+
}
|
|
2884
|
+
},
|
|
2885
|
+
"node_modules/isbot": {
|
|
2886
|
+
"version": "5.1.29",
|
|
2887
|
+
"resolved": "https://registry.npmjs.org/isbot/-/isbot-5.1.29.tgz",
|
|
2888
|
+
"integrity": "sha512-DelDWWoa3mBoyWTq3wjp+GIWx/yZdN7zLUE7NFhKjAiJ+uJVRkbLlwykdduCE4sPUUy8mlTYTmdhBUYu91F+sw==",
|
|
2889
|
+
"license": "Unlicense",
|
|
2890
|
+
"engines": {
|
|
2891
|
+
"node": ">=18"
|
|
2892
|
+
}
|
|
2893
|
+
},
|
|
2894
|
+
"node_modules/isexe": {
|
|
2895
|
+
"version": "2.0.0",
|
|
2896
|
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
2897
|
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
2898
|
+
"dev": true,
|
|
2899
|
+
"license": "ISC"
|
|
2900
|
+
},
|
|
2901
|
+
"node_modules/jackspeak": {
|
|
2902
|
+
"version": "3.4.3",
|
|
2903
|
+
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
|
|
2904
|
+
"integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
|
|
2905
|
+
"dev": true,
|
|
2906
|
+
"license": "BlueOak-1.0.0",
|
|
2907
|
+
"dependencies": {
|
|
2908
|
+
"@isaacs/cliui": "^8.0.2"
|
|
2909
|
+
},
|
|
2910
|
+
"funding": {
|
|
2911
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2912
|
+
},
|
|
2913
|
+
"optionalDependencies": {
|
|
2914
|
+
"@pkgjs/parseargs": "^0.11.0"
|
|
2915
|
+
}
|
|
2916
|
+
},
|
|
2917
|
+
"node_modules/jiti": {
|
|
2918
|
+
"version": "2.5.1",
|
|
2919
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.5.1.tgz",
|
|
2920
|
+
"integrity": "sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==",
|
|
2921
|
+
"dev": true,
|
|
2922
|
+
"license": "MIT",
|
|
2923
|
+
"bin": {
|
|
2924
|
+
"jiti": "lib/jiti-cli.mjs"
|
|
2925
|
+
}
|
|
2926
|
+
},
|
|
2927
|
+
"node_modules/js-tokens": {
|
|
2928
|
+
"version": "4.0.0",
|
|
2929
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
2930
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
2931
|
+
"dev": true,
|
|
2932
|
+
"license": "MIT"
|
|
2933
|
+
},
|
|
2934
|
+
"node_modules/jsesc": {
|
|
2935
|
+
"version": "3.0.2",
|
|
2936
|
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
|
|
2937
|
+
"integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
|
|
2938
|
+
"dev": true,
|
|
2939
|
+
"license": "MIT",
|
|
2940
|
+
"bin": {
|
|
2941
|
+
"jsesc": "bin/jsesc"
|
|
2942
|
+
},
|
|
2943
|
+
"engines": {
|
|
2944
|
+
"node": ">=6"
|
|
2945
|
+
}
|
|
2946
|
+
},
|
|
2947
|
+
"node_modules/json-parse-even-better-errors": {
|
|
2948
|
+
"version": "3.0.2",
|
|
2949
|
+
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz",
|
|
2950
|
+
"integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==",
|
|
2951
|
+
"dev": true,
|
|
2952
|
+
"license": "MIT",
|
|
2953
|
+
"engines": {
|
|
2954
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
2955
|
+
}
|
|
2956
|
+
},
|
|
2957
|
+
"node_modules/json5": {
|
|
2958
|
+
"version": "2.2.3",
|
|
2959
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
|
2960
|
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
|
2961
|
+
"dev": true,
|
|
2962
|
+
"license": "MIT",
|
|
2963
|
+
"bin": {
|
|
2964
|
+
"json5": "lib/cli.js"
|
|
2965
|
+
},
|
|
2966
|
+
"engines": {
|
|
2967
|
+
"node": ">=6"
|
|
2968
|
+
}
|
|
2969
|
+
},
|
|
2970
|
+
"node_modules/lightningcss": {
|
|
2971
|
+
"version": "1.30.1",
|
|
2972
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz",
|
|
2973
|
+
"integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
|
|
2974
|
+
"dev": true,
|
|
2975
|
+
"license": "MPL-2.0",
|
|
2976
|
+
"dependencies": {
|
|
2977
|
+
"detect-libc": "^2.0.3"
|
|
2978
|
+
},
|
|
2979
|
+
"engines": {
|
|
2980
|
+
"node": ">= 12.0.0"
|
|
2981
|
+
},
|
|
2982
|
+
"funding": {
|
|
2983
|
+
"type": "opencollective",
|
|
2984
|
+
"url": "https://opencollective.com/parcel"
|
|
2985
|
+
},
|
|
2986
|
+
"optionalDependencies": {
|
|
2987
|
+
"lightningcss-darwin-arm64": "1.30.1",
|
|
2988
|
+
"lightningcss-darwin-x64": "1.30.1",
|
|
2989
|
+
"lightningcss-freebsd-x64": "1.30.1",
|
|
2990
|
+
"lightningcss-linux-arm-gnueabihf": "1.30.1",
|
|
2991
|
+
"lightningcss-linux-arm64-gnu": "1.30.1",
|
|
2992
|
+
"lightningcss-linux-arm64-musl": "1.30.1",
|
|
2993
|
+
"lightningcss-linux-x64-gnu": "1.30.1",
|
|
2994
|
+
"lightningcss-linux-x64-musl": "1.30.1",
|
|
2995
|
+
"lightningcss-win32-arm64-msvc": "1.30.1",
|
|
2996
|
+
"lightningcss-win32-x64-msvc": "1.30.1"
|
|
2997
|
+
}
|
|
2998
|
+
},
|
|
2999
|
+
"node_modules/lightningcss-darwin-arm64": {
|
|
3000
|
+
"version": "1.30.1",
|
|
3001
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz",
|
|
3002
|
+
"integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==",
|
|
3003
|
+
"cpu": [
|
|
3004
|
+
"arm64"
|
|
3005
|
+
],
|
|
3006
|
+
"dev": true,
|
|
3007
|
+
"license": "MPL-2.0",
|
|
3008
|
+
"optional": true,
|
|
3009
|
+
"os": [
|
|
3010
|
+
"darwin"
|
|
3011
|
+
],
|
|
3012
|
+
"engines": {
|
|
3013
|
+
"node": ">= 12.0.0"
|
|
3014
|
+
},
|
|
3015
|
+
"funding": {
|
|
3016
|
+
"type": "opencollective",
|
|
3017
|
+
"url": "https://opencollective.com/parcel"
|
|
3018
|
+
}
|
|
3019
|
+
},
|
|
3020
|
+
"node_modules/lightningcss-darwin-x64": {
|
|
3021
|
+
"version": "1.30.1",
|
|
3022
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz",
|
|
3023
|
+
"integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==",
|
|
3024
|
+
"cpu": [
|
|
3025
|
+
"x64"
|
|
3026
|
+
],
|
|
3027
|
+
"dev": true,
|
|
3028
|
+
"license": "MPL-2.0",
|
|
3029
|
+
"optional": true,
|
|
3030
|
+
"os": [
|
|
3031
|
+
"darwin"
|
|
3032
|
+
],
|
|
3033
|
+
"engines": {
|
|
3034
|
+
"node": ">= 12.0.0"
|
|
3035
|
+
},
|
|
3036
|
+
"funding": {
|
|
3037
|
+
"type": "opencollective",
|
|
3038
|
+
"url": "https://opencollective.com/parcel"
|
|
3039
|
+
}
|
|
3040
|
+
},
|
|
3041
|
+
"node_modules/lightningcss-freebsd-x64": {
|
|
3042
|
+
"version": "1.30.1",
|
|
3043
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz",
|
|
3044
|
+
"integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==",
|
|
3045
|
+
"cpu": [
|
|
3046
|
+
"x64"
|
|
3047
|
+
],
|
|
3048
|
+
"dev": true,
|
|
3049
|
+
"license": "MPL-2.0",
|
|
3050
|
+
"optional": true,
|
|
3051
|
+
"os": [
|
|
3052
|
+
"freebsd"
|
|
3053
|
+
],
|
|
3054
|
+
"engines": {
|
|
3055
|
+
"node": ">= 12.0.0"
|
|
3056
|
+
},
|
|
3057
|
+
"funding": {
|
|
3058
|
+
"type": "opencollective",
|
|
3059
|
+
"url": "https://opencollective.com/parcel"
|
|
3060
|
+
}
|
|
3061
|
+
},
|
|
3062
|
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
3063
|
+
"version": "1.30.1",
|
|
3064
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz",
|
|
3065
|
+
"integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==",
|
|
3066
|
+
"cpu": [
|
|
3067
|
+
"arm"
|
|
3068
|
+
],
|
|
3069
|
+
"dev": true,
|
|
3070
|
+
"license": "MPL-2.0",
|
|
3071
|
+
"optional": true,
|
|
3072
|
+
"os": [
|
|
3073
|
+
"linux"
|
|
3074
|
+
],
|
|
3075
|
+
"engines": {
|
|
3076
|
+
"node": ">= 12.0.0"
|
|
3077
|
+
},
|
|
3078
|
+
"funding": {
|
|
3079
|
+
"type": "opencollective",
|
|
3080
|
+
"url": "https://opencollective.com/parcel"
|
|
3081
|
+
}
|
|
3082
|
+
},
|
|
3083
|
+
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
3084
|
+
"version": "1.30.1",
|
|
3085
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz",
|
|
3086
|
+
"integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==",
|
|
3087
|
+
"cpu": [
|
|
3088
|
+
"arm64"
|
|
3089
|
+
],
|
|
3090
|
+
"dev": true,
|
|
3091
|
+
"license": "MPL-2.0",
|
|
3092
|
+
"optional": true,
|
|
3093
|
+
"os": [
|
|
3094
|
+
"linux"
|
|
3095
|
+
],
|
|
3096
|
+
"engines": {
|
|
3097
|
+
"node": ">= 12.0.0"
|
|
3098
|
+
},
|
|
3099
|
+
"funding": {
|
|
3100
|
+
"type": "opencollective",
|
|
3101
|
+
"url": "https://opencollective.com/parcel"
|
|
3102
|
+
}
|
|
3103
|
+
},
|
|
3104
|
+
"node_modules/lightningcss-linux-arm64-musl": {
|
|
3105
|
+
"version": "1.30.1",
|
|
3106
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz",
|
|
3107
|
+
"integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==",
|
|
3108
|
+
"cpu": [
|
|
3109
|
+
"arm64"
|
|
3110
|
+
],
|
|
3111
|
+
"dev": true,
|
|
3112
|
+
"license": "MPL-2.0",
|
|
3113
|
+
"optional": true,
|
|
3114
|
+
"os": [
|
|
3115
|
+
"linux"
|
|
3116
|
+
],
|
|
3117
|
+
"engines": {
|
|
3118
|
+
"node": ">= 12.0.0"
|
|
3119
|
+
},
|
|
3120
|
+
"funding": {
|
|
3121
|
+
"type": "opencollective",
|
|
3122
|
+
"url": "https://opencollective.com/parcel"
|
|
3123
|
+
}
|
|
3124
|
+
},
|
|
3125
|
+
"node_modules/lightningcss-linux-x64-gnu": {
|
|
3126
|
+
"version": "1.30.1",
|
|
3127
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz",
|
|
3128
|
+
"integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==",
|
|
3129
|
+
"cpu": [
|
|
3130
|
+
"x64"
|
|
3131
|
+
],
|
|
3132
|
+
"dev": true,
|
|
3133
|
+
"license": "MPL-2.0",
|
|
3134
|
+
"optional": true,
|
|
3135
|
+
"os": [
|
|
3136
|
+
"linux"
|
|
3137
|
+
],
|
|
3138
|
+
"engines": {
|
|
3139
|
+
"node": ">= 12.0.0"
|
|
3140
|
+
},
|
|
3141
|
+
"funding": {
|
|
3142
|
+
"type": "opencollective",
|
|
3143
|
+
"url": "https://opencollective.com/parcel"
|
|
3144
|
+
}
|
|
3145
|
+
},
|
|
3146
|
+
"node_modules/lightningcss-linux-x64-musl": {
|
|
3147
|
+
"version": "1.30.1",
|
|
3148
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz",
|
|
3149
|
+
"integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==",
|
|
3150
|
+
"cpu": [
|
|
3151
|
+
"x64"
|
|
3152
|
+
],
|
|
3153
|
+
"dev": true,
|
|
3154
|
+
"license": "MPL-2.0",
|
|
3155
|
+
"optional": true,
|
|
3156
|
+
"os": [
|
|
3157
|
+
"linux"
|
|
3158
|
+
],
|
|
3159
|
+
"engines": {
|
|
3160
|
+
"node": ">= 12.0.0"
|
|
3161
|
+
},
|
|
3162
|
+
"funding": {
|
|
3163
|
+
"type": "opencollective",
|
|
3164
|
+
"url": "https://opencollective.com/parcel"
|
|
3165
|
+
}
|
|
3166
|
+
},
|
|
3167
|
+
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
3168
|
+
"version": "1.30.1",
|
|
3169
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz",
|
|
3170
|
+
"integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==",
|
|
3171
|
+
"cpu": [
|
|
3172
|
+
"arm64"
|
|
3173
|
+
],
|
|
3174
|
+
"dev": true,
|
|
3175
|
+
"license": "MPL-2.0",
|
|
3176
|
+
"optional": true,
|
|
3177
|
+
"os": [
|
|
3178
|
+
"win32"
|
|
3179
|
+
],
|
|
3180
|
+
"engines": {
|
|
3181
|
+
"node": ">= 12.0.0"
|
|
3182
|
+
},
|
|
3183
|
+
"funding": {
|
|
3184
|
+
"type": "opencollective",
|
|
3185
|
+
"url": "https://opencollective.com/parcel"
|
|
3186
|
+
}
|
|
3187
|
+
},
|
|
3188
|
+
"node_modules/lightningcss-win32-x64-msvc": {
|
|
3189
|
+
"version": "1.30.1",
|
|
3190
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz",
|
|
3191
|
+
"integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==",
|
|
3192
|
+
"cpu": [
|
|
3193
|
+
"x64"
|
|
3194
|
+
],
|
|
3195
|
+
"dev": true,
|
|
3196
|
+
"license": "MPL-2.0",
|
|
3197
|
+
"optional": true,
|
|
3198
|
+
"os": [
|
|
3199
|
+
"win32"
|
|
3200
|
+
],
|
|
3201
|
+
"engines": {
|
|
3202
|
+
"node": ">= 12.0.0"
|
|
3203
|
+
},
|
|
3204
|
+
"funding": {
|
|
3205
|
+
"type": "opencollective",
|
|
3206
|
+
"url": "https://opencollective.com/parcel"
|
|
3207
|
+
}
|
|
3208
|
+
},
|
|
3209
|
+
"node_modules/lodash": {
|
|
3210
|
+
"version": "4.17.21",
|
|
3211
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
3212
|
+
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
|
|
3213
|
+
"dev": true,
|
|
3214
|
+
"license": "MIT"
|
|
3215
|
+
},
|
|
3216
|
+
"node_modules/lru-cache": {
|
|
3217
|
+
"version": "5.1.1",
|
|
3218
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
|
3219
|
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
|
3220
|
+
"dev": true,
|
|
3221
|
+
"license": "ISC",
|
|
3222
|
+
"dependencies": {
|
|
3223
|
+
"yallist": "^3.0.2"
|
|
3224
|
+
}
|
|
3225
|
+
},
|
|
3226
|
+
"node_modules/magic-string": {
|
|
3227
|
+
"version": "0.30.17",
|
|
3228
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
|
|
3229
|
+
"integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
|
|
3230
|
+
"dev": true,
|
|
3231
|
+
"license": "MIT",
|
|
3232
|
+
"dependencies": {
|
|
3233
|
+
"@jridgewell/sourcemap-codec": "^1.5.0"
|
|
3234
|
+
}
|
|
3235
|
+
},
|
|
3236
|
+
"node_modules/math-intrinsics": {
|
|
3237
|
+
"version": "1.1.0",
|
|
3238
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
3239
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
3240
|
+
"license": "MIT",
|
|
3241
|
+
"engines": {
|
|
3242
|
+
"node": ">= 0.4"
|
|
3243
|
+
}
|
|
3244
|
+
},
|
|
3245
|
+
"node_modules/media-typer": {
|
|
3246
|
+
"version": "0.3.0",
|
|
3247
|
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
|
3248
|
+
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
|
|
3249
|
+
"license": "MIT",
|
|
3250
|
+
"engines": {
|
|
3251
|
+
"node": ">= 0.6"
|
|
3252
|
+
}
|
|
3253
|
+
},
|
|
3254
|
+
"node_modules/merge-descriptors": {
|
|
3255
|
+
"version": "1.0.3",
|
|
3256
|
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
|
|
3257
|
+
"integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
|
|
3258
|
+
"license": "MIT",
|
|
3259
|
+
"funding": {
|
|
3260
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3261
|
+
}
|
|
3262
|
+
},
|
|
3263
|
+
"node_modules/methods": {
|
|
3264
|
+
"version": "1.1.2",
|
|
3265
|
+
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
|
3266
|
+
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
|
|
3267
|
+
"license": "MIT",
|
|
3268
|
+
"engines": {
|
|
3269
|
+
"node": ">= 0.6"
|
|
3270
|
+
}
|
|
3271
|
+
},
|
|
3272
|
+
"node_modules/mime": {
|
|
3273
|
+
"version": "1.6.0",
|
|
3274
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
|
3275
|
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
3276
|
+
"license": "MIT",
|
|
3277
|
+
"bin": {
|
|
3278
|
+
"mime": "cli.js"
|
|
3279
|
+
},
|
|
3280
|
+
"engines": {
|
|
3281
|
+
"node": ">=4"
|
|
3282
|
+
}
|
|
3283
|
+
},
|
|
3284
|
+
"node_modules/mime-db": {
|
|
3285
|
+
"version": "1.54.0",
|
|
3286
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
|
|
3287
|
+
"integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
|
|
3288
|
+
"license": "MIT",
|
|
3289
|
+
"engines": {
|
|
3290
|
+
"node": ">= 0.6"
|
|
3291
|
+
}
|
|
3292
|
+
},
|
|
3293
|
+
"node_modules/mime-types": {
|
|
3294
|
+
"version": "2.1.35",
|
|
3295
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
3296
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
3297
|
+
"license": "MIT",
|
|
3298
|
+
"dependencies": {
|
|
3299
|
+
"mime-db": "1.52.0"
|
|
3300
|
+
},
|
|
3301
|
+
"engines": {
|
|
3302
|
+
"node": ">= 0.6"
|
|
3303
|
+
}
|
|
3304
|
+
},
|
|
3305
|
+
"node_modules/mime-types/node_modules/mime-db": {
|
|
3306
|
+
"version": "1.52.0",
|
|
3307
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
3308
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
3309
|
+
"license": "MIT",
|
|
3310
|
+
"engines": {
|
|
3311
|
+
"node": ">= 0.6"
|
|
3312
|
+
}
|
|
3313
|
+
},
|
|
3314
|
+
"node_modules/minimatch": {
|
|
3315
|
+
"version": "9.0.5",
|
|
3316
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
|
|
3317
|
+
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
|
|
3318
|
+
"dev": true,
|
|
3319
|
+
"license": "ISC",
|
|
3320
|
+
"dependencies": {
|
|
3321
|
+
"brace-expansion": "^2.0.1"
|
|
3322
|
+
},
|
|
3323
|
+
"engines": {
|
|
3324
|
+
"node": ">=16 || 14 >=14.17"
|
|
3325
|
+
},
|
|
3326
|
+
"funding": {
|
|
3327
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
3328
|
+
}
|
|
3329
|
+
},
|
|
3330
|
+
"node_modules/minipass": {
|
|
3331
|
+
"version": "7.1.2",
|
|
3332
|
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
|
|
3333
|
+
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
|
|
3334
|
+
"dev": true,
|
|
3335
|
+
"license": "ISC",
|
|
3336
|
+
"engines": {
|
|
3337
|
+
"node": ">=16 || 14 >=14.17"
|
|
3338
|
+
}
|
|
3339
|
+
},
|
|
3340
|
+
"node_modules/minizlib": {
|
|
3341
|
+
"version": "3.0.2",
|
|
3342
|
+
"resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.2.tgz",
|
|
3343
|
+
"integrity": "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==",
|
|
3344
|
+
"dev": true,
|
|
3345
|
+
"license": "MIT",
|
|
3346
|
+
"dependencies": {
|
|
3347
|
+
"minipass": "^7.1.2"
|
|
3348
|
+
},
|
|
3349
|
+
"engines": {
|
|
3350
|
+
"node": ">= 18"
|
|
3351
|
+
}
|
|
3352
|
+
},
|
|
3353
|
+
"node_modules/mkdirp": {
|
|
3354
|
+
"version": "3.0.1",
|
|
3355
|
+
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz",
|
|
3356
|
+
"integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==",
|
|
3357
|
+
"dev": true,
|
|
3358
|
+
"license": "MIT",
|
|
3359
|
+
"bin": {
|
|
3360
|
+
"mkdirp": "dist/cjs/src/bin.js"
|
|
3361
|
+
},
|
|
3362
|
+
"engines": {
|
|
3363
|
+
"node": ">=10"
|
|
3364
|
+
},
|
|
3365
|
+
"funding": {
|
|
3366
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
3367
|
+
}
|
|
3368
|
+
},
|
|
3369
|
+
"node_modules/morgan": {
|
|
3370
|
+
"version": "1.10.1",
|
|
3371
|
+
"resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.1.tgz",
|
|
3372
|
+
"integrity": "sha512-223dMRJtI/l25dJKWpgij2cMtywuG/WiUKXdvwfbhGKBhy1puASqXwFzmWZ7+K73vUPoR7SS2Qz2cI/g9MKw0A==",
|
|
3373
|
+
"license": "MIT",
|
|
3374
|
+
"dependencies": {
|
|
3375
|
+
"basic-auth": "~2.0.1",
|
|
3376
|
+
"debug": "2.6.9",
|
|
3377
|
+
"depd": "~2.0.0",
|
|
3378
|
+
"on-finished": "~2.3.0",
|
|
3379
|
+
"on-headers": "~1.1.0"
|
|
3380
|
+
},
|
|
3381
|
+
"engines": {
|
|
3382
|
+
"node": ">= 0.8.0"
|
|
3383
|
+
}
|
|
3384
|
+
},
|
|
3385
|
+
"node_modules/morgan/node_modules/debug": {
|
|
3386
|
+
"version": "2.6.9",
|
|
3387
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
3388
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
3389
|
+
"license": "MIT",
|
|
3390
|
+
"dependencies": {
|
|
3391
|
+
"ms": "2.0.0"
|
|
3392
|
+
}
|
|
3393
|
+
},
|
|
3394
|
+
"node_modules/morgan/node_modules/ms": {
|
|
3395
|
+
"version": "2.0.0",
|
|
3396
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
3397
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
3398
|
+
"license": "MIT"
|
|
3399
|
+
},
|
|
3400
|
+
"node_modules/morgan/node_modules/on-finished": {
|
|
3401
|
+
"version": "2.3.0",
|
|
3402
|
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
|
|
3403
|
+
"integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==",
|
|
3404
|
+
"license": "MIT",
|
|
3405
|
+
"dependencies": {
|
|
3406
|
+
"ee-first": "1.1.1"
|
|
3407
|
+
},
|
|
3408
|
+
"engines": {
|
|
3409
|
+
"node": ">= 0.8"
|
|
3410
|
+
}
|
|
3411
|
+
},
|
|
3412
|
+
"node_modules/ms": {
|
|
3413
|
+
"version": "2.1.3",
|
|
3414
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
3415
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
3416
|
+
"license": "MIT"
|
|
3417
|
+
},
|
|
3418
|
+
"node_modules/nanoid": {
|
|
3419
|
+
"version": "3.3.11",
|
|
3420
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
3421
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
3422
|
+
"dev": true,
|
|
3423
|
+
"funding": [
|
|
3424
|
+
{
|
|
3425
|
+
"type": "github",
|
|
3426
|
+
"url": "https://github.com/sponsors/ai"
|
|
3427
|
+
}
|
|
3428
|
+
],
|
|
3429
|
+
"license": "MIT",
|
|
3430
|
+
"bin": {
|
|
3431
|
+
"nanoid": "bin/nanoid.cjs"
|
|
3432
|
+
},
|
|
3433
|
+
"engines": {
|
|
3434
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
3435
|
+
}
|
|
3436
|
+
},
|
|
3437
|
+
"node_modules/negotiator": {
|
|
3438
|
+
"version": "0.6.4",
|
|
3439
|
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz",
|
|
3440
|
+
"integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==",
|
|
3441
|
+
"license": "MIT",
|
|
3442
|
+
"engines": {
|
|
3443
|
+
"node": ">= 0.6"
|
|
3444
|
+
}
|
|
3445
|
+
},
|
|
3446
|
+
"node_modules/node-releases": {
|
|
3447
|
+
"version": "2.0.19",
|
|
3448
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
|
|
3449
|
+
"integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
|
|
3450
|
+
"dev": true,
|
|
3451
|
+
"license": "MIT"
|
|
3452
|
+
},
|
|
3453
|
+
"node_modules/normalize-package-data": {
|
|
3454
|
+
"version": "5.0.0",
|
|
3455
|
+
"resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz",
|
|
3456
|
+
"integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==",
|
|
3457
|
+
"dev": true,
|
|
3458
|
+
"license": "BSD-2-Clause",
|
|
3459
|
+
"dependencies": {
|
|
3460
|
+
"hosted-git-info": "^6.0.0",
|
|
3461
|
+
"is-core-module": "^2.8.1",
|
|
3462
|
+
"semver": "^7.3.5",
|
|
3463
|
+
"validate-npm-package-license": "^3.0.4"
|
|
3464
|
+
},
|
|
3465
|
+
"engines": {
|
|
3466
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
3467
|
+
}
|
|
3468
|
+
},
|
|
3469
|
+
"node_modules/npm-install-checks": {
|
|
3470
|
+
"version": "6.3.0",
|
|
3471
|
+
"resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz",
|
|
3472
|
+
"integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==",
|
|
3473
|
+
"dev": true,
|
|
3474
|
+
"license": "BSD-2-Clause",
|
|
3475
|
+
"dependencies": {
|
|
3476
|
+
"semver": "^7.1.1"
|
|
3477
|
+
},
|
|
3478
|
+
"engines": {
|
|
3479
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
3480
|
+
}
|
|
3481
|
+
},
|
|
3482
|
+
"node_modules/npm-normalize-package-bin": {
|
|
3483
|
+
"version": "3.0.1",
|
|
3484
|
+
"resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz",
|
|
3485
|
+
"integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==",
|
|
3486
|
+
"dev": true,
|
|
3487
|
+
"license": "ISC",
|
|
3488
|
+
"engines": {
|
|
3489
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
3490
|
+
}
|
|
3491
|
+
},
|
|
3492
|
+
"node_modules/npm-package-arg": {
|
|
3493
|
+
"version": "10.1.0",
|
|
3494
|
+
"resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz",
|
|
3495
|
+
"integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==",
|
|
3496
|
+
"dev": true,
|
|
3497
|
+
"license": "ISC",
|
|
3498
|
+
"dependencies": {
|
|
3499
|
+
"hosted-git-info": "^6.0.0",
|
|
3500
|
+
"proc-log": "^3.0.0",
|
|
3501
|
+
"semver": "^7.3.5",
|
|
3502
|
+
"validate-npm-package-name": "^5.0.0"
|
|
3503
|
+
},
|
|
3504
|
+
"engines": {
|
|
3505
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
3506
|
+
}
|
|
3507
|
+
},
|
|
3508
|
+
"node_modules/npm-pick-manifest": {
|
|
3509
|
+
"version": "8.0.2",
|
|
3510
|
+
"resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.2.tgz",
|
|
3511
|
+
"integrity": "sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==",
|
|
3512
|
+
"dev": true,
|
|
3513
|
+
"license": "ISC",
|
|
3514
|
+
"dependencies": {
|
|
3515
|
+
"npm-install-checks": "^6.0.0",
|
|
3516
|
+
"npm-normalize-package-bin": "^3.0.0",
|
|
3517
|
+
"npm-package-arg": "^10.0.0",
|
|
3518
|
+
"semver": "^7.3.5"
|
|
3519
|
+
},
|
|
3520
|
+
"engines": {
|
|
3521
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
3522
|
+
}
|
|
3523
|
+
},
|
|
3524
|
+
"node_modules/object-inspect": {
|
|
3525
|
+
"version": "1.13.4",
|
|
3526
|
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
|
|
3527
|
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
3528
|
+
"license": "MIT",
|
|
3529
|
+
"engines": {
|
|
3530
|
+
"node": ">= 0.4"
|
|
3531
|
+
},
|
|
3532
|
+
"funding": {
|
|
3533
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3534
|
+
}
|
|
3535
|
+
},
|
|
3536
|
+
"node_modules/on-finished": {
|
|
3537
|
+
"version": "2.4.1",
|
|
3538
|
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
|
3539
|
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
3540
|
+
"license": "MIT",
|
|
3541
|
+
"dependencies": {
|
|
3542
|
+
"ee-first": "1.1.1"
|
|
3543
|
+
},
|
|
3544
|
+
"engines": {
|
|
3545
|
+
"node": ">= 0.8"
|
|
3546
|
+
}
|
|
3547
|
+
},
|
|
3548
|
+
"node_modules/on-headers": {
|
|
3549
|
+
"version": "1.1.0",
|
|
3550
|
+
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz",
|
|
3551
|
+
"integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==",
|
|
3552
|
+
"license": "MIT",
|
|
3553
|
+
"engines": {
|
|
3554
|
+
"node": ">= 0.8"
|
|
3555
|
+
}
|
|
3556
|
+
},
|
|
3557
|
+
"node_modules/package-json-from-dist": {
|
|
3558
|
+
"version": "1.0.1",
|
|
3559
|
+
"resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
|
|
3560
|
+
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
|
|
3561
|
+
"dev": true,
|
|
3562
|
+
"license": "BlueOak-1.0.0"
|
|
3563
|
+
},
|
|
3564
|
+
"node_modules/parseurl": {
|
|
3565
|
+
"version": "1.3.3",
|
|
3566
|
+
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
|
3567
|
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
|
3568
|
+
"license": "MIT",
|
|
3569
|
+
"engines": {
|
|
3570
|
+
"node": ">= 0.8"
|
|
3571
|
+
}
|
|
3572
|
+
},
|
|
3573
|
+
"node_modules/path-key": {
|
|
3574
|
+
"version": "3.1.1",
|
|
3575
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
3576
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
3577
|
+
"dev": true,
|
|
3578
|
+
"license": "MIT",
|
|
3579
|
+
"engines": {
|
|
3580
|
+
"node": ">=8"
|
|
3581
|
+
}
|
|
3582
|
+
},
|
|
3583
|
+
"node_modules/path-scurry": {
|
|
3584
|
+
"version": "1.11.1",
|
|
3585
|
+
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
|
|
3586
|
+
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
|
|
3587
|
+
"dev": true,
|
|
3588
|
+
"license": "BlueOak-1.0.0",
|
|
3589
|
+
"dependencies": {
|
|
3590
|
+
"lru-cache": "^10.2.0",
|
|
3591
|
+
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
|
3592
|
+
},
|
|
3593
|
+
"engines": {
|
|
3594
|
+
"node": ">=16 || 14 >=14.18"
|
|
3595
|
+
},
|
|
3596
|
+
"funding": {
|
|
3597
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
3598
|
+
}
|
|
3599
|
+
},
|
|
3600
|
+
"node_modules/path-scurry/node_modules/lru-cache": {
|
|
3601
|
+
"version": "10.4.3",
|
|
3602
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
|
|
3603
|
+
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
|
|
3604
|
+
"dev": true,
|
|
3605
|
+
"license": "ISC"
|
|
3606
|
+
},
|
|
3607
|
+
"node_modules/path-to-regexp": {
|
|
3608
|
+
"version": "0.1.12",
|
|
3609
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
|
|
3610
|
+
"integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
|
|
3611
|
+
"license": "MIT"
|
|
3612
|
+
},
|
|
3613
|
+
"node_modules/pathe": {
|
|
3614
|
+
"version": "1.1.2",
|
|
3615
|
+
"resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
|
|
3616
|
+
"integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
|
|
3617
|
+
"dev": true,
|
|
3618
|
+
"license": "MIT"
|
|
3619
|
+
},
|
|
3620
|
+
"node_modules/picocolors": {
|
|
3621
|
+
"version": "1.1.1",
|
|
3622
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
3623
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
3624
|
+
"dev": true,
|
|
3625
|
+
"license": "ISC"
|
|
3626
|
+
},
|
|
3627
|
+
"node_modules/picomatch": {
|
|
3628
|
+
"version": "4.0.3",
|
|
3629
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
|
3630
|
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
3631
|
+
"dev": true,
|
|
3632
|
+
"license": "MIT",
|
|
3633
|
+
"engines": {
|
|
3634
|
+
"node": ">=12"
|
|
3635
|
+
},
|
|
3636
|
+
"funding": {
|
|
3637
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
3638
|
+
}
|
|
3639
|
+
},
|
|
3640
|
+
"node_modules/postcss": {
|
|
3641
|
+
"version": "8.5.6",
|
|
3642
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
3643
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
3644
|
+
"dev": true,
|
|
3645
|
+
"funding": [
|
|
3646
|
+
{
|
|
3647
|
+
"type": "opencollective",
|
|
3648
|
+
"url": "https://opencollective.com/postcss/"
|
|
3649
|
+
},
|
|
3650
|
+
{
|
|
3651
|
+
"type": "tidelift",
|
|
3652
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
3653
|
+
},
|
|
3654
|
+
{
|
|
3655
|
+
"type": "github",
|
|
3656
|
+
"url": "https://github.com/sponsors/ai"
|
|
3657
|
+
}
|
|
3658
|
+
],
|
|
3659
|
+
"license": "MIT",
|
|
3660
|
+
"dependencies": {
|
|
3661
|
+
"nanoid": "^3.3.11",
|
|
3662
|
+
"picocolors": "^1.1.1",
|
|
3663
|
+
"source-map-js": "^1.2.1"
|
|
3664
|
+
},
|
|
3665
|
+
"engines": {
|
|
3666
|
+
"node": "^10 || ^12 || >=14"
|
|
3667
|
+
}
|
|
3668
|
+
},
|
|
3669
|
+
"node_modules/prettier": {
|
|
3670
|
+
"version": "3.6.2",
|
|
3671
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
|
|
3672
|
+
"integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
|
|
3673
|
+
"dev": true,
|
|
3674
|
+
"license": "MIT",
|
|
3675
|
+
"bin": {
|
|
3676
|
+
"prettier": "bin/prettier.cjs"
|
|
3677
|
+
},
|
|
3678
|
+
"engines": {
|
|
3679
|
+
"node": ">=14"
|
|
3680
|
+
},
|
|
3681
|
+
"funding": {
|
|
3682
|
+
"url": "https://github.com/prettier/prettier?sponsor=1"
|
|
3683
|
+
}
|
|
3684
|
+
},
|
|
3685
|
+
"node_modules/proc-log": {
|
|
3686
|
+
"version": "3.0.0",
|
|
3687
|
+
"resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz",
|
|
3688
|
+
"integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==",
|
|
3689
|
+
"dev": true,
|
|
3690
|
+
"license": "ISC",
|
|
3691
|
+
"engines": {
|
|
3692
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
3693
|
+
}
|
|
3694
|
+
},
|
|
3695
|
+
"node_modules/promise-inflight": {
|
|
3696
|
+
"version": "1.0.1",
|
|
3697
|
+
"resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
|
|
3698
|
+
"integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==",
|
|
3699
|
+
"dev": true,
|
|
3700
|
+
"license": "ISC"
|
|
3701
|
+
},
|
|
3702
|
+
"node_modules/promise-retry": {
|
|
3703
|
+
"version": "2.0.1",
|
|
3704
|
+
"resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
|
|
3705
|
+
"integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
|
|
3706
|
+
"dev": true,
|
|
3707
|
+
"license": "MIT",
|
|
3708
|
+
"dependencies": {
|
|
3709
|
+
"err-code": "^2.0.2",
|
|
3710
|
+
"retry": "^0.12.0"
|
|
3711
|
+
},
|
|
3712
|
+
"engines": {
|
|
3713
|
+
"node": ">=10"
|
|
3714
|
+
}
|
|
3715
|
+
},
|
|
3716
|
+
"node_modules/proxy-addr": {
|
|
3717
|
+
"version": "2.0.7",
|
|
3718
|
+
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
|
3719
|
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
|
3720
|
+
"license": "MIT",
|
|
3721
|
+
"dependencies": {
|
|
3722
|
+
"forwarded": "0.2.0",
|
|
3723
|
+
"ipaddr.js": "1.9.1"
|
|
3724
|
+
},
|
|
3725
|
+
"engines": {
|
|
3726
|
+
"node": ">= 0.10"
|
|
3727
|
+
}
|
|
3728
|
+
},
|
|
3729
|
+
"node_modules/qs": {
|
|
3730
|
+
"version": "6.13.0",
|
|
3731
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
|
|
3732
|
+
"integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
|
|
3733
|
+
"license": "BSD-3-Clause",
|
|
3734
|
+
"dependencies": {
|
|
3735
|
+
"side-channel": "^1.0.6"
|
|
3736
|
+
},
|
|
3737
|
+
"engines": {
|
|
3738
|
+
"node": ">=0.6"
|
|
3739
|
+
},
|
|
3740
|
+
"funding": {
|
|
3741
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3742
|
+
}
|
|
3743
|
+
},
|
|
3744
|
+
"node_modules/range-parser": {
|
|
3745
|
+
"version": "1.2.1",
|
|
3746
|
+
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
|
3747
|
+
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
|
3748
|
+
"license": "MIT",
|
|
3749
|
+
"engines": {
|
|
3750
|
+
"node": ">= 0.6"
|
|
3751
|
+
}
|
|
3752
|
+
},
|
|
3753
|
+
"node_modules/raw-body": {
|
|
3754
|
+
"version": "2.5.2",
|
|
3755
|
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
|
|
3756
|
+
"integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
|
|
3757
|
+
"license": "MIT",
|
|
3758
|
+
"dependencies": {
|
|
3759
|
+
"bytes": "3.1.2",
|
|
3760
|
+
"http-errors": "2.0.0",
|
|
3761
|
+
"iconv-lite": "0.4.24",
|
|
3762
|
+
"unpipe": "1.0.0"
|
|
3763
|
+
},
|
|
3764
|
+
"engines": {
|
|
3765
|
+
"node": ">= 0.8"
|
|
3766
|
+
}
|
|
3767
|
+
},
|
|
3768
|
+
"node_modules/react": {
|
|
3769
|
+
"version": "19.1.1",
|
|
3770
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.1.1.tgz",
|
|
3771
|
+
"integrity": "sha512-w8nqGImo45dmMIfljjMwOGtbmC/mk4CMYhWIicdSflH91J9TyCyczcPFXJzrZ/ZXcgGRFeP6BU0BEJTw6tZdfQ==",
|
|
3772
|
+
"license": "MIT",
|
|
3773
|
+
"engines": {
|
|
3774
|
+
"node": ">=0.10.0"
|
|
3775
|
+
}
|
|
3776
|
+
},
|
|
3777
|
+
"node_modules/react-dom": {
|
|
3778
|
+
"version": "19.1.1",
|
|
3779
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.1.tgz",
|
|
3780
|
+
"integrity": "sha512-Dlq/5LAZgF0Gaz6yiqZCf6VCcZs1ghAJyrsu84Q/GT0gV+mCxbfmKNoGRKBYMJ8IEdGPqu49YWXD02GCknEDkw==",
|
|
3781
|
+
"license": "MIT",
|
|
3782
|
+
"dependencies": {
|
|
3783
|
+
"scheduler": "^0.26.0"
|
|
3784
|
+
},
|
|
3785
|
+
"peerDependencies": {
|
|
3786
|
+
"react": "^19.1.1"
|
|
3787
|
+
}
|
|
3788
|
+
},
|
|
3789
|
+
"node_modules/react-refresh": {
|
|
3790
|
+
"version": "0.14.2",
|
|
3791
|
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz",
|
|
3792
|
+
"integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==",
|
|
3793
|
+
"dev": true,
|
|
3794
|
+
"license": "MIT",
|
|
3795
|
+
"engines": {
|
|
3796
|
+
"node": ">=0.10.0"
|
|
3797
|
+
}
|
|
3798
|
+
},
|
|
3799
|
+
"node_modules/react-router": {
|
|
3800
|
+
"version": "7.7.1",
|
|
3801
|
+
"resolved": "https://registry.npmjs.org/react-router/-/react-router-7.7.1.tgz",
|
|
3802
|
+
"integrity": "sha512-jVKHXoWRIsD/qS6lvGveckwb862EekvapdHJN/cGmzw40KnJH5gg53ujOJ4qX6EKIK9LSBfFed/xiQ5yeXNrUA==",
|
|
3803
|
+
"license": "MIT",
|
|
3804
|
+
"dependencies": {
|
|
3805
|
+
"cookie": "^1.0.1",
|
|
3806
|
+
"set-cookie-parser": "^2.6.0"
|
|
3807
|
+
},
|
|
3808
|
+
"engines": {
|
|
3809
|
+
"node": ">=20.0.0"
|
|
3810
|
+
},
|
|
3811
|
+
"peerDependencies": {
|
|
3812
|
+
"react": ">=18",
|
|
3813
|
+
"react-dom": ">=18"
|
|
3814
|
+
},
|
|
3815
|
+
"peerDependenciesMeta": {
|
|
3816
|
+
"react-dom": {
|
|
3817
|
+
"optional": true
|
|
3818
|
+
}
|
|
3819
|
+
}
|
|
3820
|
+
},
|
|
3821
|
+
"node_modules/react-router/node_modules/cookie": {
|
|
3822
|
+
"version": "1.0.2",
|
|
3823
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz",
|
|
3824
|
+
"integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==",
|
|
3825
|
+
"license": "MIT",
|
|
3826
|
+
"engines": {
|
|
3827
|
+
"node": ">=18"
|
|
3828
|
+
}
|
|
3829
|
+
},
|
|
3830
|
+
"node_modules/readdirp": {
|
|
3831
|
+
"version": "4.1.2",
|
|
3832
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
|
|
3833
|
+
"integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
|
|
3834
|
+
"dev": true,
|
|
3835
|
+
"license": "MIT",
|
|
3836
|
+
"engines": {
|
|
3837
|
+
"node": ">= 14.18.0"
|
|
3838
|
+
},
|
|
3839
|
+
"funding": {
|
|
3840
|
+
"type": "individual",
|
|
3841
|
+
"url": "https://paulmillr.com/funding/"
|
|
3842
|
+
}
|
|
3843
|
+
},
|
|
3844
|
+
"node_modules/retry": {
|
|
3845
|
+
"version": "0.12.0",
|
|
3846
|
+
"resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
|
|
3847
|
+
"integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
|
|
3848
|
+
"dev": true,
|
|
3849
|
+
"license": "MIT",
|
|
3850
|
+
"engines": {
|
|
3851
|
+
"node": ">= 4"
|
|
3852
|
+
}
|
|
3853
|
+
},
|
|
3854
|
+
"node_modules/rollup": {
|
|
3855
|
+
"version": "4.46.1",
|
|
3856
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.46.1.tgz",
|
|
3857
|
+
"integrity": "sha512-33xGNBsDJAkzt0PvninskHlWnTIPgDtTwhg0U38CUoNP/7H6wI2Cz6dUeoNPbjdTdsYTGuiFFASuUOWovH0SyQ==",
|
|
3858
|
+
"dev": true,
|
|
3859
|
+
"license": "MIT",
|
|
3860
|
+
"dependencies": {
|
|
3861
|
+
"@types/estree": "1.0.8"
|
|
3862
|
+
},
|
|
3863
|
+
"bin": {
|
|
3864
|
+
"rollup": "dist/bin/rollup"
|
|
3865
|
+
},
|
|
3866
|
+
"engines": {
|
|
3867
|
+
"node": ">=18.0.0",
|
|
3868
|
+
"npm": ">=8.0.0"
|
|
3869
|
+
},
|
|
3870
|
+
"optionalDependencies": {
|
|
3871
|
+
"@rollup/rollup-android-arm-eabi": "4.46.1",
|
|
3872
|
+
"@rollup/rollup-android-arm64": "4.46.1",
|
|
3873
|
+
"@rollup/rollup-darwin-arm64": "4.46.1",
|
|
3874
|
+
"@rollup/rollup-darwin-x64": "4.46.1",
|
|
3875
|
+
"@rollup/rollup-freebsd-arm64": "4.46.1",
|
|
3876
|
+
"@rollup/rollup-freebsd-x64": "4.46.1",
|
|
3877
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.46.1",
|
|
3878
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.46.1",
|
|
3879
|
+
"@rollup/rollup-linux-arm64-gnu": "4.46.1",
|
|
3880
|
+
"@rollup/rollup-linux-arm64-musl": "4.46.1",
|
|
3881
|
+
"@rollup/rollup-linux-loongarch64-gnu": "4.46.1",
|
|
3882
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.46.1",
|
|
3883
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.46.1",
|
|
3884
|
+
"@rollup/rollup-linux-riscv64-musl": "4.46.1",
|
|
3885
|
+
"@rollup/rollup-linux-s390x-gnu": "4.46.1",
|
|
3886
|
+
"@rollup/rollup-linux-x64-gnu": "4.46.1",
|
|
3887
|
+
"@rollup/rollup-linux-x64-musl": "4.46.1",
|
|
3888
|
+
"@rollup/rollup-win32-arm64-msvc": "4.46.1",
|
|
3889
|
+
"@rollup/rollup-win32-ia32-msvc": "4.46.1",
|
|
3890
|
+
"@rollup/rollup-win32-x64-msvc": "4.46.1",
|
|
3891
|
+
"fsevents": "~2.3.2"
|
|
3892
|
+
}
|
|
3893
|
+
},
|
|
3894
|
+
"node_modules/safe-buffer": {
|
|
3895
|
+
"version": "5.2.1",
|
|
3896
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
3897
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
3898
|
+
"funding": [
|
|
3899
|
+
{
|
|
3900
|
+
"type": "github",
|
|
3901
|
+
"url": "https://github.com/sponsors/feross"
|
|
3902
|
+
},
|
|
3903
|
+
{
|
|
3904
|
+
"type": "patreon",
|
|
3905
|
+
"url": "https://www.patreon.com/feross"
|
|
3906
|
+
},
|
|
3907
|
+
{
|
|
3908
|
+
"type": "consulting",
|
|
3909
|
+
"url": "https://feross.org/support"
|
|
3910
|
+
}
|
|
3911
|
+
],
|
|
3912
|
+
"license": "MIT"
|
|
3913
|
+
},
|
|
3914
|
+
"node_modules/safer-buffer": {
|
|
3915
|
+
"version": "2.1.2",
|
|
3916
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
3917
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
3918
|
+
"license": "MIT"
|
|
3919
|
+
},
|
|
3920
|
+
"node_modules/scheduler": {
|
|
3921
|
+
"version": "0.26.0",
|
|
3922
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz",
|
|
3923
|
+
"integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==",
|
|
3924
|
+
"license": "MIT"
|
|
3925
|
+
},
|
|
3926
|
+
"node_modules/semver": {
|
|
3927
|
+
"version": "7.7.2",
|
|
3928
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
|
|
3929
|
+
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
|
|
3930
|
+
"dev": true,
|
|
3931
|
+
"license": "ISC",
|
|
3932
|
+
"bin": {
|
|
3933
|
+
"semver": "bin/semver.js"
|
|
3934
|
+
},
|
|
3935
|
+
"engines": {
|
|
3936
|
+
"node": ">=10"
|
|
3937
|
+
}
|
|
3938
|
+
},
|
|
3939
|
+
"node_modules/send": {
|
|
3940
|
+
"version": "0.19.0",
|
|
3941
|
+
"resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
|
|
3942
|
+
"integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
|
|
3943
|
+
"license": "MIT",
|
|
3944
|
+
"dependencies": {
|
|
3945
|
+
"debug": "2.6.9",
|
|
3946
|
+
"depd": "2.0.0",
|
|
3947
|
+
"destroy": "1.2.0",
|
|
3948
|
+
"encodeurl": "~1.0.2",
|
|
3949
|
+
"escape-html": "~1.0.3",
|
|
3950
|
+
"etag": "~1.8.1",
|
|
3951
|
+
"fresh": "0.5.2",
|
|
3952
|
+
"http-errors": "2.0.0",
|
|
3953
|
+
"mime": "1.6.0",
|
|
3954
|
+
"ms": "2.1.3",
|
|
3955
|
+
"on-finished": "2.4.1",
|
|
3956
|
+
"range-parser": "~1.2.1",
|
|
3957
|
+
"statuses": "2.0.1"
|
|
3958
|
+
},
|
|
3959
|
+
"engines": {
|
|
3960
|
+
"node": ">= 0.8.0"
|
|
3961
|
+
}
|
|
3962
|
+
},
|
|
3963
|
+
"node_modules/send/node_modules/debug": {
|
|
3964
|
+
"version": "2.6.9",
|
|
3965
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
3966
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
3967
|
+
"license": "MIT",
|
|
3968
|
+
"dependencies": {
|
|
3969
|
+
"ms": "2.0.0"
|
|
3970
|
+
}
|
|
3971
|
+
},
|
|
3972
|
+
"node_modules/send/node_modules/debug/node_modules/ms": {
|
|
3973
|
+
"version": "2.0.0",
|
|
3974
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
3975
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
3976
|
+
"license": "MIT"
|
|
3977
|
+
},
|
|
3978
|
+
"node_modules/send/node_modules/encodeurl": {
|
|
3979
|
+
"version": "1.0.2",
|
|
3980
|
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
|
|
3981
|
+
"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
|
|
3982
|
+
"license": "MIT",
|
|
3983
|
+
"engines": {
|
|
3984
|
+
"node": ">= 0.8"
|
|
3985
|
+
}
|
|
3986
|
+
},
|
|
3987
|
+
"node_modules/serve-static": {
|
|
3988
|
+
"version": "1.16.2",
|
|
3989
|
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
|
|
3990
|
+
"integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
|
|
3991
|
+
"license": "MIT",
|
|
3992
|
+
"dependencies": {
|
|
3993
|
+
"encodeurl": "~2.0.0",
|
|
3994
|
+
"escape-html": "~1.0.3",
|
|
3995
|
+
"parseurl": "~1.3.3",
|
|
3996
|
+
"send": "0.19.0"
|
|
3997
|
+
},
|
|
3998
|
+
"engines": {
|
|
3999
|
+
"node": ">= 0.8.0"
|
|
4000
|
+
}
|
|
4001
|
+
},
|
|
4002
|
+
"node_modules/set-cookie-parser": {
|
|
4003
|
+
"version": "2.7.1",
|
|
4004
|
+
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz",
|
|
4005
|
+
"integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==",
|
|
4006
|
+
"license": "MIT"
|
|
4007
|
+
},
|
|
4008
|
+
"node_modules/setprototypeof": {
|
|
4009
|
+
"version": "1.2.0",
|
|
4010
|
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
4011
|
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
|
4012
|
+
"license": "ISC"
|
|
4013
|
+
},
|
|
4014
|
+
"node_modules/shebang-command": {
|
|
4015
|
+
"version": "2.0.0",
|
|
4016
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
4017
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
4018
|
+
"dev": true,
|
|
4019
|
+
"license": "MIT",
|
|
4020
|
+
"dependencies": {
|
|
4021
|
+
"shebang-regex": "^3.0.0"
|
|
4022
|
+
},
|
|
4023
|
+
"engines": {
|
|
4024
|
+
"node": ">=8"
|
|
4025
|
+
}
|
|
4026
|
+
},
|
|
4027
|
+
"node_modules/shebang-regex": {
|
|
4028
|
+
"version": "3.0.0",
|
|
4029
|
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
4030
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
4031
|
+
"dev": true,
|
|
4032
|
+
"license": "MIT",
|
|
4033
|
+
"engines": {
|
|
4034
|
+
"node": ">=8"
|
|
4035
|
+
}
|
|
4036
|
+
},
|
|
4037
|
+
"node_modules/side-channel": {
|
|
4038
|
+
"version": "1.1.0",
|
|
4039
|
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
|
4040
|
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
|
4041
|
+
"license": "MIT",
|
|
4042
|
+
"dependencies": {
|
|
4043
|
+
"es-errors": "^1.3.0",
|
|
4044
|
+
"object-inspect": "^1.13.3",
|
|
4045
|
+
"side-channel-list": "^1.0.0",
|
|
4046
|
+
"side-channel-map": "^1.0.1",
|
|
4047
|
+
"side-channel-weakmap": "^1.0.2"
|
|
4048
|
+
},
|
|
4049
|
+
"engines": {
|
|
4050
|
+
"node": ">= 0.4"
|
|
4051
|
+
},
|
|
4052
|
+
"funding": {
|
|
4053
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4054
|
+
}
|
|
4055
|
+
},
|
|
4056
|
+
"node_modules/side-channel-list": {
|
|
4057
|
+
"version": "1.0.0",
|
|
4058
|
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
|
4059
|
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
|
4060
|
+
"license": "MIT",
|
|
4061
|
+
"dependencies": {
|
|
4062
|
+
"es-errors": "^1.3.0",
|
|
4063
|
+
"object-inspect": "^1.13.3"
|
|
4064
|
+
},
|
|
4065
|
+
"engines": {
|
|
4066
|
+
"node": ">= 0.4"
|
|
4067
|
+
},
|
|
4068
|
+
"funding": {
|
|
4069
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4070
|
+
}
|
|
4071
|
+
},
|
|
4072
|
+
"node_modules/side-channel-map": {
|
|
4073
|
+
"version": "1.0.1",
|
|
4074
|
+
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
|
4075
|
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
|
4076
|
+
"license": "MIT",
|
|
4077
|
+
"dependencies": {
|
|
4078
|
+
"call-bound": "^1.0.2",
|
|
4079
|
+
"es-errors": "^1.3.0",
|
|
4080
|
+
"get-intrinsic": "^1.2.5",
|
|
4081
|
+
"object-inspect": "^1.13.3"
|
|
4082
|
+
},
|
|
4083
|
+
"engines": {
|
|
4084
|
+
"node": ">= 0.4"
|
|
4085
|
+
},
|
|
4086
|
+
"funding": {
|
|
4087
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4088
|
+
}
|
|
4089
|
+
},
|
|
4090
|
+
"node_modules/side-channel-weakmap": {
|
|
4091
|
+
"version": "1.0.2",
|
|
4092
|
+
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
|
4093
|
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
|
4094
|
+
"license": "MIT",
|
|
4095
|
+
"dependencies": {
|
|
4096
|
+
"call-bound": "^1.0.2",
|
|
4097
|
+
"es-errors": "^1.3.0",
|
|
4098
|
+
"get-intrinsic": "^1.2.5",
|
|
4099
|
+
"object-inspect": "^1.13.3",
|
|
4100
|
+
"side-channel-map": "^1.0.1"
|
|
4101
|
+
},
|
|
4102
|
+
"engines": {
|
|
4103
|
+
"node": ">= 0.4"
|
|
4104
|
+
},
|
|
4105
|
+
"funding": {
|
|
4106
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4107
|
+
}
|
|
4108
|
+
},
|
|
4109
|
+
"node_modules/signal-exit": {
|
|
4110
|
+
"version": "4.1.0",
|
|
4111
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
4112
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
4113
|
+
"dev": true,
|
|
4114
|
+
"license": "ISC",
|
|
4115
|
+
"engines": {
|
|
4116
|
+
"node": ">=14"
|
|
4117
|
+
},
|
|
4118
|
+
"funding": {
|
|
4119
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
4120
|
+
}
|
|
4121
|
+
},
|
|
4122
|
+
"node_modules/source-map": {
|
|
4123
|
+
"version": "0.6.1",
|
|
4124
|
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
|
4125
|
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
4126
|
+
"license": "BSD-3-Clause",
|
|
4127
|
+
"engines": {
|
|
4128
|
+
"node": ">=0.10.0"
|
|
4129
|
+
}
|
|
4130
|
+
},
|
|
4131
|
+
"node_modules/source-map-js": {
|
|
4132
|
+
"version": "1.2.1",
|
|
4133
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
4134
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
4135
|
+
"dev": true,
|
|
4136
|
+
"license": "BSD-3-Clause",
|
|
4137
|
+
"engines": {
|
|
4138
|
+
"node": ">=0.10.0"
|
|
4139
|
+
}
|
|
4140
|
+
},
|
|
4141
|
+
"node_modules/source-map-support": {
|
|
4142
|
+
"version": "0.5.21",
|
|
4143
|
+
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
|
|
4144
|
+
"integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
|
|
4145
|
+
"license": "MIT",
|
|
4146
|
+
"dependencies": {
|
|
4147
|
+
"buffer-from": "^1.0.0",
|
|
4148
|
+
"source-map": "^0.6.0"
|
|
4149
|
+
}
|
|
4150
|
+
},
|
|
4151
|
+
"node_modules/spdx-correct": {
|
|
4152
|
+
"version": "3.2.0",
|
|
4153
|
+
"resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
|
|
4154
|
+
"integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
|
|
4155
|
+
"dev": true,
|
|
4156
|
+
"license": "Apache-2.0",
|
|
4157
|
+
"dependencies": {
|
|
4158
|
+
"spdx-expression-parse": "^3.0.0",
|
|
4159
|
+
"spdx-license-ids": "^3.0.0"
|
|
4160
|
+
}
|
|
4161
|
+
},
|
|
4162
|
+
"node_modules/spdx-exceptions": {
|
|
4163
|
+
"version": "2.5.0",
|
|
4164
|
+
"resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
|
|
4165
|
+
"integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==",
|
|
4166
|
+
"dev": true,
|
|
4167
|
+
"license": "CC-BY-3.0"
|
|
4168
|
+
},
|
|
4169
|
+
"node_modules/spdx-expression-parse": {
|
|
4170
|
+
"version": "3.0.1",
|
|
4171
|
+
"resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
|
|
4172
|
+
"integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
|
|
4173
|
+
"dev": true,
|
|
4174
|
+
"license": "MIT",
|
|
4175
|
+
"dependencies": {
|
|
4176
|
+
"spdx-exceptions": "^2.1.0",
|
|
4177
|
+
"spdx-license-ids": "^3.0.0"
|
|
4178
|
+
}
|
|
4179
|
+
},
|
|
4180
|
+
"node_modules/spdx-license-ids": {
|
|
4181
|
+
"version": "3.0.21",
|
|
4182
|
+
"resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz",
|
|
4183
|
+
"integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==",
|
|
4184
|
+
"dev": true,
|
|
4185
|
+
"license": "CC0-1.0"
|
|
4186
|
+
},
|
|
4187
|
+
"node_modules/statuses": {
|
|
4188
|
+
"version": "2.0.1",
|
|
4189
|
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
|
|
4190
|
+
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
|
|
4191
|
+
"license": "MIT",
|
|
4192
|
+
"engines": {
|
|
4193
|
+
"node": ">= 0.8"
|
|
4194
|
+
}
|
|
4195
|
+
},
|
|
4196
|
+
"node_modules/string-width": {
|
|
4197
|
+
"version": "5.1.2",
|
|
4198
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
|
|
4199
|
+
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
|
4200
|
+
"dev": true,
|
|
4201
|
+
"license": "MIT",
|
|
4202
|
+
"dependencies": {
|
|
4203
|
+
"eastasianwidth": "^0.2.0",
|
|
4204
|
+
"emoji-regex": "^9.2.2",
|
|
4205
|
+
"strip-ansi": "^7.0.1"
|
|
4206
|
+
},
|
|
4207
|
+
"engines": {
|
|
4208
|
+
"node": ">=12"
|
|
4209
|
+
},
|
|
4210
|
+
"funding": {
|
|
4211
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
4212
|
+
}
|
|
4213
|
+
},
|
|
4214
|
+
"node_modules/string-width-cjs": {
|
|
4215
|
+
"name": "string-width",
|
|
4216
|
+
"version": "4.2.3",
|
|
4217
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
4218
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
4219
|
+
"dev": true,
|
|
4220
|
+
"license": "MIT",
|
|
4221
|
+
"dependencies": {
|
|
4222
|
+
"emoji-regex": "^8.0.0",
|
|
4223
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
4224
|
+
"strip-ansi": "^6.0.1"
|
|
4225
|
+
},
|
|
4226
|
+
"engines": {
|
|
4227
|
+
"node": ">=8"
|
|
4228
|
+
}
|
|
4229
|
+
},
|
|
4230
|
+
"node_modules/string-width-cjs/node_modules/ansi-regex": {
|
|
4231
|
+
"version": "5.0.1",
|
|
4232
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
4233
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
4234
|
+
"dev": true,
|
|
4235
|
+
"license": "MIT",
|
|
4236
|
+
"engines": {
|
|
4237
|
+
"node": ">=8"
|
|
4238
|
+
}
|
|
4239
|
+
},
|
|
4240
|
+
"node_modules/string-width-cjs/node_modules/emoji-regex": {
|
|
4241
|
+
"version": "8.0.0",
|
|
4242
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
4243
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
4244
|
+
"dev": true,
|
|
4245
|
+
"license": "MIT"
|
|
4246
|
+
},
|
|
4247
|
+
"node_modules/string-width-cjs/node_modules/strip-ansi": {
|
|
4248
|
+
"version": "6.0.1",
|
|
4249
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
4250
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
4251
|
+
"dev": true,
|
|
4252
|
+
"license": "MIT",
|
|
4253
|
+
"dependencies": {
|
|
4254
|
+
"ansi-regex": "^5.0.1"
|
|
4255
|
+
},
|
|
4256
|
+
"engines": {
|
|
4257
|
+
"node": ">=8"
|
|
4258
|
+
}
|
|
4259
|
+
},
|
|
4260
|
+
"node_modules/strip-ansi": {
|
|
4261
|
+
"version": "7.1.0",
|
|
4262
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
|
|
4263
|
+
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
|
|
4264
|
+
"dev": true,
|
|
4265
|
+
"license": "MIT",
|
|
4266
|
+
"dependencies": {
|
|
4267
|
+
"ansi-regex": "^6.0.1"
|
|
4268
|
+
},
|
|
4269
|
+
"engines": {
|
|
4270
|
+
"node": ">=12"
|
|
4271
|
+
},
|
|
4272
|
+
"funding": {
|
|
4273
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
4274
|
+
}
|
|
4275
|
+
},
|
|
4276
|
+
"node_modules/strip-ansi-cjs": {
|
|
4277
|
+
"name": "strip-ansi",
|
|
4278
|
+
"version": "6.0.1",
|
|
4279
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
4280
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
4281
|
+
"dev": true,
|
|
4282
|
+
"license": "MIT",
|
|
4283
|
+
"dependencies": {
|
|
4284
|
+
"ansi-regex": "^5.0.1"
|
|
4285
|
+
},
|
|
4286
|
+
"engines": {
|
|
4287
|
+
"node": ">=8"
|
|
4288
|
+
}
|
|
4289
|
+
},
|
|
4290
|
+
"node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
|
|
4291
|
+
"version": "5.0.1",
|
|
4292
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
4293
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
4294
|
+
"dev": true,
|
|
4295
|
+
"license": "MIT",
|
|
4296
|
+
"engines": {
|
|
4297
|
+
"node": ">=8"
|
|
4298
|
+
}
|
|
4299
|
+
},
|
|
4300
|
+
"node_modules/tailwindcss": {
|
|
4301
|
+
"version": "4.1.11",
|
|
4302
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.11.tgz",
|
|
4303
|
+
"integrity": "sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA==",
|
|
4304
|
+
"dev": true,
|
|
4305
|
+
"license": "MIT"
|
|
4306
|
+
},
|
|
4307
|
+
"node_modules/tapable": {
|
|
4308
|
+
"version": "2.2.2",
|
|
4309
|
+
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.2.tgz",
|
|
4310
|
+
"integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==",
|
|
4311
|
+
"dev": true,
|
|
4312
|
+
"license": "MIT",
|
|
4313
|
+
"engines": {
|
|
4314
|
+
"node": ">=6"
|
|
4315
|
+
}
|
|
4316
|
+
},
|
|
4317
|
+
"node_modules/tar": {
|
|
4318
|
+
"version": "7.4.3",
|
|
4319
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz",
|
|
4320
|
+
"integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==",
|
|
4321
|
+
"dev": true,
|
|
4322
|
+
"license": "ISC",
|
|
4323
|
+
"dependencies": {
|
|
4324
|
+
"@isaacs/fs-minipass": "^4.0.0",
|
|
4325
|
+
"chownr": "^3.0.0",
|
|
4326
|
+
"minipass": "^7.1.2",
|
|
4327
|
+
"minizlib": "^3.0.1",
|
|
4328
|
+
"mkdirp": "^3.0.1",
|
|
4329
|
+
"yallist": "^5.0.0"
|
|
4330
|
+
},
|
|
4331
|
+
"engines": {
|
|
4332
|
+
"node": ">=18"
|
|
4333
|
+
}
|
|
4334
|
+
},
|
|
4335
|
+
"node_modules/tar/node_modules/yallist": {
|
|
4336
|
+
"version": "5.0.0",
|
|
4337
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
|
|
4338
|
+
"integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
|
|
4339
|
+
"dev": true,
|
|
4340
|
+
"license": "BlueOak-1.0.0",
|
|
4341
|
+
"engines": {
|
|
4342
|
+
"node": ">=18"
|
|
4343
|
+
}
|
|
4344
|
+
},
|
|
4345
|
+
"node_modules/tinyglobby": {
|
|
4346
|
+
"version": "0.2.14",
|
|
4347
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
|
|
4348
|
+
"integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
|
|
4349
|
+
"dev": true,
|
|
4350
|
+
"license": "MIT",
|
|
4351
|
+
"dependencies": {
|
|
4352
|
+
"fdir": "^6.4.4",
|
|
4353
|
+
"picomatch": "^4.0.2"
|
|
4354
|
+
},
|
|
4355
|
+
"engines": {
|
|
4356
|
+
"node": ">=12.0.0"
|
|
4357
|
+
},
|
|
4358
|
+
"funding": {
|
|
4359
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
4360
|
+
}
|
|
4361
|
+
},
|
|
4362
|
+
"node_modules/toidentifier": {
|
|
4363
|
+
"version": "1.0.1",
|
|
4364
|
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
|
4365
|
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
|
4366
|
+
"license": "MIT",
|
|
4367
|
+
"engines": {
|
|
4368
|
+
"node": ">=0.6"
|
|
4369
|
+
}
|
|
4370
|
+
},
|
|
4371
|
+
"node_modules/tsconfck": {
|
|
4372
|
+
"version": "3.1.6",
|
|
4373
|
+
"resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz",
|
|
4374
|
+
"integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==",
|
|
4375
|
+
"dev": true,
|
|
4376
|
+
"license": "MIT",
|
|
4377
|
+
"bin": {
|
|
4378
|
+
"tsconfck": "bin/tsconfck.js"
|
|
4379
|
+
},
|
|
4380
|
+
"engines": {
|
|
4381
|
+
"node": "^18 || >=20"
|
|
4382
|
+
},
|
|
4383
|
+
"peerDependencies": {
|
|
4384
|
+
"typescript": "^5.0.0"
|
|
4385
|
+
},
|
|
4386
|
+
"peerDependenciesMeta": {
|
|
4387
|
+
"typescript": {
|
|
4388
|
+
"optional": true
|
|
4389
|
+
}
|
|
4390
|
+
}
|
|
4391
|
+
},
|
|
4392
|
+
"node_modules/type-is": {
|
|
4393
|
+
"version": "1.6.18",
|
|
4394
|
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
|
4395
|
+
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
|
4396
|
+
"license": "MIT",
|
|
4397
|
+
"dependencies": {
|
|
4398
|
+
"media-typer": "0.3.0",
|
|
4399
|
+
"mime-types": "~2.1.24"
|
|
4400
|
+
},
|
|
4401
|
+
"engines": {
|
|
4402
|
+
"node": ">= 0.6"
|
|
4403
|
+
}
|
|
4404
|
+
},
|
|
4405
|
+
"node_modules/typescript": {
|
|
4406
|
+
"version": "5.8.3",
|
|
4407
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
|
|
4408
|
+
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
|
|
4409
|
+
"devOptional": true,
|
|
4410
|
+
"license": "Apache-2.0",
|
|
4411
|
+
"bin": {
|
|
4412
|
+
"tsc": "bin/tsc",
|
|
4413
|
+
"tsserver": "bin/tsserver"
|
|
4414
|
+
},
|
|
4415
|
+
"engines": {
|
|
4416
|
+
"node": ">=14.17"
|
|
4417
|
+
}
|
|
4418
|
+
},
|
|
4419
|
+
"node_modules/undici-types": {
|
|
4420
|
+
"version": "6.21.0",
|
|
4421
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
4422
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
4423
|
+
"dev": true,
|
|
4424
|
+
"license": "MIT"
|
|
4425
|
+
},
|
|
4426
|
+
"node_modules/unpipe": {
|
|
4427
|
+
"version": "1.0.0",
|
|
4428
|
+
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
|
4429
|
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
|
4430
|
+
"license": "MIT",
|
|
4431
|
+
"engines": {
|
|
4432
|
+
"node": ">= 0.8"
|
|
4433
|
+
}
|
|
4434
|
+
},
|
|
4435
|
+
"node_modules/update-browserslist-db": {
|
|
4436
|
+
"version": "1.1.3",
|
|
4437
|
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
|
|
4438
|
+
"integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
|
|
4439
|
+
"dev": true,
|
|
4440
|
+
"funding": [
|
|
4441
|
+
{
|
|
4442
|
+
"type": "opencollective",
|
|
4443
|
+
"url": "https://opencollective.com/browserslist"
|
|
4444
|
+
},
|
|
4445
|
+
{
|
|
4446
|
+
"type": "tidelift",
|
|
4447
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
4448
|
+
},
|
|
4449
|
+
{
|
|
4450
|
+
"type": "github",
|
|
4451
|
+
"url": "https://github.com/sponsors/ai"
|
|
4452
|
+
}
|
|
4453
|
+
],
|
|
4454
|
+
"license": "MIT",
|
|
4455
|
+
"dependencies": {
|
|
4456
|
+
"escalade": "^3.2.0",
|
|
4457
|
+
"picocolors": "^1.1.1"
|
|
4458
|
+
},
|
|
4459
|
+
"bin": {
|
|
4460
|
+
"update-browserslist-db": "cli.js"
|
|
4461
|
+
},
|
|
4462
|
+
"peerDependencies": {
|
|
4463
|
+
"browserslist": ">= 4.21.0"
|
|
4464
|
+
}
|
|
4465
|
+
},
|
|
4466
|
+
"node_modules/utils-merge": {
|
|
4467
|
+
"version": "1.0.1",
|
|
4468
|
+
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
|
|
4469
|
+
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
|
|
4470
|
+
"license": "MIT",
|
|
4471
|
+
"engines": {
|
|
4472
|
+
"node": ">= 0.4.0"
|
|
4473
|
+
}
|
|
4474
|
+
},
|
|
4475
|
+
"node_modules/valibot": {
|
|
4476
|
+
"version": "0.41.0",
|
|
4477
|
+
"resolved": "https://registry.npmjs.org/valibot/-/valibot-0.41.0.tgz",
|
|
4478
|
+
"integrity": "sha512-igDBb8CTYr8YTQlOKgaN9nSS0Be7z+WRuaeYqGf3Cjz3aKmSnqEmYnkfVjzIuumGqfHpa3fLIvMEAfhrpqN8ng==",
|
|
4479
|
+
"dev": true,
|
|
4480
|
+
"license": "MIT",
|
|
4481
|
+
"peerDependencies": {
|
|
4482
|
+
"typescript": ">=5"
|
|
4483
|
+
},
|
|
4484
|
+
"peerDependenciesMeta": {
|
|
4485
|
+
"typescript": {
|
|
4486
|
+
"optional": true
|
|
4487
|
+
}
|
|
4488
|
+
}
|
|
4489
|
+
},
|
|
4490
|
+
"node_modules/validate-npm-package-license": {
|
|
4491
|
+
"version": "3.0.4",
|
|
4492
|
+
"resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
|
|
4493
|
+
"integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
|
|
4494
|
+
"dev": true,
|
|
4495
|
+
"license": "Apache-2.0",
|
|
4496
|
+
"dependencies": {
|
|
4497
|
+
"spdx-correct": "^3.0.0",
|
|
4498
|
+
"spdx-expression-parse": "^3.0.0"
|
|
4499
|
+
}
|
|
4500
|
+
},
|
|
4501
|
+
"node_modules/validate-npm-package-name": {
|
|
4502
|
+
"version": "5.0.1",
|
|
4503
|
+
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz",
|
|
4504
|
+
"integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==",
|
|
4505
|
+
"dev": true,
|
|
4506
|
+
"license": "ISC",
|
|
4507
|
+
"engines": {
|
|
4508
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
4509
|
+
}
|
|
4510
|
+
},
|
|
4511
|
+
"node_modules/vary": {
|
|
4512
|
+
"version": "1.1.2",
|
|
4513
|
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
|
4514
|
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
|
4515
|
+
"license": "MIT",
|
|
4516
|
+
"engines": {
|
|
4517
|
+
"node": ">= 0.8"
|
|
4518
|
+
}
|
|
4519
|
+
},
|
|
4520
|
+
"node_modules/vite": {
|
|
4521
|
+
"version": "6.3.5",
|
|
4522
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
|
|
4523
|
+
"integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
|
|
4524
|
+
"dev": true,
|
|
4525
|
+
"license": "MIT",
|
|
4526
|
+
"dependencies": {
|
|
4527
|
+
"esbuild": "^0.25.0",
|
|
4528
|
+
"fdir": "^6.4.4",
|
|
4529
|
+
"picomatch": "^4.0.2",
|
|
4530
|
+
"postcss": "^8.5.3",
|
|
4531
|
+
"rollup": "^4.34.9",
|
|
4532
|
+
"tinyglobby": "^0.2.13"
|
|
4533
|
+
},
|
|
4534
|
+
"bin": {
|
|
4535
|
+
"vite": "bin/vite.js"
|
|
4536
|
+
},
|
|
4537
|
+
"engines": {
|
|
4538
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
4539
|
+
},
|
|
4540
|
+
"funding": {
|
|
4541
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
4542
|
+
},
|
|
4543
|
+
"optionalDependencies": {
|
|
4544
|
+
"fsevents": "~2.3.3"
|
|
4545
|
+
},
|
|
4546
|
+
"peerDependencies": {
|
|
4547
|
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
4548
|
+
"jiti": ">=1.21.0",
|
|
4549
|
+
"less": "*",
|
|
4550
|
+
"lightningcss": "^1.21.0",
|
|
4551
|
+
"sass": "*",
|
|
4552
|
+
"sass-embedded": "*",
|
|
4553
|
+
"stylus": "*",
|
|
4554
|
+
"sugarss": "*",
|
|
4555
|
+
"terser": "^5.16.0",
|
|
4556
|
+
"tsx": "^4.8.1",
|
|
4557
|
+
"yaml": "^2.4.2"
|
|
4558
|
+
},
|
|
4559
|
+
"peerDependenciesMeta": {
|
|
4560
|
+
"@types/node": {
|
|
4561
|
+
"optional": true
|
|
4562
|
+
},
|
|
4563
|
+
"jiti": {
|
|
4564
|
+
"optional": true
|
|
4565
|
+
},
|
|
4566
|
+
"less": {
|
|
4567
|
+
"optional": true
|
|
4568
|
+
},
|
|
4569
|
+
"lightningcss": {
|
|
4570
|
+
"optional": true
|
|
4571
|
+
},
|
|
4572
|
+
"sass": {
|
|
4573
|
+
"optional": true
|
|
4574
|
+
},
|
|
4575
|
+
"sass-embedded": {
|
|
4576
|
+
"optional": true
|
|
4577
|
+
},
|
|
4578
|
+
"stylus": {
|
|
4579
|
+
"optional": true
|
|
4580
|
+
},
|
|
4581
|
+
"sugarss": {
|
|
4582
|
+
"optional": true
|
|
4583
|
+
},
|
|
4584
|
+
"terser": {
|
|
4585
|
+
"optional": true
|
|
4586
|
+
},
|
|
4587
|
+
"tsx": {
|
|
4588
|
+
"optional": true
|
|
4589
|
+
},
|
|
4590
|
+
"yaml": {
|
|
4591
|
+
"optional": true
|
|
4592
|
+
}
|
|
4593
|
+
}
|
|
4594
|
+
},
|
|
4595
|
+
"node_modules/vite-node": {
|
|
4596
|
+
"version": "3.2.4",
|
|
4597
|
+
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz",
|
|
4598
|
+
"integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==",
|
|
4599
|
+
"dev": true,
|
|
4600
|
+
"license": "MIT",
|
|
4601
|
+
"dependencies": {
|
|
4602
|
+
"cac": "^6.7.14",
|
|
4603
|
+
"debug": "^4.4.1",
|
|
4604
|
+
"es-module-lexer": "^1.7.0",
|
|
4605
|
+
"pathe": "^2.0.3",
|
|
4606
|
+
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0"
|
|
4607
|
+
},
|
|
4608
|
+
"bin": {
|
|
4609
|
+
"vite-node": "vite-node.mjs"
|
|
4610
|
+
},
|
|
4611
|
+
"engines": {
|
|
4612
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
4613
|
+
},
|
|
4614
|
+
"funding": {
|
|
4615
|
+
"url": "https://opencollective.com/vitest"
|
|
4616
|
+
}
|
|
4617
|
+
},
|
|
4618
|
+
"node_modules/vite-node/node_modules/pathe": {
|
|
4619
|
+
"version": "2.0.3",
|
|
4620
|
+
"resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
|
|
4621
|
+
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
|
|
4622
|
+
"dev": true,
|
|
4623
|
+
"license": "MIT"
|
|
4624
|
+
},
|
|
4625
|
+
"node_modules/vite-tsconfig-paths": {
|
|
4626
|
+
"version": "5.1.4",
|
|
4627
|
+
"resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-5.1.4.tgz",
|
|
4628
|
+
"integrity": "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==",
|
|
4629
|
+
"dev": true,
|
|
4630
|
+
"license": "MIT",
|
|
4631
|
+
"dependencies": {
|
|
4632
|
+
"debug": "^4.1.1",
|
|
4633
|
+
"globrex": "^0.1.2",
|
|
4634
|
+
"tsconfck": "^3.0.3"
|
|
4635
|
+
},
|
|
4636
|
+
"peerDependencies": {
|
|
4637
|
+
"vite": "*"
|
|
4638
|
+
},
|
|
4639
|
+
"peerDependenciesMeta": {
|
|
4640
|
+
"vite": {
|
|
4641
|
+
"optional": true
|
|
4642
|
+
}
|
|
4643
|
+
}
|
|
4644
|
+
},
|
|
4645
|
+
"node_modules/which": {
|
|
4646
|
+
"version": "3.0.1",
|
|
4647
|
+
"resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz",
|
|
4648
|
+
"integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
|
|
4649
|
+
"dev": true,
|
|
4650
|
+
"license": "ISC",
|
|
4651
|
+
"dependencies": {
|
|
4652
|
+
"isexe": "^2.0.0"
|
|
4653
|
+
},
|
|
4654
|
+
"bin": {
|
|
4655
|
+
"node-which": "bin/which.js"
|
|
4656
|
+
},
|
|
4657
|
+
"engines": {
|
|
4658
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
4659
|
+
}
|
|
4660
|
+
},
|
|
4661
|
+
"node_modules/wrap-ansi": {
|
|
4662
|
+
"version": "8.1.0",
|
|
4663
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
|
|
4664
|
+
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
|
|
4665
|
+
"dev": true,
|
|
4666
|
+
"license": "MIT",
|
|
4667
|
+
"dependencies": {
|
|
4668
|
+
"ansi-styles": "^6.1.0",
|
|
4669
|
+
"string-width": "^5.0.1",
|
|
4670
|
+
"strip-ansi": "^7.0.1"
|
|
4671
|
+
},
|
|
4672
|
+
"engines": {
|
|
4673
|
+
"node": ">=12"
|
|
4674
|
+
},
|
|
4675
|
+
"funding": {
|
|
4676
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
4677
|
+
}
|
|
4678
|
+
},
|
|
4679
|
+
"node_modules/wrap-ansi-cjs": {
|
|
4680
|
+
"name": "wrap-ansi",
|
|
4681
|
+
"version": "7.0.0",
|
|
4682
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
4683
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
4684
|
+
"dev": true,
|
|
4685
|
+
"license": "MIT",
|
|
4686
|
+
"dependencies": {
|
|
4687
|
+
"ansi-styles": "^4.0.0",
|
|
4688
|
+
"string-width": "^4.1.0",
|
|
4689
|
+
"strip-ansi": "^6.0.0"
|
|
4690
|
+
},
|
|
4691
|
+
"engines": {
|
|
4692
|
+
"node": ">=10"
|
|
4693
|
+
},
|
|
4694
|
+
"funding": {
|
|
4695
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
4696
|
+
}
|
|
4697
|
+
},
|
|
4698
|
+
"node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
|
|
4699
|
+
"version": "5.0.1",
|
|
4700
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
4701
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
4702
|
+
"dev": true,
|
|
4703
|
+
"license": "MIT",
|
|
4704
|
+
"engines": {
|
|
4705
|
+
"node": ">=8"
|
|
4706
|
+
}
|
|
4707
|
+
},
|
|
4708
|
+
"node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
|
|
4709
|
+
"version": "4.3.0",
|
|
4710
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
4711
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
4712
|
+
"dev": true,
|
|
4713
|
+
"license": "MIT",
|
|
4714
|
+
"dependencies": {
|
|
4715
|
+
"color-convert": "^2.0.1"
|
|
4716
|
+
},
|
|
4717
|
+
"engines": {
|
|
4718
|
+
"node": ">=8"
|
|
4719
|
+
},
|
|
4720
|
+
"funding": {
|
|
4721
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
4722
|
+
}
|
|
4723
|
+
},
|
|
4724
|
+
"node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
|
|
4725
|
+
"version": "8.0.0",
|
|
4726
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
4727
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
4728
|
+
"dev": true,
|
|
4729
|
+
"license": "MIT"
|
|
4730
|
+
},
|
|
4731
|
+
"node_modules/wrap-ansi-cjs/node_modules/string-width": {
|
|
4732
|
+
"version": "4.2.3",
|
|
4733
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
4734
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
4735
|
+
"dev": true,
|
|
4736
|
+
"license": "MIT",
|
|
4737
|
+
"dependencies": {
|
|
4738
|
+
"emoji-regex": "^8.0.0",
|
|
4739
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
4740
|
+
"strip-ansi": "^6.0.1"
|
|
4741
|
+
},
|
|
4742
|
+
"engines": {
|
|
4743
|
+
"node": ">=8"
|
|
4744
|
+
}
|
|
4745
|
+
},
|
|
4746
|
+
"node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
|
|
4747
|
+
"version": "6.0.1",
|
|
4748
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
4749
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
4750
|
+
"dev": true,
|
|
4751
|
+
"license": "MIT",
|
|
4752
|
+
"dependencies": {
|
|
4753
|
+
"ansi-regex": "^5.0.1"
|
|
4754
|
+
},
|
|
4755
|
+
"engines": {
|
|
4756
|
+
"node": ">=8"
|
|
4757
|
+
}
|
|
4758
|
+
},
|
|
4759
|
+
"node_modules/yallist": {
|
|
4760
|
+
"version": "3.1.1",
|
|
4761
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
|
4762
|
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
|
4763
|
+
"dev": true,
|
|
4764
|
+
"license": "ISC"
|
|
4765
|
+
}
|
|
4766
|
+
}
|
|
4767
|
+
}
|