package-installer-cli 2.1.0 → 2.3.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 +4 -4
- data/bundle-standalone/cli-with-packages.js +821 -420
- data/bundle-standalone/features/ui/shadcn/nextjs/package.json +5 -0
- data/bundle-standalone/features/ui/shadcn/reactjs/package.json +5 -0
- data/bundle-standalone/template.json +737 -108
- data/bundle-standalone/templates/template.json +813 -0
- metadata +1082 -1436
- data/bundle-standalone/templates/go/golang-boilerplate/Dockerfile +0 -25
- data/bundle-standalone/templates/go/golang-boilerplate/api/auth.go +0 -176
- data/bundle-standalone/templates/go/golang-boilerplate/api/auth_test.go +0 -71
- data/bundle-standalone/templates/go/golang-boilerplate/api/context.go +0 -120
- data/bundle-standalone/templates/go/golang-boilerplate/api/cronjob.go +0 -24
- data/bundle-standalone/templates/go/golang-boilerplate/api/db_helper.go +0 -86
- data/bundle-standalone/templates/go/golang-boilerplate/api/handler.go +0 -514
- data/bundle-standalone/templates/go/golang-boilerplate/api/handler_test.go +0 -188
- data/bundle-standalone/templates/go/golang-boilerplate/api/user.go +0 -80
- data/bundle-standalone/templates/go/golang-boilerplate/api/user_test.go +0 -43
- data/bundle-standalone/templates/go/golang-boilerplate/api/webhook.go +0 -33
- data/bundle-standalone/templates/go/golang-boilerplate/config/config.go +0 -137
- data/bundle-standalone/templates/go/golang-boilerplate/config/config_test.go +0 -1
- data/bundle-standalone/templates/go/golang-boilerplate/core/db.go +0 -161
- data/bundle-standalone/templates/go/golang-boilerplate/core/error.go +0 -144
- data/bundle-standalone/templates/go/golang-boilerplate/core/json.go +0 -278
- data/bundle-standalone/templates/go/golang-boilerplate/core/test.go +0 -237
- data/bundle-standalone/templates/go/golang-boilerplate/core/timestamp.go +0 -111
- data/bundle-standalone/templates/go/golang-boilerplate/core/type.go +0 -7
- data/bundle-standalone/templates/go/golang-boilerplate/db/dbconf.yml +0 -17
- data/bundle-standalone/templates/go/golang-boilerplate/db/migrations/20190611174624_base.sql +0 -42
- data/bundle-standalone/templates/go/golang-boilerplate/db/seed.sql +0 -1
- data/bundle-standalone/templates/go/golang-boilerplate/go.mod +0 -34
- data/bundle-standalone/templates/go/golang-boilerplate/go.sum +0 -328
- data/bundle-standalone/templates/go/golang-boilerplate/log/hook.go +0 -137
- data/bundle-standalone/templates/go/golang-boilerplate/log/log.go +0 -66
- data/bundle-standalone/templates/go/golang-boilerplate/log/logger.go +0 -40
- data/bundle-standalone/templates/go/golang-boilerplate/log/logstash.go +0 -64
- data/bundle-standalone/templates/go/golang-boilerplate/main.go +0 -31
- data/bundle-standalone/templates/go/golang-boilerplate/makefile +0 -17
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/configuration.go +0 -19
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/db.go +0 -21
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/elastic.go +0 -21
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/header.go +0 -30
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/initialize.go +0 -28
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/session.go +0 -64
- data/bundle-standalone/templates/go/golang-boilerplate/middleware/type.go +0 -50
- data/bundle-standalone/templates/go/golang-boilerplate/model/configuration.go +0 -59
- data/bundle-standalone/templates/go/golang-boilerplate/model/context.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/creator.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/creator_test.go +0 -13
- data/bundle-standalone/templates/go/golang-boilerplate/model/db_test.go +0 -38
- data/bundle-standalone/templates/go/golang-boilerplate/model/deleter.go +0 -32
- data/bundle-standalone/templates/go/golang-boilerplate/model/deleter_test.go +0 -13
- data/bundle-standalone/templates/go/golang-boilerplate/model/getter.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/getter_test.go +0 -13
- data/bundle-standalone/templates/go/golang-boilerplate/model/jwt.go +0 -86
- data/bundle-standalone/templates/go/golang-boilerplate/model/jwt_test.go +0 -28
- data/bundle-standalone/templates/go/golang-boilerplate/model/model.go +0 -141
- data/bundle-standalone/templates/go/golang-boilerplate/model/restrictor.go +0 -19
- data/bundle-standalone/templates/go/golang-boilerplate/model/restrictor_test.go +0 -13
- data/bundle-standalone/templates/go/golang-boilerplate/model/sorter.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/sorter_test.go +0 -46
- data/bundle-standalone/templates/go/golang-boilerplate/model/test_helper.go +0 -107
- data/bundle-standalone/templates/go/golang-boilerplate/model/updater.go +0 -16
- data/bundle-standalone/templates/go/golang-boilerplate/model/updater_test.go +0 -14
- data/bundle-standalone/templates/go/golang-boilerplate/model/user.go +0 -295
- data/bundle-standalone/templates/go/golang-boilerplate/model/user_test.go +0 -215
- data/bundle-standalone/templates/go/golang-boilerplate/model/validator.go +0 -80
- data/bundle-standalone/templates/go/golang-boilerplate/model/validator_test.go +0 -135
- data/bundle-standalone/templates/go/golang-boilerplate/server/router.go +0 -141
- data/bundle-standalone/templates/go/golang-boilerplate/server/server.go +0 -26
- data/bundle-standalone/templates/go/golang-boilerplate/util/helper.go +0 -300
- data/bundle-standalone/templates/go/golang-boilerplate/util/helper_test.go +0 -230
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Dockerfile +0 -75
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Gemfile +0 -29
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Gemfile.lock +0 -279
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Procfile.dev +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/README.md +0 -57
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/Rakefile +0 -6
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/assets/config/manifest.js +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/assets/stylesheets/application.css +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/channels/application_cable/channel.rb +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/channels/application_cable/connection.rb +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/controllers/application_controller.rb +0 -2
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/controllers/home_controller.rb +0 -13
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/helpers/application_helper.rb +0 -2
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/application.js +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/controllers/application.js +0 -9
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/controllers/home_controller.js +0 -19
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/javascript/controllers/index.js +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/jobs/application_job.rb +0 -7
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/mailers/application_mailer.rb +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/models/application_record.rb +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/home/_content.html.erb +0 -3
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/home/index.html.erb +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/layouts/application.html.erb +0 -16
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/layouts/mailer.html.erb +0 -13
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/app/views/layouts/mailer.text.erb +0 -1
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/bundle +0 -109
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/dev +0 -11
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/docker-entrypoint +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/rails +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/rake +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/bin/setup +0 -36
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/application.rb +0 -27
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/boot.rb +0 -4
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/cable.yml +0 -10
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/credentials.yml.enc +0 -1
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/database.yml +0 -85
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environment.rb +0 -5
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environments/development.rb +0 -76
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environments/production.rb +0 -97
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/environments/test.rb +0 -64
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/assets.rb +0 -12
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/content_security_policy.rb +0 -25
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/filter_parameter_logging.rb +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/inflections.rb +0 -16
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/initializers/permissions_policy.rb +0 -13
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/locales/en.yml +0 -31
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/puma.rb +0 -44
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/routes.rb +0 -11
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config/storage.yml +0 -34
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/config.ru +0 -6
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/db/schema.rb +0 -17
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/db/seeds.rb +0 -9
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/docker-compose.yaml +0 -14
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/esbuild.config.js +0 -58
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/package.json +0 -24
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/postcss.config.js +0 -9
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/404.html +0 -67
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/422.html +0 -67
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/500.html +0 -66
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/apple-touch-icon-precomposed.png +0 -0
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/apple-touch-icon.png +0 -0
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/favicon.ico +0 -0
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/public/robots.txt +0 -1
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/tailwind.config.js +0 -8
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/test/application_system_test_case.rb +0 -5
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/test/channels/application_cable/connection_test.rb +0 -13
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/test/test_helper.rb +0 -15
- data/bundle-standalone/templates/ruby/rails_7_esbuild_hotwire_tailwindcss_starter/watch-stimulus.js +0 -18
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/Capfile +0 -11
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/Gemfile +0 -31
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/Gemfile.lock +0 -214
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/README.md +0 -35
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/Rakefile +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/channels/application_cable/channel.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/channels/application_cable/connection.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/controllers/application_controller.rb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/jobs/application_job.rb +0 -2
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/mailers/application_mailer.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/models/application_record.rb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/models/user.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/views/layouts/mailer.html.erb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/app/views/layouts/mailer.text.erb +0 -1
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/bundle +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/rails +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/rake +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/setup +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/spring +0 -15
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/bin/update +0 -29
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/circle.yml +0 -12
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/application.rb +0 -31
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/boot.rb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/cable.yml +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/database.yml +0 -19
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/deploy/production.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/deploy.rb +0 -87
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/environment.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/environments/development.rb +0 -47
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/environments/production.rb +0 -78
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/environments/test.rb +0 -42
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/application_controller_renderer.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/backtrace_silencers.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/cors.rb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/devise.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/devise_token_auth.rb +0 -49
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/filter_parameter_logging.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/inflections.rb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/mime_types.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/new_framework_defaults.rb +0 -18
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/initializers/wrap_parameters.rb +0 -14
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/locales/en.yml +0 -2
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/puma.rb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/routes.rb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/secrets.yml +0 -22
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config/spring.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/config.ru +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/db/migrate/20160824081533_devise_token_auth_create_users.rb +0 -54
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/db/schema.rb +0 -46
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/db/seeds.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/spec/rails_helper.rb +0 -67
- data/bundle-standalone/templates/ruby/ruby-on-rails-apis-template/spec/spec_helper.rb +0 -11
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Capfile +0 -25
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Dockerfile +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Gemfile +0 -121
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Gemfile.lock +0 -478
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Procfile.dev +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/README.md +0 -57
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/Rakefile +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/config/esbuild.js +0 -0
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/config/manifest.js +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/images/admin/000m.jpg +0 -0
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/images/admin/logo.svg +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/admin/profile.scss +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/admin.bootstrap.scss +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/application.bootstrap.scss +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/assets/stylesheets/lib/tabler.min.css +0 -14
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/channels/application_cable/channel.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/channels/application_cable/connection.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/base_controller.rb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/confirmations_controller.rb +0 -32
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/home_controller.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/omniauth_callbacks_controller.rb +0 -30
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/passwords_controller.rb +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/profile_controller.rb +0 -41
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/registrations_controller.rb +0 -62
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/sessions_controller.rb +0 -29
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/unlocks_controller.rb +0 -32
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/admin/users_controller.rb +0 -55
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/application_controller.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/concerns/active_storage.rb +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/controllers/home_controller.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/decorators/admins/profile_decorator.rb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/decorators/application_decorator.rb +0 -10
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/helpers/admin/application_helper.rb +0 -33
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/helpers/application_helper.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/admin.js +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/application.js +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/admin/dashboard_controller.js +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/admin/flash_message_controller.js +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/admin/index.js +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/flash_message_controller.js +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/home_controller.js +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/controllers/index.js +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/javascript/lib/tabler.min.js +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/jobs/application_job.rb +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/mailers/admin/application_mailer.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/mailers/admin/user_mailer.rb +0 -10
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/mailers/application_mailer.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/models/admin.rb +0 -39
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/models/application_record.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/models/user.rb +0 -54
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/services/application_service.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_flash_messages.html.erb +0 -11
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_footer.html.erb +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_javascript_tags.html.erb +0 -29
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_page_header.html.erb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_page_header_actions.html.erb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_page_header_breadcrumb.html.erb +0 -12
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_pagination.html.erb +0 -24
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_primary_navbar.html.erb +0 -48
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_secondary_navbar.html.erb +0 -31
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/base/_stylesheet_link_tags.html.erb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/home/index.html.erb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/password_resets/edit.html.erb +0 -21
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/password_resets/new.html.erb +0 -17
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/profile/index.html.erb +0 -61
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/profile/password.html.erb +0 -65
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/sessions/new.html.erb +0 -18
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/user_mailer/password_reset.html.erb +0 -14
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/user_mailer/password_reset.text.erb +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/_form.html.erb +0 -46
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/edit.html.erb +0 -17
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/index.html.erb +0 -72
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/new.html.erb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/admin/users/show.html.erb +0 -33
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/confirmations/new.html.erb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/confirmation_instructions.html.erb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/email_changed.html.erb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/password_change.html.erb +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/reset_password_instructions.html.erb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/mailer/unlock_instructions.html.erb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/sessions/new.html.erb +0 -26
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/shared/_error_messages.html.erb +0 -15
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/shared/_links.html.erb +0 -25
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/devise/unlocks/new.html.erb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/home/index.html.erb +0 -2
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/admin/authentication.html.erb +0 -32
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/admin/base.html.erb +0 -29
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/application.html.erb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/mailer.html.erb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/app/views/layouts/mailer.text.erb +0 -1
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/bundle +0 -114
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/dev +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/importmap +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/rails +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/rake +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/bin/setup +0 -33
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/application.rb +0 -27
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/boot.rb +0 -4
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/cable.yml +0 -10
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/credentials.yml.enc +0 -1
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/database.yml +0 -86
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/production.rb +0 -56
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/staging.rb +0 -56
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/templates/nginx_conf.erb +0 -23
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy/templates/puma.rb.erb +0 -54
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/deploy.rb +0 -95
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/environment.rb +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/environments/development.rb +0 -75
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/environments/production.rb +0 -94
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/environments/test.rb +0 -60
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/assets.rb +0 -13
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/content_security_policy.rb +0 -25
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/devise.rb +0 -311
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/filter_parameter_logging.rb +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/inflections.rb +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/permissions_policy.rb +0 -11
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/initializers/sidekiq.rb +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/locales/devise.en.yml +0 -65
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/locales/en.yml +0 -33
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/puma/production.rb +0 -41
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/puma/staging.rb +0 -41
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/puma.rb +0 -43
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/routes.rb +0 -24
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/sidekiq.yml +0 -3
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config/storage.yml +0 -34
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/config.ru +0 -8
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/migrate/20220731033724_create_active_storage_tables.active_storage.rb +0 -57
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/migrate/20221015181021_devise_create_admins.rb +0 -45
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/migrate/20221021163750_devise_create_users.rb +0 -50
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/schema.rb +0 -101
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/db/seeds.rb +0 -9
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/docker-compose.yml +0 -80
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/USAGE +0 -5
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/scaffold_generator.rb +0 -84
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/controller.rb.tt +0 -58
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/_form.html.erb.tt +0 -41
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/edit.html.erb.tt +0 -17
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/index.html.erb.tt +0 -74
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/new.html.erb.tt +0 -16
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/erb/show.html.erb.tt +0 -37
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/functional_test.rb.tt +0 -53
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/generators/admins/scaffold/templates/system_test.rb.tt +0 -52
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/lib/tasks/auto_annotate_models.rake +0 -61
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/package.json +0 -17
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/404.html +0 -67
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/422.html +0 -67
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/500.html +0 -66
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/apple-touch-icon-precomposed.png +0 -0
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/apple-touch-icon.png +0 -0
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/favicon.ico +0 -0
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/public/robots.txt +0 -1
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/scripts/start.sh +0 -14
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/factories/admins.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/factories/users.rb +0 -6
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/models/admin_spec.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/models/user_spec.rb +0 -7
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/rails_helper.rb +0 -63
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/spec/spec_helper.rb +0 -94
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/systemd/puma.service +0 -26
- data/bundle-standalone/templates/ruby/ruby-on-rails-boilerplate-template/systemd/sidekiq.service +0 -90
- data/bundle-standalone/templates/rust/advance-rust-template/Cargo.toml +0 -22
- data/bundle-standalone/templates/rust/advance-rust-template/README.md +0 -81
- data/bundle-standalone/templates/rust/advance-rust-template/env.example +0 -4
- data/bundle-standalone/templates/rust/advance-rust-template/src/config.rs +0 -17
- data/bundle-standalone/templates/rust/advance-rust-template/src/errors.rs +0 -17
- data/bundle-standalone/templates/rust/advance-rust-template/src/handlers.rs +0 -28
- data/bundle-standalone/templates/rust/advance-rust-template/src/main.rs +0 -33
- data/bundle-standalone/templates/rust/advance-rust-template/src/models.rs +0 -1
- data/bundle-standalone/templates/rust/advance-rust-template/src/routes.rs +0 -10
- data/bundle-standalone/templates/rust/advance-rust-template/tests/integration.rs +0 -18
- data/bundle-standalone/templates/rust/basic-rust-template/Cargo.toml +0 -7
- data/bundle-standalone/templates/rust/basic-rust-template/README.md +0 -38
- data/bundle-standalone/templates/rust/basic-rust-template/src/main.rs +0 -54
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/__tests__/setup.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/__tests__/user.test.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/controllers/user.controller.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/db/database.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/index.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/middleware/errorHandler.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/middleware/security.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/middleware/validation.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/models/user.model.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/routes/index.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/routes/user.routes.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend}/utils/logger.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/no-src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/src}/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-advance-express-shadcn-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/controllers/user.controller.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/index.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/models/user.model.js +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{expressjs/javascript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend}/routes/user.routes.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{nextjs/javascript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template}/src/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/javascript/react-basic-express-shadcn-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/__tests__/setup.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/__tests__/user.test.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/db/database.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/index.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/middleware/errorHandler.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/middleware/security.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/middleware/validation.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/models/user.model.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/routes/index.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/routes/user.routes.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/types/index.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/advance-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend}/utils/logger.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src}/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src}/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src}/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src}/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/no-src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/src}/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-advance-express-shadcn-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/controllers/user.controller.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/index.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/models/user.model.ts +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{expressjs/typescript/basic-expressjs-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend}/routes/user.routes.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{nextjs/typescript/src-shadcn-tailwind-template → combination-templates/reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn → combination-templates/reactjs-expressjs-shadcn}/typescript/react-basic-express-shadcn-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/README.md +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/README.md +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/nest-cli.json +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/package.json +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/app.controller.spec.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/app.controller.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/app.module.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/app.service.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/src/main.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/test/app.e2e-spec.ts +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/test/jest-e2e.json +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/tsconfig.build.json +0 -0
- /data/bundle-standalone/templates/{nestjs/typescript/template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template → combination-templates/reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn → combination-templates/reactjs-nestjs-shadcn}/typescript/react-nest-shadcn-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/javascript/template/index.html +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/javascript/template/main.js +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/javascript/template/package.json +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/typescript/template/index.html +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/typescript/template/main.ts +0 -0
- /data/bundle-standalone/templates/{electron → desktop/electron}/typescript/template/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/README.md +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/angular.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.component.css +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.component.html +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.component.ts +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.config.ts +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/app/app.routes.ts +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/assets/angular.svg +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend/public → desktop/tauri/javascript/angular-frontend/src/assets}/tauri.svg +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/index.html +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src/main.ts +0 -0
- /data/bundle-standalone/templates/{angularjs/typescript/no-material-no-tailwind-template → desktop/tauri/javascript/angular-frontend}/src/styles.css +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → desktop/tauri/javascript/angular-frontend}/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/angular-frontend}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → desktop/tauri/javascript/react-frontend}/components.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → desktop/tauri/javascript/react-frontend}/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app/src/assets → desktop/tauri/javascript/react-frontend/public}/tauri.svg +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/no-shadcn-no-tailwind-template → desktop/tauri/javascript/react-frontend}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/src/App.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/no-shadcn-no-tailwind-template → desktop/tauri/javascript/react-frontend}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template → desktop/tauri/javascript/react-frontend}/src/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/javascript/react-frontend}/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → desktop/tauri/javascript/react-frontend}/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/javascript/react-frontend/vite.config.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/README.md +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/assets/javascript.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/assets/tauri.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/index.html +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/main.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src/styles.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/rust/tauri-rust-template/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/README.md +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/angular.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/jsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/package.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.component.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.component.html +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.component.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.config.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/app/app.routes.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/assets/angular.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/assets/tauri.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/index.html +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src/main.ts +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/tauri-app → desktop/tauri/typescript/angular-frontend}/src/styles.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/angular-frontend/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → desktop/tauri/typescript/react-fronend}/components.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/index.html +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/package.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/public/tauri.svg +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/no-shadcn-tailwind-template → desktop/tauri/typescript/react-fronend}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src/App.css +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/no-shadcn-tailwind-template → desktop/tauri/typescript/react-fronend}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → desktop/tauri/typescript/react-fronend}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template → desktop/tauri/typescript/react-fronend}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-no-tailwind-template → desktop/tauri/typescript/react-fronend}/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/Cargo.toml +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/build.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/capabilities/default.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/128x128.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/128x128@2x.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/32x32.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square107x107Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square142x142Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square150x150Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square284x284Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square30x30Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square310x310Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square44x44Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square71x71Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/Square89x89Logo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/StoreLogo.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/icon.icns +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/icon.ico +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/icons/icon.png +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/src/lib.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/src/main.rs +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/src-tauri/tauri.conf.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → desktop/tauri/typescript/react-fronend}/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{tauri → desktop/tauri}/typescript/react-fronend/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/angular.json +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.config.server.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.config.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.css +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.html +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.routes.server.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.routes.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.spec.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/app/app.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/index.html +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/main.server.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/main.ts +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/src/server.ts +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/angular-frontend → javascript/angularjs/typescript/no-material-no-tailwind-template}/src/styles.css +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{angularjs → javascript/angularjs}/typescript/no-material-no-tailwind-template/tsconfig.spec.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/__tests__/setup.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/__tests__/user.test.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/controllers/user.controller.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/db/database.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/index.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/middleware/errorHandler.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/middleware/security.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/middleware/validation.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/models/user.model.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/routes/index.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/routes/user.routes.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-advance-express-shadcn-template/backend → javascript/expressjs/javascript/advance-expressjs-template}/utils/logger.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/controllers/user.controller.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/index.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/models/user.model.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/backend → javascript/expressjs/javascript/basic-expressjs-template}/routes/user.routes.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/__tests__/setup.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/__tests__/user.test.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/db/database.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/index.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/jest.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/middleware/errorHandler.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/middleware/security.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/middleware/validation.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/models/user.model.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/routes/index.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/routes/user.routes.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/types/index.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-advance-express-shadcn-template/backend → javascript/expressjs/typescript/advance-expressjs-template}/utils/logger.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/controllers/user.controller.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/index.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/models/user.model.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/typescript/react-basic-express-shadcn-template/backend → javascript/expressjs/typescript/basic-expressjs-template}/routes/user.routes.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/nest-cli.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/app.controller.spec.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/app.controller.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/app.module.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/app.service.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/src/main.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/test/app.e2e-spec.ts +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/test/jest-e2e.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/tsconfig.build.json +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/backend → javascript/nestjs/typescript/template}/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/app/page.module.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-no-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs-expressjs-shadcn/javascript/react-basic-express-shadcn-template/src → javascript/nextjs/javascript/no-src-shadcn-tailwind-template}/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-shadcn-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/no-src-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/src/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/src/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-no-tailwind-template/src/app/page.module.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/src/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-shadcn-tailwind-template/src/app/page.js +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/nextjs/javascript/src-shadcn-tailwind-template}/src/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/next.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/src/app/layout.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/javascript/src-tailwind-template/src/app/page.js +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/app/page.module.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{reactjs-nestjs-shadcn/typescript/react-nest-shadcn-template/src → javascript/nextjs/typescript/no-src-shadcn-tailwind-template}/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/no-src-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/page.module.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/src/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/src/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/src/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/nextjs/typescript/src-shadcn-tailwind-template}/src/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/eslint.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/next.config.ts +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/postcss.config.mjs +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/file.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/globe.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/next.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/vercel.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/public/window.svg +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/src/app/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/src/app/globals.css +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/src/app/layout.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/src/app/page.tsx +0 -0
- /data/bundle-standalone/templates/{nextjs → javascript/nextjs}/typescript/src-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/app/app.vue +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/nuxt.config.ts +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/pnpm-lock.yaml +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/public/robots.txt +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/app/app.vue +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/nuxt.config.ts +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/pnpm-lock.yaml +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/public/robots.txt +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/no-shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/app/app.vue +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/nuxt.config.ts +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/pnpm-lock.yaml +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/public/robots.txt +0 -0
- /data/bundle-standalone/templates/{nuxtjs → javascript/nuxtjs}/typescript/shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/reactjs/vite/javascript/no-shadcn-no-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/javascript/shadcn-tailwind-template → javascript/reactjs/vite/javascript/no-shadcn-no-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-no-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-no-tailwind-template → javascript/reactjs/vite/javascript/no-shadcn-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-no-tailwind-template → javascript/reactjs/vite/javascript/no-shadcn-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/no-shadcn-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-tailwind-template → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/src/App.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-tailwind-template → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/components/ui/button.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/components/ui/card.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/components/ui/input.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/components/ui/textarea.jsx +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/src/lib/utils.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/src/main.jsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/javascript/shadcn-tailwind-template}/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/javascript/shadcn-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/reactjs/vite/typescript/no-shadcn-no-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/reactjs/vite/typescript/no-shadcn-no-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/no-shadcn-tailwind-template → javascript/reactjs/vite/typescript/no-shadcn-no-tailwind-template}/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-no-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/typescript/no-shadcn-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/javascript/react-frontend → javascript/reactjs/vite/typescript/no-shadcn-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs/vite/typescript/shadcn-tailwind-template → javascript/reactjs/vite/typescript/no-shadcn-tailwind-template}/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/no-shadcn-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/components.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/public/vite.svg +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/src/App.css +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/src/App.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/assets/react.svg +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/src/index.css +0 -0
- /data/bundle-standalone/templates/{remixjs/typescript/shadcn-tailwind-template/app → javascript/reactjs/vite/typescript/shadcn-tailwind-template/src}/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/src/main.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/src/vite-env.d.ts +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend → javascript/reactjs/vite/typescript/shadcn-tailwind-template}/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{reactjs → javascript/reactjs}/vite/typescript/shadcn-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/Dockerfile +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/app.css +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/root.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/routes/home.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/routes.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/welcome/logo-dark.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/welcome/logo-light.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/app/welcome/welcome.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/react-router.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-no-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/Dockerfile +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/app.css +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/root.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/routes/home.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/routes.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/welcome/logo-dark.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/welcome/logo-light.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/app/welcome/welcome.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/react-router.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/no-shadcn-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/Dockerfile +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/app.css +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/components/ui/button.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/components/ui/card.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/components/ui/input.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/components/ui/textarea.tsx +0 -0
- /data/bundle-standalone/templates/{tauri/typescript/react-fronend/src → javascript/remixjs/typescript/shadcn-tailwind-template/app}/lib/utils.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/root.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/routes/home.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/routes.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/welcome/logo-dark.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/welcome/logo-light.svg +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/app/welcome/welcome.tsx +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/components.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/package-lock.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/react-router.config.ts +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{remixjs → javascript/remixjs}/typescript/shadcn-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/e2e/vue.spec.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/playwright.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/App.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/assets/base.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/assets/logo.svg +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/assets/main.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/HelloWorld.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/TheWelcome.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/WelcomeItem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/__tests__/HelloWorld.spec.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconCommunity.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconDocumentation.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconEcosystem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconSupport.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/icons/IconTooling.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/ui/BaseButton.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/ui/BaseCard.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/ui/BaseInput.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/components/ui/BaseTextarea.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/main.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/router/index.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/stores/counter.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/views/AboutView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/src/views/HomeView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/headless-tailwind-template/vitest.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/eslint.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/jsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/nightwatch.conf.cjs +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/App.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/assets/base.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/assets/logo.svg +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/assets/main.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/HelloWorld.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/TheWelcome.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/WelcomeItem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/__tests__/HelloWorld.spec.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconCommunity.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconDocumentation.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconEcosystem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconSupport.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/components/icons/IconTooling.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/main.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/router/index.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/stores/counter.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/views/AboutView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/src/views/HomeView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/tests/e2e/example.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/vite.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/javascript/no-headless-no-tailwind-template/vitest.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/e2e/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/e2e/vue.spec.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/env.d.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/eslint.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/playwright.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/App.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/assets/base.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/assets/logo.svg +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/assets/main.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/HelloWorld.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/TheWelcome.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/WelcomeItem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/__tests__/HelloWorld.spec.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconCommunity.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconDocumentation.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconEcosystem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconSupport.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/icons/IconTooling.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/ui/BaseButton.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/ui/BaseCard.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/ui/BaseInput.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/components/ui/BaseTextarea.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/main.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/router/index.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/stores/counter.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/views/AboutView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/src/views/HomeView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tailwind.config.js +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/tsconfig.vitest.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/headless-tailwind-template/vitest.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/README.md +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/e2e/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/e2e/vue.spec.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/env.d.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/eslint.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/index.html +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/package.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/playwright.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/public/favicon.ico +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/App.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/assets/base.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/assets/logo.svg +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/assets/main.css +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/HelloWorld.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/TheWelcome.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/WelcomeItem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/__tests__/HelloWorld.spec.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconCommunity.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconDocumentation.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconEcosystem.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconSupport.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/components/icons/IconTooling.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/main.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/router/index.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/stores/counter.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/views/AboutView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/src/views/HomeView.vue +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/tsconfig.app.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/tsconfig.node.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/tsconfig.vitest.json +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/vite.config.ts +0 -0
- /data/bundle-standalone/templates/{vuejs → javascript/vuejs}/typescript/no-headless-no-tailwind-template/vitest.config.ts +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/App.jsx +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/Gemfile +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/README.md +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/__tests__/App.test.tsx +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/debug.keystore +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/proguard-rules.pro +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/AndroidManifest.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/java/com/template/MainActivity.kt +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/java/com/template/MainApplication.kt +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/values/strings.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/app/src/main/res/values/styles.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradle/wrapper/gradle-wrapper.properties +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradle.properties +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradlew +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/gradlew.bat +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/android/settings.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/app.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/babel.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/index.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/Podfile +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/AppDelegate.swift +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/Images.xcassets/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/Info.plist +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/LaunchScreen.storyboard +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template/PrivacyInfo.xcprivacy +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template.xcodeproj/project.pbxproj +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/jest.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/metro.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/javascript/template/package.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/App.tsx +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/Gemfile +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/README.md +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/__tests__/App.test.tsx +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/debug.keystore +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/proguard-rules.pro +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/AndroidManifest.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/java/com/template/MainActivity.kt +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/java/com/template/MainApplication.kt +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/values/strings.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/app/src/main/res/values/styles.xml +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/build.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradle/wrapper/gradle-wrapper.properties +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradle.properties +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradlew +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/gradlew.bat +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/android/settings.gradle +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/app.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/babel.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/index.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/Podfile +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/AppDelegate.swift +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/Images.xcassets/Contents.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/Info.plist +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/LaunchScreen.storyboard +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template/PrivacyInfo.xcprivacy +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template.xcodeproj/project.pbxproj +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/jest.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/metro.config.js +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/package.json +0 -0
- /data/bundle-standalone/templates/{react-native → mobile/react-native}/typescript/template/tsconfig.json +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/djangoTemplate/__init__.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/djangoTemplate/asgi.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/djangoTemplate/settings.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/djangoTemplate/urls.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/djangoTemplate/wsgi.py +0 -0
- /data/bundle-standalone/templates/{django → python/django}/djangoTemplate/manage.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/ABOUT_THIS_TEMPLATE.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/CONTRIBUTING.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/Containerfile +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/HISTORY.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/LICENSE +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/MANIFEST.in +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/Makefile +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/README.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/apply.sh +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/docs/index.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/mkdocs.yml +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/VERSION +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/__main__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/base.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/admin.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/auth.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/commands.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/database.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/restapi/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/restapi/resources.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/webui/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/webui/templates/index.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/webui/templates/product.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/ext/webui/views.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/project_name/models.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/requirements-base.txt +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/requirements-test.txt +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/requirements.txt +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/settings.toml +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/setup.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/tests/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/tests/conftest.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/tests/test_api.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-project-template/wsgi.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/LICENSE +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/README.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/app.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/flask_screenshot.png +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/requirements.txt +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/about.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/contact.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/includes/_navbar.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/index.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/layout.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-bootstrap/templates/service.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/LICENSE.MD +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/Pipfile +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/Pipfile.lock +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/README.md +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/__init__.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/configuration.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/forms.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/models.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/base.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/index.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/list.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/login.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/templates/new.html +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/app/views.py +0 -0
- /data/bundle-standalone/templates/{flask → python/flask}/flask-template-with-useful-plugins/run.py +0 -0
|
@@ -667,7 +667,7 @@ function generateBanner() {
|
|
|
667
667
|
function generateVersionBanner() {
|
|
668
668
|
const version = (0,_utils_js__WEBPACK_IMPORTED_MODULE_3__/* .getPackageVersion */ .RB)();
|
|
669
669
|
return (0,boxen__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .A)(chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('📦 Version: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#ffa502')(`v${version}`) +
|
|
670
|
-
chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#95afc0')(' • ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('🎯 Frameworks: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#ffa502')('
|
|
670
|
+
chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#95afc0')(' • ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('🎯 Frameworks: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#ffa502')('75') +
|
|
671
671
|
chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#95afc0')(' • ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('📋 Templates: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#ffa502')('50+') +
|
|
672
672
|
chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#95afc0')(' • ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#00d2d3')('⚡ Status: ') + chalk__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Ay.hex('#10ac84')('Ready to scaffold!'), {
|
|
673
673
|
padding: { top: 0, bottom: 0, left: 2, right: 2 },
|
|
@@ -28382,158 +28382,158 @@ module.exports = [
|
|
|
28382
28382
|
/***/ 4877:
|
|
28383
28383
|
/***/ ((module) => {
|
|
28384
28384
|
|
|
28385
|
-
|
|
28386
|
-
|
|
28387
|
-
module.exports = {
|
|
28388
|
-
"aliceblue": [240, 248, 255],
|
|
28389
|
-
"antiquewhite": [250, 235, 215],
|
|
28390
|
-
"aqua": [0, 255, 255],
|
|
28391
|
-
"aquamarine": [127, 255, 212],
|
|
28392
|
-
"azure": [240, 255, 255],
|
|
28393
|
-
"beige": [245, 245, 220],
|
|
28394
|
-
"bisque": [255, 228, 196],
|
|
28395
|
-
"black": [0, 0, 0],
|
|
28396
|
-
"blanchedalmond": [255, 235, 205],
|
|
28397
|
-
"blue": [0, 0, 255],
|
|
28398
|
-
"blueviolet": [138, 43, 226],
|
|
28399
|
-
"brown": [165, 42, 42],
|
|
28400
|
-
"burlywood": [222, 184, 135],
|
|
28401
|
-
"cadetblue": [95, 158, 160],
|
|
28402
|
-
"chartreuse": [127, 255, 0],
|
|
28403
|
-
"chocolate": [210, 105, 30],
|
|
28404
|
-
"coral": [255, 127, 80],
|
|
28405
|
-
"cornflowerblue": [100, 149, 237],
|
|
28406
|
-
"cornsilk": [255, 248, 220],
|
|
28407
|
-
"crimson": [220, 20, 60],
|
|
28408
|
-
"cyan": [0, 255, 255],
|
|
28409
|
-
"darkblue": [0, 0, 139],
|
|
28410
|
-
"darkcyan": [0, 139, 139],
|
|
28411
|
-
"darkgoldenrod": [184, 134, 11],
|
|
28412
|
-
"darkgray": [169, 169, 169],
|
|
28413
|
-
"darkgreen": [0, 100, 0],
|
|
28414
|
-
"darkgrey": [169, 169, 169],
|
|
28415
|
-
"darkkhaki": [189, 183, 107],
|
|
28416
|
-
"darkmagenta": [139, 0, 139],
|
|
28417
|
-
"darkolivegreen": [85, 107, 47],
|
|
28418
|
-
"darkorange": [255, 140, 0],
|
|
28419
|
-
"darkorchid": [153, 50, 204],
|
|
28420
|
-
"darkred": [139, 0, 0],
|
|
28421
|
-
"darksalmon": [233, 150, 122],
|
|
28422
|
-
"darkseagreen": [143, 188, 143],
|
|
28423
|
-
"darkslateblue": [72, 61, 139],
|
|
28424
|
-
"darkslategray": [47, 79, 79],
|
|
28425
|
-
"darkslategrey": [47, 79, 79],
|
|
28426
|
-
"darkturquoise": [0, 206, 209],
|
|
28427
|
-
"darkviolet": [148, 0, 211],
|
|
28428
|
-
"deeppink": [255, 20, 147],
|
|
28429
|
-
"deepskyblue": [0, 191, 255],
|
|
28430
|
-
"dimgray": [105, 105, 105],
|
|
28431
|
-
"dimgrey": [105, 105, 105],
|
|
28432
|
-
"dodgerblue": [30, 144, 255],
|
|
28433
|
-
"firebrick": [178, 34, 34],
|
|
28434
|
-
"floralwhite": [255, 250, 240],
|
|
28435
|
-
"forestgreen": [34, 139, 34],
|
|
28436
|
-
"fuchsia": [255, 0, 255],
|
|
28437
|
-
"gainsboro": [220, 220, 220],
|
|
28438
|
-
"ghostwhite": [248, 248, 255],
|
|
28439
|
-
"gold": [255, 215, 0],
|
|
28440
|
-
"goldenrod": [218, 165, 32],
|
|
28441
|
-
"gray": [128, 128, 128],
|
|
28442
|
-
"green": [0, 128, 0],
|
|
28443
|
-
"greenyellow": [173, 255, 47],
|
|
28444
|
-
"grey": [128, 128, 128],
|
|
28445
|
-
"honeydew": [240, 255, 240],
|
|
28446
|
-
"hotpink": [255, 105, 180],
|
|
28447
|
-
"indianred": [205, 92, 92],
|
|
28448
|
-
"indigo": [75, 0, 130],
|
|
28449
|
-
"ivory": [255, 255, 240],
|
|
28450
|
-
"khaki": [240, 230, 140],
|
|
28451
|
-
"lavender": [230, 230, 250],
|
|
28452
|
-
"lavenderblush": [255, 240, 245],
|
|
28453
|
-
"lawngreen": [124, 252, 0],
|
|
28454
|
-
"lemonchiffon": [255, 250, 205],
|
|
28455
|
-
"lightblue": [173, 216, 230],
|
|
28456
|
-
"lightcoral": [240, 128, 128],
|
|
28457
|
-
"lightcyan": [224, 255, 255],
|
|
28458
|
-
"lightgoldenrodyellow": [250, 250, 210],
|
|
28459
|
-
"lightgray": [211, 211, 211],
|
|
28460
|
-
"lightgreen": [144, 238, 144],
|
|
28461
|
-
"lightgrey": [211, 211, 211],
|
|
28462
|
-
"lightpink": [255, 182, 193],
|
|
28463
|
-
"lightsalmon": [255, 160, 122],
|
|
28464
|
-
"lightseagreen": [32, 178, 170],
|
|
28465
|
-
"lightskyblue": [135, 206, 250],
|
|
28466
|
-
"lightslategray": [119, 136, 153],
|
|
28467
|
-
"lightslategrey": [119, 136, 153],
|
|
28468
|
-
"lightsteelblue": [176, 196, 222],
|
|
28469
|
-
"lightyellow": [255, 255, 224],
|
|
28470
|
-
"lime": [0, 255, 0],
|
|
28471
|
-
"limegreen": [50, 205, 50],
|
|
28472
|
-
"linen": [250, 240, 230],
|
|
28473
|
-
"magenta": [255, 0, 255],
|
|
28474
|
-
"maroon": [128, 0, 0],
|
|
28475
|
-
"mediumaquamarine": [102, 205, 170],
|
|
28476
|
-
"mediumblue": [0, 0, 205],
|
|
28477
|
-
"mediumorchid": [186, 85, 211],
|
|
28478
|
-
"mediumpurple": [147, 112, 219],
|
|
28479
|
-
"mediumseagreen": [60, 179, 113],
|
|
28480
|
-
"mediumslateblue": [123, 104, 238],
|
|
28481
|
-
"mediumspringgreen": [0, 250, 154],
|
|
28482
|
-
"mediumturquoise": [72, 209, 204],
|
|
28483
|
-
"mediumvioletred": [199, 21, 133],
|
|
28484
|
-
"midnightblue": [25, 25, 112],
|
|
28485
|
-
"mintcream": [245, 255, 250],
|
|
28486
|
-
"mistyrose": [255, 228, 225],
|
|
28487
|
-
"moccasin": [255, 228, 181],
|
|
28488
|
-
"navajowhite": [255, 222, 173],
|
|
28489
|
-
"navy": [0, 0, 128],
|
|
28490
|
-
"oldlace": [253, 245, 230],
|
|
28491
|
-
"olive": [128, 128, 0],
|
|
28492
|
-
"olivedrab": [107, 142, 35],
|
|
28493
|
-
"orange": [255, 165, 0],
|
|
28494
|
-
"orangered": [255, 69, 0],
|
|
28495
|
-
"orchid": [218, 112, 214],
|
|
28496
|
-
"palegoldenrod": [238, 232, 170],
|
|
28497
|
-
"palegreen": [152, 251, 152],
|
|
28498
|
-
"paleturquoise": [175, 238, 238],
|
|
28499
|
-
"palevioletred": [219, 112, 147],
|
|
28500
|
-
"papayawhip": [255, 239, 213],
|
|
28501
|
-
"peachpuff": [255, 218, 185],
|
|
28502
|
-
"peru": [205, 133, 63],
|
|
28503
|
-
"pink": [255, 192, 203],
|
|
28504
|
-
"plum": [221, 160, 221],
|
|
28505
|
-
"powderblue": [176, 224, 230],
|
|
28506
|
-
"purple": [128, 0, 128],
|
|
28507
|
-
"rebeccapurple": [102, 51, 153],
|
|
28508
|
-
"red": [255, 0, 0],
|
|
28509
|
-
"rosybrown": [188, 143, 143],
|
|
28510
|
-
"royalblue": [65, 105, 225],
|
|
28511
|
-
"saddlebrown": [139, 69, 19],
|
|
28512
|
-
"salmon": [250, 128, 114],
|
|
28513
|
-
"sandybrown": [244, 164, 96],
|
|
28514
|
-
"seagreen": [46, 139, 87],
|
|
28515
|
-
"seashell": [255, 245, 238],
|
|
28516
|
-
"sienna": [160, 82, 45],
|
|
28517
|
-
"silver": [192, 192, 192],
|
|
28518
|
-
"skyblue": [135, 206, 235],
|
|
28519
|
-
"slateblue": [106, 90, 205],
|
|
28520
|
-
"slategray": [112, 128, 144],
|
|
28521
|
-
"slategrey": [112, 128, 144],
|
|
28522
|
-
"snow": [255, 250, 250],
|
|
28523
|
-
"springgreen": [0, 255, 127],
|
|
28524
|
-
"steelblue": [70, 130, 180],
|
|
28525
|
-
"tan": [210, 180, 140],
|
|
28526
|
-
"teal": [0, 128, 128],
|
|
28527
|
-
"thistle": [216, 191, 216],
|
|
28528
|
-
"tomato": [255, 99, 71],
|
|
28529
|
-
"turquoise": [64, 224, 208],
|
|
28530
|
-
"violet": [238, 130, 238],
|
|
28531
|
-
"wheat": [245, 222, 179],
|
|
28532
|
-
"white": [255, 255, 255],
|
|
28533
|
-
"whitesmoke": [245, 245, 245],
|
|
28534
|
-
"yellow": [255, 255, 0],
|
|
28535
|
-
"yellowgreen": [154, 205, 50]
|
|
28536
|
-
};
|
|
28385
|
+
|
|
28386
|
+
|
|
28387
|
+
module.exports = {
|
|
28388
|
+
"aliceblue": [240, 248, 255],
|
|
28389
|
+
"antiquewhite": [250, 235, 215],
|
|
28390
|
+
"aqua": [0, 255, 255],
|
|
28391
|
+
"aquamarine": [127, 255, 212],
|
|
28392
|
+
"azure": [240, 255, 255],
|
|
28393
|
+
"beige": [245, 245, 220],
|
|
28394
|
+
"bisque": [255, 228, 196],
|
|
28395
|
+
"black": [0, 0, 0],
|
|
28396
|
+
"blanchedalmond": [255, 235, 205],
|
|
28397
|
+
"blue": [0, 0, 255],
|
|
28398
|
+
"blueviolet": [138, 43, 226],
|
|
28399
|
+
"brown": [165, 42, 42],
|
|
28400
|
+
"burlywood": [222, 184, 135],
|
|
28401
|
+
"cadetblue": [95, 158, 160],
|
|
28402
|
+
"chartreuse": [127, 255, 0],
|
|
28403
|
+
"chocolate": [210, 105, 30],
|
|
28404
|
+
"coral": [255, 127, 80],
|
|
28405
|
+
"cornflowerblue": [100, 149, 237],
|
|
28406
|
+
"cornsilk": [255, 248, 220],
|
|
28407
|
+
"crimson": [220, 20, 60],
|
|
28408
|
+
"cyan": [0, 255, 255],
|
|
28409
|
+
"darkblue": [0, 0, 139],
|
|
28410
|
+
"darkcyan": [0, 139, 139],
|
|
28411
|
+
"darkgoldenrod": [184, 134, 11],
|
|
28412
|
+
"darkgray": [169, 169, 169],
|
|
28413
|
+
"darkgreen": [0, 100, 0],
|
|
28414
|
+
"darkgrey": [169, 169, 169],
|
|
28415
|
+
"darkkhaki": [189, 183, 107],
|
|
28416
|
+
"darkmagenta": [139, 0, 139],
|
|
28417
|
+
"darkolivegreen": [85, 107, 47],
|
|
28418
|
+
"darkorange": [255, 140, 0],
|
|
28419
|
+
"darkorchid": [153, 50, 204],
|
|
28420
|
+
"darkred": [139, 0, 0],
|
|
28421
|
+
"darksalmon": [233, 150, 122],
|
|
28422
|
+
"darkseagreen": [143, 188, 143],
|
|
28423
|
+
"darkslateblue": [72, 61, 139],
|
|
28424
|
+
"darkslategray": [47, 79, 79],
|
|
28425
|
+
"darkslategrey": [47, 79, 79],
|
|
28426
|
+
"darkturquoise": [0, 206, 209],
|
|
28427
|
+
"darkviolet": [148, 0, 211],
|
|
28428
|
+
"deeppink": [255, 20, 147],
|
|
28429
|
+
"deepskyblue": [0, 191, 255],
|
|
28430
|
+
"dimgray": [105, 105, 105],
|
|
28431
|
+
"dimgrey": [105, 105, 105],
|
|
28432
|
+
"dodgerblue": [30, 144, 255],
|
|
28433
|
+
"firebrick": [178, 34, 34],
|
|
28434
|
+
"floralwhite": [255, 250, 240],
|
|
28435
|
+
"forestgreen": [34, 139, 34],
|
|
28436
|
+
"fuchsia": [255, 0, 255],
|
|
28437
|
+
"gainsboro": [220, 220, 220],
|
|
28438
|
+
"ghostwhite": [248, 248, 255],
|
|
28439
|
+
"gold": [255, 215, 0],
|
|
28440
|
+
"goldenrod": [218, 165, 32],
|
|
28441
|
+
"gray": [128, 128, 128],
|
|
28442
|
+
"green": [0, 128, 0],
|
|
28443
|
+
"greenyellow": [173, 255, 47],
|
|
28444
|
+
"grey": [128, 128, 128],
|
|
28445
|
+
"honeydew": [240, 255, 240],
|
|
28446
|
+
"hotpink": [255, 105, 180],
|
|
28447
|
+
"indianred": [205, 92, 92],
|
|
28448
|
+
"indigo": [75, 0, 130],
|
|
28449
|
+
"ivory": [255, 255, 240],
|
|
28450
|
+
"khaki": [240, 230, 140],
|
|
28451
|
+
"lavender": [230, 230, 250],
|
|
28452
|
+
"lavenderblush": [255, 240, 245],
|
|
28453
|
+
"lawngreen": [124, 252, 0],
|
|
28454
|
+
"lemonchiffon": [255, 250, 205],
|
|
28455
|
+
"lightblue": [173, 216, 230],
|
|
28456
|
+
"lightcoral": [240, 128, 128],
|
|
28457
|
+
"lightcyan": [224, 255, 255],
|
|
28458
|
+
"lightgoldenrodyellow": [250, 250, 210],
|
|
28459
|
+
"lightgray": [211, 211, 211],
|
|
28460
|
+
"lightgreen": [144, 238, 144],
|
|
28461
|
+
"lightgrey": [211, 211, 211],
|
|
28462
|
+
"lightpink": [255, 182, 193],
|
|
28463
|
+
"lightsalmon": [255, 160, 122],
|
|
28464
|
+
"lightseagreen": [32, 178, 170],
|
|
28465
|
+
"lightskyblue": [135, 206, 250],
|
|
28466
|
+
"lightslategray": [119, 136, 153],
|
|
28467
|
+
"lightslategrey": [119, 136, 153],
|
|
28468
|
+
"lightsteelblue": [176, 196, 222],
|
|
28469
|
+
"lightyellow": [255, 255, 224],
|
|
28470
|
+
"lime": [0, 255, 0],
|
|
28471
|
+
"limegreen": [50, 205, 50],
|
|
28472
|
+
"linen": [250, 240, 230],
|
|
28473
|
+
"magenta": [255, 0, 255],
|
|
28474
|
+
"maroon": [128, 0, 0],
|
|
28475
|
+
"mediumaquamarine": [102, 205, 170],
|
|
28476
|
+
"mediumblue": [0, 0, 205],
|
|
28477
|
+
"mediumorchid": [186, 85, 211],
|
|
28478
|
+
"mediumpurple": [147, 112, 219],
|
|
28479
|
+
"mediumseagreen": [60, 179, 113],
|
|
28480
|
+
"mediumslateblue": [123, 104, 238],
|
|
28481
|
+
"mediumspringgreen": [0, 250, 154],
|
|
28482
|
+
"mediumturquoise": [72, 209, 204],
|
|
28483
|
+
"mediumvioletred": [199, 21, 133],
|
|
28484
|
+
"midnightblue": [25, 25, 112],
|
|
28485
|
+
"mintcream": [245, 255, 250],
|
|
28486
|
+
"mistyrose": [255, 228, 225],
|
|
28487
|
+
"moccasin": [255, 228, 181],
|
|
28488
|
+
"navajowhite": [255, 222, 173],
|
|
28489
|
+
"navy": [0, 0, 128],
|
|
28490
|
+
"oldlace": [253, 245, 230],
|
|
28491
|
+
"olive": [128, 128, 0],
|
|
28492
|
+
"olivedrab": [107, 142, 35],
|
|
28493
|
+
"orange": [255, 165, 0],
|
|
28494
|
+
"orangered": [255, 69, 0],
|
|
28495
|
+
"orchid": [218, 112, 214],
|
|
28496
|
+
"palegoldenrod": [238, 232, 170],
|
|
28497
|
+
"palegreen": [152, 251, 152],
|
|
28498
|
+
"paleturquoise": [175, 238, 238],
|
|
28499
|
+
"palevioletred": [219, 112, 147],
|
|
28500
|
+
"papayawhip": [255, 239, 213],
|
|
28501
|
+
"peachpuff": [255, 218, 185],
|
|
28502
|
+
"peru": [205, 133, 63],
|
|
28503
|
+
"pink": [255, 192, 203],
|
|
28504
|
+
"plum": [221, 160, 221],
|
|
28505
|
+
"powderblue": [176, 224, 230],
|
|
28506
|
+
"purple": [128, 0, 128],
|
|
28507
|
+
"rebeccapurple": [102, 51, 153],
|
|
28508
|
+
"red": [255, 0, 0],
|
|
28509
|
+
"rosybrown": [188, 143, 143],
|
|
28510
|
+
"royalblue": [65, 105, 225],
|
|
28511
|
+
"saddlebrown": [139, 69, 19],
|
|
28512
|
+
"salmon": [250, 128, 114],
|
|
28513
|
+
"sandybrown": [244, 164, 96],
|
|
28514
|
+
"seagreen": [46, 139, 87],
|
|
28515
|
+
"seashell": [255, 245, 238],
|
|
28516
|
+
"sienna": [160, 82, 45],
|
|
28517
|
+
"silver": [192, 192, 192],
|
|
28518
|
+
"skyblue": [135, 206, 235],
|
|
28519
|
+
"slateblue": [106, 90, 205],
|
|
28520
|
+
"slategray": [112, 128, 144],
|
|
28521
|
+
"slategrey": [112, 128, 144],
|
|
28522
|
+
"snow": [255, 250, 250],
|
|
28523
|
+
"springgreen": [0, 255, 127],
|
|
28524
|
+
"steelblue": [70, 130, 180],
|
|
28525
|
+
"tan": [210, 180, 140],
|
|
28526
|
+
"teal": [0, 128, 128],
|
|
28527
|
+
"thistle": [216, 191, 216],
|
|
28528
|
+
"tomato": [255, 99, 71],
|
|
28529
|
+
"turquoise": [64, 224, 208],
|
|
28530
|
+
"violet": [238, 130, 238],
|
|
28531
|
+
"wheat": [245, 222, 179],
|
|
28532
|
+
"white": [255, 255, 255],
|
|
28533
|
+
"whitesmoke": [245, 245, 245],
|
|
28534
|
+
"yellow": [255, 255, 0],
|
|
28535
|
+
"yellowgreen": [154, 205, 50]
|
|
28536
|
+
};
|
|
28537
28537
|
|
|
28538
28538
|
|
|
28539
28539
|
/***/ }),
|
|
@@ -51392,40 +51392,376 @@ var lib = __webpack_require__(6824);
|
|
|
51392
51392
|
var fs_extra_lib = __webpack_require__(7187);
|
|
51393
51393
|
// EXTERNAL MODULE: ./dist/utils/pathResolver.js
|
|
51394
51394
|
var pathResolver = __webpack_require__(3294);
|
|
51395
|
-
;// ./dist/utils/
|
|
51395
|
+
;// ./dist/utils/templateResolver.js
|
|
51396
51396
|
/**
|
|
51397
|
-
*
|
|
51398
|
-
* Handles
|
|
51397
|
+
* Template path resolution utilities for Package Installer CLI v3.2.0
|
|
51398
|
+
* Handles template name generation and path resolution based on template.json
|
|
51399
51399
|
*/
|
|
51400
51400
|
|
|
51401
51401
|
|
|
51402
51402
|
|
|
51403
|
-
|
|
51404
|
-
|
|
51405
51403
|
// Helper functions to read template.json
|
|
51406
|
-
function
|
|
51404
|
+
function templateResolver_getTemplateConfig() {
|
|
51407
51405
|
const cliDir = (0,pathResolver/* getCliRootPath */.mw)();
|
|
51408
|
-
const templatePath = external_path_.join(cliDir, 'template.json');
|
|
51406
|
+
const templatePath = external_path_.join(cliDir, '/templates/template.json');
|
|
51409
51407
|
if (!fs_extra_lib.existsSync(templatePath)) {
|
|
51410
51408
|
throw new Error(`template.json not found at: ${templatePath}`);
|
|
51411
51409
|
}
|
|
51412
51410
|
return JSON.parse(fs_extra_lib.readFileSync(templatePath, 'utf-8'));
|
|
51413
51411
|
}
|
|
51414
|
-
|
|
51412
|
+
// Export getTemplateConfig for other modules to reuse
|
|
51413
|
+
|
|
51414
|
+
function templateResolver_getFrameworkConfig(framework) {
|
|
51415
|
+
const config = templateResolver_getTemplateConfig();
|
|
51416
|
+
// New template.json structure groups frameworks under top-level categories
|
|
51417
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51418
|
+
const cat = config[categoryKey];
|
|
51419
|
+
if (cat && typeof cat === 'object' && Object.prototype.hasOwnProperty.call(cat, framework)) {
|
|
51420
|
+
return cat[framework];
|
|
51421
|
+
}
|
|
51422
|
+
}
|
|
51423
|
+
return undefined;
|
|
51424
|
+
}
|
|
51425
|
+
// Export for use in other modules
|
|
51426
|
+
|
|
51427
|
+
/**
|
|
51428
|
+
* Generate template name based on framework options - use exact template names from template.json
|
|
51429
|
+
* Only generates for frameworks that HAVE options
|
|
51430
|
+
*/
|
|
51431
|
+
function generateTemplateName(framework, options) {
|
|
51432
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51433
|
+
// Only generate template names for frameworks that have options
|
|
51434
|
+
if (!config?.options && !config?.ui && !config?.bundlers) {
|
|
51435
|
+
return '';
|
|
51436
|
+
}
|
|
51437
|
+
// If framework has predefined templates, select the matching one based on options
|
|
51438
|
+
if (config.templates && config.templates.length > 0) {
|
|
51439
|
+
// Build template name based on selected options
|
|
51440
|
+
const parts = [];
|
|
51441
|
+
// Handle src option (only for nextjs and reactjs)
|
|
51442
|
+
if ((framework === 'nextjs' || framework === 'reactjs') && config.options?.includes('src')) {
|
|
51443
|
+
if (options.src) {
|
|
51444
|
+
parts.push('src');
|
|
51445
|
+
}
|
|
51446
|
+
else {
|
|
51447
|
+
parts.push('no-src');
|
|
51448
|
+
}
|
|
51449
|
+
}
|
|
51450
|
+
// Handle UI library - only add if actually selected (not "none")
|
|
51451
|
+
// When UI is "none", templates simply omit the UI part from their names
|
|
51452
|
+
if (config.ui && config.ui.length > 0) {
|
|
51453
|
+
if (options.ui && options.ui !== 'none') {
|
|
51454
|
+
parts.push(options.ui);
|
|
51455
|
+
}
|
|
51456
|
+
// For "none" selection, don't add any UI part to the template name
|
|
51457
|
+
}
|
|
51458
|
+
// Handle tailwind option
|
|
51459
|
+
if (config.options?.includes('tailwind')) {
|
|
51460
|
+
if (options.tailwind) {
|
|
51461
|
+
parts.push('tailwind');
|
|
51462
|
+
}
|
|
51463
|
+
else {
|
|
51464
|
+
parts.push('no-tailwind');
|
|
51465
|
+
}
|
|
51466
|
+
}
|
|
51467
|
+
const generatedName = parts.join('-') + '-template';
|
|
51468
|
+
// Find exact match in templates array
|
|
51469
|
+
const exactMatch = config.templates.find((template) => template === generatedName);
|
|
51470
|
+
if (exactMatch) {
|
|
51471
|
+
return exactMatch;
|
|
51472
|
+
}
|
|
51473
|
+
// If no exact match, return the first template as fallback
|
|
51474
|
+
return config.templates[0];
|
|
51475
|
+
}
|
|
51476
|
+
return '';
|
|
51477
|
+
}
|
|
51478
|
+
/**
|
|
51479
|
+
* Resolve template directory path based on framework and template name
|
|
51480
|
+
*/
|
|
51481
|
+
function resolveTemplatePath(projectInfo) {
|
|
51482
|
+
const { framework, language, templateName } = projectInfo;
|
|
51483
|
+
const templatesRoot = (0,pathResolver/* getTemplatesPath */.vD)();
|
|
51484
|
+
// Helper: find category that contains the framework
|
|
51485
|
+
function findCategoryForFramework(frameworkName) {
|
|
51486
|
+
const config = templateResolver_getTemplateConfig();
|
|
51487
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51488
|
+
const cat = config[categoryKey];
|
|
51489
|
+
if (cat && typeof cat === 'object' && Object.prototype.hasOwnProperty.call(cat, frameworkName)) {
|
|
51490
|
+
return categoryKey;
|
|
51491
|
+
}
|
|
51492
|
+
}
|
|
51493
|
+
return null;
|
|
51494
|
+
}
|
|
51495
|
+
// Combination templates are stored under a special category (e.g., combination-templates)
|
|
51496
|
+
if (framework.includes('+')) {
|
|
51497
|
+
const frameworkDir = framework.replace(/\+/g, '-');
|
|
51498
|
+
const combCategory = 'combination-templates';
|
|
51499
|
+
const combinationPath = external_path_.join(templatesRoot, combCategory, frameworkDir);
|
|
51500
|
+
if (fs_extra_lib.existsSync(combinationPath)) {
|
|
51501
|
+
if (language) {
|
|
51502
|
+
const langPath = external_path_.join(combinationPath, language);
|
|
51503
|
+
if (fs_extra_lib.existsSync(langPath)) {
|
|
51504
|
+
if (templateName) {
|
|
51505
|
+
const templatePath = external_path_.join(langPath, templateName);
|
|
51506
|
+
if (fs_extra_lib.existsSync(templatePath))
|
|
51507
|
+
return templatePath;
|
|
51508
|
+
}
|
|
51509
|
+
return langPath;
|
|
51510
|
+
}
|
|
51511
|
+
}
|
|
51512
|
+
if (templateName) {
|
|
51513
|
+
const templatePath = external_path_.join(combinationPath, templateName);
|
|
51514
|
+
if (fs_extra_lib.existsSync(templatePath))
|
|
51515
|
+
return templatePath;
|
|
51516
|
+
}
|
|
51517
|
+
return combinationPath;
|
|
51518
|
+
}
|
|
51519
|
+
}
|
|
51520
|
+
// Regular frameworks
|
|
51521
|
+
const category = findCategoryForFramework(framework);
|
|
51522
|
+
let baseFrameworkPath = external_path_.join(templatesRoot, framework); // default fallback
|
|
51523
|
+
if (category) {
|
|
51524
|
+
baseFrameworkPath = external_path_.join(templatesRoot, category, framework);
|
|
51525
|
+
// If the expected folder doesn't exist on disk (config/fs mismatch), try scanning categories
|
|
51526
|
+
if (!fs_extra_lib.existsSync(baseFrameworkPath)) {
|
|
51527
|
+
const topLevelItems = fs_extra_lib.readdirSync(templatesRoot, { withFileTypes: true });
|
|
51528
|
+
for (const dirent of topLevelItems) {
|
|
51529
|
+
if (!dirent.isDirectory())
|
|
51530
|
+
continue;
|
|
51531
|
+
const candidate = external_path_.join(templatesRoot, dirent.name, framework);
|
|
51532
|
+
if (fs_extra_lib.existsSync(candidate)) {
|
|
51533
|
+
baseFrameworkPath = candidate;
|
|
51534
|
+
break;
|
|
51535
|
+
}
|
|
51536
|
+
}
|
|
51537
|
+
}
|
|
51538
|
+
}
|
|
51539
|
+
else {
|
|
51540
|
+
// Fallback 1: try to find the framework directory under any category on disk
|
|
51541
|
+
let found = false;
|
|
51542
|
+
const topLevelItems = fs_extra_lib.readdirSync(templatesRoot, { withFileTypes: true });
|
|
51543
|
+
for (const dirent of topLevelItems) {
|
|
51544
|
+
if (!dirent.isDirectory())
|
|
51545
|
+
continue;
|
|
51546
|
+
const candidate = external_path_.join(templatesRoot, dirent.name, framework);
|
|
51547
|
+
if (fs_extra_lib.existsSync(candidate)) {
|
|
51548
|
+
baseFrameworkPath = candidate;
|
|
51549
|
+
found = true;
|
|
51550
|
+
break;
|
|
51551
|
+
}
|
|
51552
|
+
}
|
|
51553
|
+
if (!found) {
|
|
51554
|
+
// keep default baseFrameworkPath (top-level legacy location)
|
|
51555
|
+
}
|
|
51556
|
+
}
|
|
51557
|
+
// If a language-specific folder exists, prefer it
|
|
51558
|
+
// Use template.json config to resolve paths when available
|
|
51559
|
+
const fwConfig = templateResolver_getFrameworkConfig(framework);
|
|
51560
|
+
if (fwConfig) {
|
|
51561
|
+
const templatesEntry = fwConfig.templates;
|
|
51562
|
+
// Helper to test candidate paths
|
|
51563
|
+
const testCandidates = (candidates) => {
|
|
51564
|
+
for (const c of candidates) {
|
|
51565
|
+
if (fs_extra_lib.existsSync(c))
|
|
51566
|
+
return c;
|
|
51567
|
+
}
|
|
51568
|
+
return null;
|
|
51569
|
+
};
|
|
51570
|
+
// If templates is an object keyed by language
|
|
51571
|
+
if (templatesEntry && typeof templatesEntry === 'object' && !Array.isArray(templatesEntry)) {
|
|
51572
|
+
// templatesEntry is like { "typescript": ["a","b"], "javascript": [...] }
|
|
51573
|
+
const langKey = language || Object.keys(templatesEntry)[0];
|
|
51574
|
+
const list = templatesEntry[langKey] || templatesEntry[Object.keys(templatesEntry)[0]] || [];
|
|
51575
|
+
if (templateName && list.includes(templateName)) {
|
|
51576
|
+
// Prefer language folder then direct
|
|
51577
|
+
const candidates = [
|
|
51578
|
+
external_path_.join(baseFrameworkPath, langKey, templateName),
|
|
51579
|
+
external_path_.join(baseFrameworkPath, templateName)
|
|
51580
|
+
];
|
|
51581
|
+
const found = testCandidates(candidates);
|
|
51582
|
+
if (found)
|
|
51583
|
+
return found;
|
|
51584
|
+
}
|
|
51585
|
+
// If no specific templateName, prefer language folder if exists
|
|
51586
|
+
const langDir = external_path_.join(baseFrameworkPath, langKey);
|
|
51587
|
+
if (fs_extra_lib.existsSync(langDir))
|
|
51588
|
+
return langDir;
|
|
51589
|
+
// fallback to first template folder for any language
|
|
51590
|
+
const anyTemplate = list[0];
|
|
51591
|
+
if (anyTemplate) {
|
|
51592
|
+
const candidates = [
|
|
51593
|
+
external_path_.join(baseFrameworkPath, langKey, anyTemplate),
|
|
51594
|
+
external_path_.join(baseFrameworkPath, anyTemplate)
|
|
51595
|
+
];
|
|
51596
|
+
const found = testCandidates(candidates);
|
|
51597
|
+
if (found)
|
|
51598
|
+
return found;
|
|
51599
|
+
}
|
|
51600
|
+
}
|
|
51601
|
+
// If templates is an array
|
|
51602
|
+
if (Array.isArray(templatesEntry)) {
|
|
51603
|
+
if (templateName && templatesEntry.includes(templateName)) {
|
|
51604
|
+
const candidates = [
|
|
51605
|
+
external_path_.join(baseFrameworkPath, language || '', templateName),
|
|
51606
|
+
external_path_.join(baseFrameworkPath, templateName)
|
|
51607
|
+
];
|
|
51608
|
+
const found = testCandidates(candidates);
|
|
51609
|
+
if (found)
|
|
51610
|
+
return found;
|
|
51611
|
+
}
|
|
51612
|
+
// if no templateName, prefer language subdir if it exists
|
|
51613
|
+
if (language) {
|
|
51614
|
+
const langDir = external_path_.join(baseFrameworkPath, language);
|
|
51615
|
+
if (fs_extra_lib.existsSync(langDir))
|
|
51616
|
+
return langDir;
|
|
51617
|
+
}
|
|
51618
|
+
// fallback to first template folder if it exists
|
|
51619
|
+
const first = templatesEntry[0];
|
|
51620
|
+
if (first) {
|
|
51621
|
+
const candidates = [
|
|
51622
|
+
external_path_.join(baseFrameworkPath, language || '', first),
|
|
51623
|
+
external_path_.join(baseFrameworkPath, first)
|
|
51624
|
+
];
|
|
51625
|
+
const found = testCandidates(candidates);
|
|
51626
|
+
if (found)
|
|
51627
|
+
return found;
|
|
51628
|
+
}
|
|
51629
|
+
}
|
|
51630
|
+
// If templates not declared or nothing matched, prefer language dir if exists
|
|
51631
|
+
if (language) {
|
|
51632
|
+
const langDir = external_path_.join(baseFrameworkPath, language);
|
|
51633
|
+
if (fs_extra_lib.existsSync(langDir))
|
|
51634
|
+
return langDir;
|
|
51635
|
+
}
|
|
51636
|
+
// Direct templateName fallback
|
|
51637
|
+
if (templateName) {
|
|
51638
|
+
const candidate = external_path_.join(baseFrameworkPath, templateName);
|
|
51639
|
+
if (fs_extra_lib.existsSync(candidate))
|
|
51640
|
+
return candidate;
|
|
51641
|
+
}
|
|
51642
|
+
// finally, return baseFrameworkPath (may or may not exist)
|
|
51643
|
+
return baseFrameworkPath;
|
|
51644
|
+
}
|
|
51645
|
+
// If no fwConfig available, fallback to previously implemented resolution (language dir, templateName, base)
|
|
51646
|
+
if (language) {
|
|
51647
|
+
const langDir = external_path_.join(baseFrameworkPath, language);
|
|
51648
|
+
if (fs_extra_lib.existsSync(langDir)) {
|
|
51649
|
+
if (templateName) {
|
|
51650
|
+
const candidate = external_path_.join(langDir, templateName);
|
|
51651
|
+
if (fs_extra_lib.existsSync(candidate))
|
|
51652
|
+
return candidate;
|
|
51653
|
+
}
|
|
51654
|
+
return langDir;
|
|
51655
|
+
}
|
|
51656
|
+
}
|
|
51657
|
+
if (templateName) {
|
|
51658
|
+
const candidate = external_path_.join(baseFrameworkPath, templateName);
|
|
51659
|
+
if (fs_extra_lib.existsSync(candidate))
|
|
51660
|
+
return candidate;
|
|
51661
|
+
}
|
|
51662
|
+
return baseFrameworkPath;
|
|
51663
|
+
}
|
|
51664
|
+
/**
|
|
51665
|
+
* Check if template directory exists
|
|
51666
|
+
*/
|
|
51667
|
+
function templateExists(templatePath) {
|
|
51668
|
+
return fs_extra_lib.existsSync(templatePath) && fs_extra_lib.statSync(templatePath).isDirectory();
|
|
51669
|
+
}
|
|
51670
|
+
|
|
51671
|
+
;// ./dist/utils/prompts.js
|
|
51672
|
+
/**
|
|
51673
|
+
* User interaction prompts for Package Installer CLI v3.2.0
|
|
51674
|
+
* Handles framework selection and template configuration based on template.json
|
|
51675
|
+
*/
|
|
51676
|
+
|
|
51677
|
+
|
|
51678
|
+
|
|
51679
|
+
|
|
51680
|
+
|
|
51681
|
+
// Reuse centralized getTemplateConfig from templateResolver
|
|
51682
|
+
function getAvailableFrameworks(typeFilter) {
|
|
51415
51683
|
const config = getTemplateConfig();
|
|
51416
|
-
|
|
51684
|
+
const frameworks = [];
|
|
51685
|
+
// template.json groups frameworks by top-level categories
|
|
51686
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51687
|
+
const cat = config[categoryKey];
|
|
51688
|
+
if (cat && typeof cat === 'object') {
|
|
51689
|
+
for (const fw of Object.keys(cat)) {
|
|
51690
|
+
// If a typeFilter is provided, check the framework's declared 'type' or the category key
|
|
51691
|
+
if (typeFilter) {
|
|
51692
|
+
const fwConfig = cat[fw];
|
|
51693
|
+
const declaredType = (fwConfig && fwConfig.type) || categoryKey;
|
|
51694
|
+
if (declaredType === typeFilter) {
|
|
51695
|
+
frameworks.push(fw);
|
|
51696
|
+
}
|
|
51697
|
+
}
|
|
51698
|
+
else {
|
|
51699
|
+
frameworks.push(fw);
|
|
51700
|
+
}
|
|
51701
|
+
}
|
|
51702
|
+
}
|
|
51703
|
+
}
|
|
51704
|
+
return frameworks;
|
|
51417
51705
|
}
|
|
51418
|
-
|
|
51706
|
+
/**
|
|
51707
|
+
* Return a list of unique 'type' values available in template.json (e.g., 'mobile','desktop','frontend')
|
|
51708
|
+
*/
|
|
51709
|
+
function getAvailableTypes() {
|
|
51419
51710
|
const config = getTemplateConfig();
|
|
51420
|
-
|
|
51711
|
+
const types = new Set();
|
|
51712
|
+
for (const categoryKey of Object.keys(config)) {
|
|
51713
|
+
const cat = config[categoryKey];
|
|
51714
|
+
if (cat && typeof cat === 'object') {
|
|
51715
|
+
for (const fw of Object.keys(cat)) {
|
|
51716
|
+
const fwConfig = cat[fw];
|
|
51717
|
+
if (fwConfig && fwConfig.type) {
|
|
51718
|
+
types.add(fwConfig.type);
|
|
51719
|
+
}
|
|
51720
|
+
else {
|
|
51721
|
+
// fallback to top-level category as type
|
|
51722
|
+
types.add(categoryKey);
|
|
51723
|
+
}
|
|
51724
|
+
}
|
|
51725
|
+
}
|
|
51726
|
+
}
|
|
51727
|
+
// Filter out types that should not be shown to the user
|
|
51728
|
+
const blacklist = new Set(['api', 'frontend', 'backend', 'fullstack']);
|
|
51729
|
+
return Array.from(types).filter(t => !blacklist.has(String(t).toLowerCase())).sort();
|
|
51730
|
+
}
|
|
51731
|
+
// `getFrameworkConfig` is provided by `templateResolver.ts` and imported above.
|
|
51732
|
+
function getCategories() {
|
|
51733
|
+
const config = templateResolver_getTemplateConfig();
|
|
51734
|
+
return Object.keys(config);
|
|
51735
|
+
}
|
|
51736
|
+
function getFrameworksForCategory(category) {
|
|
51737
|
+
const config = templateResolver_getTemplateConfig();
|
|
51738
|
+
const cat = config[category];
|
|
51739
|
+
if (!cat || typeof cat !== 'object')
|
|
51740
|
+
return [];
|
|
51741
|
+
return Object.keys(cat);
|
|
51421
51742
|
}
|
|
51422
51743
|
function getFrameworkDescription(framework) {
|
|
51423
|
-
const config =
|
|
51744
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51424
51745
|
return config?.description || 'Modern framework';
|
|
51425
51746
|
}
|
|
51426
51747
|
function capitalize(str) {
|
|
51427
51748
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
51428
51749
|
}
|
|
51750
|
+
// Human-friendly display names for types/categories
|
|
51751
|
+
const DISPLAY_NAME_MAP = {
|
|
51752
|
+
'c++_c': 'C++/C',
|
|
51753
|
+
'combination-templates': 'Combination Templates',
|
|
51754
|
+
'javascript': 'JavaScript',
|
|
51755
|
+
'go': 'Go',
|
|
51756
|
+
'mobile': 'Mobile',
|
|
51757
|
+
'desktop': 'Desktop',
|
|
51758
|
+
'rust': 'Rust',
|
|
51759
|
+
'python': 'Python',
|
|
51760
|
+
'ruby': 'Ruby'
|
|
51761
|
+
};
|
|
51762
|
+
function displayTypeName(key) {
|
|
51763
|
+
return DISPLAY_NAME_MAP[key] || capitalize(key.replace(/[-_]/g, ' '));
|
|
51764
|
+
}
|
|
51429
51765
|
/**
|
|
51430
51766
|
* Project name prompt with enhanced styling
|
|
51431
51767
|
*/
|
|
@@ -51461,7 +51797,28 @@ async function promptProjectName() {
|
|
|
51461
51797
|
* Framework selection prompt with enhanced styling
|
|
51462
51798
|
*/
|
|
51463
51799
|
async function promptFrameworkSelection() {
|
|
51464
|
-
|
|
51800
|
+
// First prompt: category selection (top-level keys from template.json)
|
|
51801
|
+
const categories = getCategories();
|
|
51802
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n🚀 Choose a category\n'));
|
|
51803
|
+
const { category } = await lib["default"].prompt([
|
|
51804
|
+
{
|
|
51805
|
+
type: 'list',
|
|
51806
|
+
name: 'category',
|
|
51807
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a category:`,
|
|
51808
|
+
choices: categories.map(cat => ({
|
|
51809
|
+
name: `${source/* default */.Ay.green('●')} ${source/* default */.Ay.bold(displayTypeName(cat))}`,
|
|
51810
|
+
value: cat,
|
|
51811
|
+
short: displayTypeName(cat)
|
|
51812
|
+
})),
|
|
51813
|
+
pageSize: 12
|
|
51814
|
+
}
|
|
51815
|
+
]);
|
|
51816
|
+
// Then prompt frameworks within the selected category
|
|
51817
|
+
const frameworks = getFrameworksForCategory(category);
|
|
51818
|
+
if (!frameworks || frameworks.length === 0) {
|
|
51819
|
+
console.log(source/* default */.Ay.yellow('⚠️ No frameworks found in selected category'));
|
|
51820
|
+
return '';
|
|
51821
|
+
}
|
|
51465
51822
|
console.log(source/* default */.Ay.hex('#00d2d3')('\n🚀 Framework Selection\n'));
|
|
51466
51823
|
const { framework } = await lib["default"].prompt([
|
|
51467
51824
|
{
|
|
@@ -51469,7 +51826,7 @@ async function promptFrameworkSelection() {
|
|
|
51469
51826
|
name: 'framework',
|
|
51470
51827
|
message: `${source/* default */.Ay.blue('❯')} Choose your framework:`,
|
|
51471
51828
|
choices: frameworks.map(fw => ({
|
|
51472
|
-
name: `${source/* default */.Ay.green('●')} ${source/* default */.Ay.bold(capitalize(fw))} ${source/* default */.Ay.gray('- ' + getFrameworkDescription(fw))}`,
|
|
51829
|
+
name: `${source/* default */.Ay.green('●')} ${source/* default */.Ay.bold(capitalize(fw))} ${source/* default */.Ay.gray('- ' + (getFrameworkDescription(fw) || ''))}`,
|
|
51473
51830
|
value: fw,
|
|
51474
51831
|
short: capitalize(fw)
|
|
51475
51832
|
})),
|
|
@@ -51482,7 +51839,7 @@ async function promptFrameworkSelection() {
|
|
|
51482
51839
|
* Language selection prompt - framework specific from template.json
|
|
51483
51840
|
*/
|
|
51484
51841
|
async function promptLanguageSelection(framework) {
|
|
51485
|
-
const config =
|
|
51842
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51486
51843
|
if (!config.languages || config.languages.length <= 1) {
|
|
51487
51844
|
const defaultLang = config.languages?.[0] || 'javascript';
|
|
51488
51845
|
console.log(source/* default */.Ay.cyan(`💻 Using ${source/* default */.Ay.bold(defaultLang)} as default language`));
|
|
@@ -51514,36 +51871,88 @@ async function promptLanguageSelection(framework) {
|
|
|
51514
51871
|
/**
|
|
51515
51872
|
* Template selection with enhanced styling
|
|
51516
51873
|
*/
|
|
51517
|
-
async function promptTemplateSelection(framework) {
|
|
51518
|
-
const config =
|
|
51874
|
+
async function promptTemplateSelection(framework, language) {
|
|
51875
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51519
51876
|
if (!config || !config.templates) {
|
|
51520
51877
|
return '';
|
|
51521
51878
|
}
|
|
51522
|
-
|
|
51523
|
-
|
|
51524
|
-
|
|
51525
|
-
|
|
51526
|
-
|
|
51527
|
-
|
|
51528
|
-
{
|
|
51529
|
-
type: 'list',
|
|
51530
|
-
name: 'template',
|
|
51531
|
-
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)}:`,
|
|
51532
|
-
choices: config.templates.map((template) => ({
|
|
51533
|
-
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51534
|
-
value: template,
|
|
51535
|
-
short: template
|
|
51536
|
-
})),
|
|
51537
|
-
pageSize: 8
|
|
51879
|
+
const templatesEntry = config.templates;
|
|
51880
|
+
// If templates is an array
|
|
51881
|
+
if (Array.isArray(templatesEntry)) {
|
|
51882
|
+
if (templatesEntry.length === 1) {
|
|
51883
|
+
console.log(source/* default */.Ay.cyan(`📋 Using ${source/* default */.Ay.bold(templatesEntry[0])} template`));
|
|
51884
|
+
return templatesEntry[0];
|
|
51538
51885
|
}
|
|
51539
|
-
|
|
51540
|
-
|
|
51886
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n📋 Template Selection\n'));
|
|
51887
|
+
const { template } = await lib["default"].prompt([
|
|
51888
|
+
{
|
|
51889
|
+
type: 'list',
|
|
51890
|
+
name: 'template',
|
|
51891
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)}:`,
|
|
51892
|
+
choices: templatesEntry.map((template) => ({
|
|
51893
|
+
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51894
|
+
value: template,
|
|
51895
|
+
short: template
|
|
51896
|
+
})),
|
|
51897
|
+
pageSize: 8
|
|
51898
|
+
}
|
|
51899
|
+
]);
|
|
51900
|
+
return template;
|
|
51901
|
+
}
|
|
51902
|
+
// If templates is an object keyed by language
|
|
51903
|
+
if (typeof templatesEntry === 'object') {
|
|
51904
|
+
const langKey = language || Object.keys(templatesEntry)[0];
|
|
51905
|
+
const list = templatesEntry[langKey] || [];
|
|
51906
|
+
if (list.length === 0) {
|
|
51907
|
+
// Fallback: flatten all templates across languages
|
|
51908
|
+
const flattenedAny = Object.values(templatesEntry).flat();
|
|
51909
|
+
const flattened = flattenedAny.map(String);
|
|
51910
|
+
if (flattened.length === 0)
|
|
51911
|
+
return '';
|
|
51912
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n📋 Template Selection\n'));
|
|
51913
|
+
const unique = Array.from(new Set(flattened));
|
|
51914
|
+
const { template } = await lib["default"].prompt([
|
|
51915
|
+
{
|
|
51916
|
+
type: 'list',
|
|
51917
|
+
name: 'template',
|
|
51918
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)}:`,
|
|
51919
|
+
choices: unique.map((template) => ({
|
|
51920
|
+
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51921
|
+
value: template,
|
|
51922
|
+
short: template
|
|
51923
|
+
})),
|
|
51924
|
+
pageSize: 8
|
|
51925
|
+
}
|
|
51926
|
+
]);
|
|
51927
|
+
return template;
|
|
51928
|
+
}
|
|
51929
|
+
if (list.length === 1) {
|
|
51930
|
+
console.log(source/* default */.Ay.cyan(`📋 Using ${source/* default */.Ay.bold(list[0])} template`));
|
|
51931
|
+
return list[0];
|
|
51932
|
+
}
|
|
51933
|
+
console.log(source/* default */.Ay.hex('#00d2d3')('\n📋 Template Selection\n'));
|
|
51934
|
+
const { template } = await lib["default"].prompt([
|
|
51935
|
+
{
|
|
51936
|
+
type: 'list',
|
|
51937
|
+
name: 'template',
|
|
51938
|
+
message: `${source/* default */.Ay.blue('❯')} Choose a template for ${source/* default */.Ay.bold(framework)} (${source/* default */.Ay.bold(langKey)}):`,
|
|
51939
|
+
choices: list.map((template) => ({
|
|
51940
|
+
name: `${source/* default */.Ay.green('▸')} ${template.replace(/-/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase())}`,
|
|
51941
|
+
value: template,
|
|
51942
|
+
short: template
|
|
51943
|
+
})),
|
|
51944
|
+
pageSize: 8
|
|
51945
|
+
}
|
|
51946
|
+
]);
|
|
51947
|
+
return template;
|
|
51948
|
+
}
|
|
51949
|
+
return '';
|
|
51541
51950
|
}
|
|
51542
51951
|
/**
|
|
51543
51952
|
* Framework options prompt - handles UI, bundlers, and other options
|
|
51544
51953
|
*/
|
|
51545
51954
|
async function promptFrameworkOptions(framework) {
|
|
51546
|
-
const config =
|
|
51955
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51547
51956
|
if (!config || (!config.ui && !config.options && !config.bundlers)) {
|
|
51548
51957
|
return {};
|
|
51549
51958
|
}
|
|
@@ -51722,15 +52131,15 @@ async function promptFeatureProvider(category, framework) {
|
|
|
51722
52131
|
* Helper functions to check framework capabilities
|
|
51723
52132
|
*/
|
|
51724
52133
|
function hasFrameworkOptions(framework) {
|
|
51725
|
-
const config =
|
|
52134
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51726
52135
|
return !!(config?.options && config.options.length > 0);
|
|
51727
52136
|
}
|
|
51728
52137
|
function hasUIOptions(framework) {
|
|
51729
|
-
const config =
|
|
52138
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51730
52139
|
return !!(config?.ui && config.ui.length > 0);
|
|
51731
52140
|
}
|
|
51732
52141
|
function hasBundlerOptions(framework) {
|
|
51733
|
-
const config =
|
|
52142
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51734
52143
|
return !!(config?.bundlers && config.bundlers.length > 0);
|
|
51735
52144
|
}
|
|
51736
52145
|
function hasTemplateSelection(framework) {
|
|
@@ -51738,7 +52147,7 @@ function hasTemplateSelection(framework) {
|
|
|
51738
52147
|
return !!(config?.templates && config.templates.length > 0);
|
|
51739
52148
|
}
|
|
51740
52149
|
function shouldShowTemplates(framework) {
|
|
51741
|
-
const config =
|
|
52150
|
+
const config = templateResolver_getFrameworkConfig(framework);
|
|
51742
52151
|
// Show templates ONLY for frameworks that have templates but NO options/ui/bundlers
|
|
51743
52152
|
// Frameworks WITH options should generate template names based on user choices
|
|
51744
52153
|
const hasOptions = !!(config?.options || config?.ui || config?.bundlers);
|
|
@@ -51746,154 +52155,6 @@ function shouldShowTemplates(framework) {
|
|
|
51746
52155
|
return hasTemplates && !hasOptions;
|
|
51747
52156
|
}
|
|
51748
52157
|
|
|
51749
|
-
;// ./dist/utils/templateResolver.js
|
|
51750
|
-
/**
|
|
51751
|
-
* Template path resolution utilities for Package Installer CLI v3.2.0
|
|
51752
|
-
* Handles template name generation and path resolution based on template.json
|
|
51753
|
-
*/
|
|
51754
|
-
|
|
51755
|
-
|
|
51756
|
-
|
|
51757
|
-
// Helper functions to read template.json
|
|
51758
|
-
function templateResolver_getTemplateConfig() {
|
|
51759
|
-
const cliDir = (0,pathResolver/* getCliRootPath */.mw)();
|
|
51760
|
-
const templatePath = external_path_.join(cliDir, 'template.json');
|
|
51761
|
-
if (!fs_extra_lib.existsSync(templatePath)) {
|
|
51762
|
-
throw new Error(`template.json not found at: ${templatePath}`);
|
|
51763
|
-
}
|
|
51764
|
-
return JSON.parse(fs_extra_lib.readFileSync(templatePath, 'utf-8'));
|
|
51765
|
-
}
|
|
51766
|
-
function templateResolver_getFrameworkConfig(framework) {
|
|
51767
|
-
const config = templateResolver_getTemplateConfig();
|
|
51768
|
-
return config.frameworks[framework];
|
|
51769
|
-
}
|
|
51770
|
-
// Export for use in other modules
|
|
51771
|
-
|
|
51772
|
-
/**
|
|
51773
|
-
* Generate template name based on framework options - use exact template names from template.json
|
|
51774
|
-
* Only generates for frameworks that HAVE options
|
|
51775
|
-
*/
|
|
51776
|
-
function generateTemplateName(framework, options) {
|
|
51777
|
-
const config = templateResolver_getFrameworkConfig(framework);
|
|
51778
|
-
// Only generate template names for frameworks that have options
|
|
51779
|
-
if (!config?.options && !config?.ui && !config?.bundlers) {
|
|
51780
|
-
return '';
|
|
51781
|
-
}
|
|
51782
|
-
// If framework has predefined templates, select the matching one based on options
|
|
51783
|
-
if (config.templates && config.templates.length > 0) {
|
|
51784
|
-
// Build template name based on selected options
|
|
51785
|
-
const parts = [];
|
|
51786
|
-
// Handle src option (only for nextjs and reactjs)
|
|
51787
|
-
if ((framework === 'nextjs' || framework === 'reactjs') && config.options?.includes('src')) {
|
|
51788
|
-
if (options.src) {
|
|
51789
|
-
parts.push('src');
|
|
51790
|
-
}
|
|
51791
|
-
else {
|
|
51792
|
-
parts.push('no-src');
|
|
51793
|
-
}
|
|
51794
|
-
}
|
|
51795
|
-
// Handle UI library - only add if actually selected (not "none")
|
|
51796
|
-
// When UI is "none", templates simply omit the UI part from their names
|
|
51797
|
-
if (config.ui && config.ui.length > 0) {
|
|
51798
|
-
if (options.ui && options.ui !== 'none') {
|
|
51799
|
-
parts.push(options.ui);
|
|
51800
|
-
}
|
|
51801
|
-
// For "none" selection, don't add any UI part to the template name
|
|
51802
|
-
}
|
|
51803
|
-
// Handle tailwind option
|
|
51804
|
-
if (config.options?.includes('tailwind')) {
|
|
51805
|
-
if (options.tailwind) {
|
|
51806
|
-
parts.push('tailwind');
|
|
51807
|
-
}
|
|
51808
|
-
else {
|
|
51809
|
-
parts.push('no-tailwind');
|
|
51810
|
-
}
|
|
51811
|
-
}
|
|
51812
|
-
const generatedName = parts.join('-') + '-template';
|
|
51813
|
-
// Find exact match in templates array
|
|
51814
|
-
const exactMatch = config.templates.find((template) => template === generatedName);
|
|
51815
|
-
if (exactMatch) {
|
|
51816
|
-
return exactMatch;
|
|
51817
|
-
}
|
|
51818
|
-
// If no exact match, return the first template as fallback
|
|
51819
|
-
return config.templates[0];
|
|
51820
|
-
}
|
|
51821
|
-
return '';
|
|
51822
|
-
}
|
|
51823
|
-
/**
|
|
51824
|
-
* Resolve template directory path based on framework and template name
|
|
51825
|
-
*/
|
|
51826
|
-
function resolveTemplatePath(projectInfo) {
|
|
51827
|
-
const { framework, language, templateName } = projectInfo;
|
|
51828
|
-
const templatesRoot = (0,pathResolver/* getTemplatesPath */.vD)();
|
|
51829
|
-
// Handle combination templates (like reactjs+expressjs+shadcn)
|
|
51830
|
-
if (framework.includes('+')) {
|
|
51831
|
-
const frameworkDir = framework.replace(/\+/g, '-');
|
|
51832
|
-
const combinationPath = external_path_.join(templatesRoot, frameworkDir);
|
|
51833
|
-
if (fs_extra_lib.existsSync(combinationPath)) {
|
|
51834
|
-
// Check for language subdirectory
|
|
51835
|
-
if (language) {
|
|
51836
|
-
const langPath = external_path_.join(combinationPath, language);
|
|
51837
|
-
if (fs_extra_lib.existsSync(langPath)) {
|
|
51838
|
-
// Check for specific template
|
|
51839
|
-
if (templateName) {
|
|
51840
|
-
const templatePath = external_path_.join(langPath, templateName);
|
|
51841
|
-
if (fs_extra_lib.existsSync(templatePath)) {
|
|
51842
|
-
return templatePath;
|
|
51843
|
-
}
|
|
51844
|
-
}
|
|
51845
|
-
return langPath;
|
|
51846
|
-
}
|
|
51847
|
-
}
|
|
51848
|
-
return combinationPath;
|
|
51849
|
-
}
|
|
51850
|
-
}
|
|
51851
|
-
// For frameworks with specific template names
|
|
51852
|
-
if (templateName) {
|
|
51853
|
-
// Check if language subdirectory exists and is required
|
|
51854
|
-
const languageSubdirPath = external_path_.join(templatesRoot, framework, language || 'typescript');
|
|
51855
|
-
if (fs_extra_lib.existsSync(languageSubdirPath)) {
|
|
51856
|
-
const templatePath = external_path_.join(languageSubdirPath, templateName);
|
|
51857
|
-
if (fs_extra_lib.existsSync(templatePath)) {
|
|
51858
|
-
return templatePath;
|
|
51859
|
-
}
|
|
51860
|
-
}
|
|
51861
|
-
// Otherwise, use direct framework directory with template name
|
|
51862
|
-
const directTemplatePath = external_path_.join(templatesRoot, framework, templateName);
|
|
51863
|
-
if (fs_extra_lib.existsSync(directTemplatePath)) {
|
|
51864
|
-
return directTemplatePath;
|
|
51865
|
-
}
|
|
51866
|
-
}
|
|
51867
|
-
// For frameworks with options but no specific template name, use language subdirectory if available
|
|
51868
|
-
if (language) {
|
|
51869
|
-
const languageSubdirPath = external_path_.join(templatesRoot, framework, language);
|
|
51870
|
-
if (fs_extra_lib.existsSync(languageSubdirPath)) {
|
|
51871
|
-
return languageSubdirPath;
|
|
51872
|
-
}
|
|
51873
|
-
}
|
|
51874
|
-
// Default: use the framework directory directly
|
|
51875
|
-
return external_path_.join(templatesRoot, framework);
|
|
51876
|
-
}
|
|
51877
|
-
/**
|
|
51878
|
-
* Check if template directory exists
|
|
51879
|
-
*/
|
|
51880
|
-
function templateExists(templatePath) {
|
|
51881
|
-
return fs_extra_lib.existsSync(templatePath) && fs_extra_lib.statSync(templatePath).isDirectory();
|
|
51882
|
-
}
|
|
51883
|
-
/**
|
|
51884
|
-
* Get all available templates for a framework
|
|
51885
|
-
*/
|
|
51886
|
-
function getFrameworkTemplates(framework) {
|
|
51887
|
-
const templatesRoot = getTemplatesPath();
|
|
51888
|
-
const frameworkPath = path.join(templatesRoot, framework);
|
|
51889
|
-
if (!fs.existsSync(frameworkPath)) {
|
|
51890
|
-
return [];
|
|
51891
|
-
}
|
|
51892
|
-
return fs.readdirSync(frameworkPath, { withFileTypes: true })
|
|
51893
|
-
.filter(dirent => dirent.isDirectory())
|
|
51894
|
-
.map(dirent => dirent.name);
|
|
51895
|
-
}
|
|
51896
|
-
|
|
51897
52158
|
// EXTERNAL MODULE: external "child_process"
|
|
51898
52159
|
var external_child_process_ = __webpack_require__(5317);
|
|
51899
52160
|
// EXTERNAL MODULE: external "util"
|
|
@@ -51925,7 +52186,7 @@ async function createProjectFromTemplate(options) {
|
|
|
51925
52186
|
if (projectName === '.') {
|
|
51926
52187
|
projectPath = process.cwd();
|
|
51927
52188
|
actualProjectName = external_path_.basename(process.cwd());
|
|
51928
|
-
// Check if current directory is empty
|
|
52189
|
+
// Check if current directory is empty (allow if user is already in intended dir)
|
|
51929
52190
|
const currentDirContents = await fs_extra_lib.readdir(projectPath);
|
|
51930
52191
|
if (currentDirContents.length > 0) {
|
|
51931
52192
|
const hasImportantFiles = currentDirContents.some(file => !file.startsWith('.') && file !== 'node_modules');
|
|
@@ -51958,8 +52219,56 @@ async function createProjectFromTemplate(options) {
|
|
|
51958
52219
|
// Copy template files with filtering
|
|
51959
52220
|
spinner.text = source/* default */.Ay.hex('#00d2d3')('Copying template files...');
|
|
51960
52221
|
if (projectName === '.') {
|
|
51961
|
-
//
|
|
51962
|
-
|
|
52222
|
+
// If template has a single top-level directory, copy its contents into current dir
|
|
52223
|
+
const nonSystemFiles = templateContents.filter(item => !item.startsWith('.') &&
|
|
52224
|
+
item !== 'node_modules' &&
|
|
52225
|
+
item !== 'dist' &&
|
|
52226
|
+
item !== 'build');
|
|
52227
|
+
if (nonSystemFiles.length === 1) {
|
|
52228
|
+
const singleItem = nonSystemFiles[0];
|
|
52229
|
+
const singleItemPath = external_path_.join(templatePath, singleItem);
|
|
52230
|
+
const stats = await fs_extra_lib.stat(singleItemPath);
|
|
52231
|
+
if (stats.isDirectory()) {
|
|
52232
|
+
await fs_extra_lib.copy(singleItemPath, projectPath, {
|
|
52233
|
+
filter: (src) => {
|
|
52234
|
+
const fileName = external_path_.basename(src);
|
|
52235
|
+
if (fileName === '.DS_Store' || fileName === 'Thumbs.db' || fileName === '.gitkeep')
|
|
52236
|
+
return false;
|
|
52237
|
+
const rel = external_path_.relative(singleItemPath, src);
|
|
52238
|
+
if (rel.split(external_path_.sep).includes('node_modules') || rel.split(external_path_.sep).includes('.git') || rel.split(external_path_.sep).includes('dist') || rel.split(external_path_.sep).includes('build') || rel.split(external_path_.sep).includes('.next'))
|
|
52239
|
+
return false;
|
|
52240
|
+
return true;
|
|
52241
|
+
}
|
|
52242
|
+
});
|
|
52243
|
+
}
|
|
52244
|
+
else {
|
|
52245
|
+
// Single file, just copy it
|
|
52246
|
+
await fs_extra_lib.copy(singleItemPath, external_path_.join(projectPath, singleItem));
|
|
52247
|
+
}
|
|
52248
|
+
}
|
|
52249
|
+
else {
|
|
52250
|
+
// Multiple items in template root, copy all to current dir
|
|
52251
|
+
for (const item of templateContents) {
|
|
52252
|
+
const sourcePath = external_path_.join(templatePath, item);
|
|
52253
|
+
const destPath = external_path_.join(projectPath, item);
|
|
52254
|
+
const stats = await fs_extra_lib.stat(sourcePath);
|
|
52255
|
+
if (stats.isDirectory()) {
|
|
52256
|
+
if (item === 'node_modules' || item === '.git' || item === 'dist' || item === 'build' || item === '.next')
|
|
52257
|
+
continue;
|
|
52258
|
+
await fs_extra_lib.copy(sourcePath, destPath, {
|
|
52259
|
+
filter: (src) => {
|
|
52260
|
+
const fileName = external_path_.basename(src);
|
|
52261
|
+
return fileName !== '.DS_Store' && fileName !== 'Thumbs.db' && fileName !== '.gitkeep';
|
|
52262
|
+
}
|
|
52263
|
+
});
|
|
52264
|
+
}
|
|
52265
|
+
else {
|
|
52266
|
+
if (item === '.DS_Store' || item === 'Thumbs.db' || item === '.gitkeep')
|
|
52267
|
+
continue;
|
|
52268
|
+
await fs_extra_lib.copy(sourcePath, destPath);
|
|
52269
|
+
}
|
|
52270
|
+
}
|
|
52271
|
+
}
|
|
51963
52272
|
}
|
|
51964
52273
|
else {
|
|
51965
52274
|
// Create directory and copy files
|
|
@@ -52046,20 +52355,46 @@ async function copyTemplateFiles(templatePath, projectPath) {
|
|
|
52046
52355
|
* Copy template files to current directory (for "." project name)
|
|
52047
52356
|
*/
|
|
52048
52357
|
async function copyTemplateFilesToCurrentDir(templatePath, projectPath) {
|
|
52049
|
-
const templateContents = await
|
|
52358
|
+
const templateContents = await fs.readdir(templatePath);
|
|
52359
|
+
// Filter out system and unwanted files/directories
|
|
52360
|
+
const nonSystemFiles = templateContents.filter(item => !item.startsWith('.') &&
|
|
52361
|
+
item !== 'node_modules' &&
|
|
52362
|
+
item !== 'dist' &&
|
|
52363
|
+
item !== 'build');
|
|
52364
|
+
// If the template has a single top-level directory, copy its contents into current dir
|
|
52365
|
+
if (nonSystemFiles.length === 1) {
|
|
52366
|
+
const singleItem = nonSystemFiles[0];
|
|
52367
|
+
const singleItemPath = path.join(templatePath, singleItem);
|
|
52368
|
+
const stats = await fs.stat(singleItemPath);
|
|
52369
|
+
if (stats.isDirectory()) {
|
|
52370
|
+
await fs.copy(singleItemPath, projectPath, {
|
|
52371
|
+
filter: (src) => {
|
|
52372
|
+
const fileName = path.basename(src);
|
|
52373
|
+
if (fileName === '.DS_Store' || fileName === 'Thumbs.db' || fileName === '.gitkeep')
|
|
52374
|
+
return false;
|
|
52375
|
+
// Skip unwanted directories inside the template
|
|
52376
|
+
const rel = path.relative(singleItemPath, src);
|
|
52377
|
+
if (rel.split(path.sep).includes('node_modules') || rel.split(path.sep).includes('.git') || rel.split(path.sep).includes('dist') || rel.split(path.sep).includes('build') || rel.split(path.sep).includes('.next'))
|
|
52378
|
+
return false;
|
|
52379
|
+
return true;
|
|
52380
|
+
}
|
|
52381
|
+
});
|
|
52382
|
+
return;
|
|
52383
|
+
}
|
|
52384
|
+
}
|
|
52050
52385
|
for (const item of templateContents) {
|
|
52051
|
-
const sourcePath =
|
|
52052
|
-
const destPath =
|
|
52053
|
-
const stats = await
|
|
52386
|
+
const sourcePath = path.join(templatePath, item);
|
|
52387
|
+
const destPath = path.join(projectPath, item);
|
|
52388
|
+
const stats = await fs.stat(sourcePath);
|
|
52054
52389
|
if (stats.isDirectory()) {
|
|
52055
52390
|
// Skip common directories that shouldn't be copied
|
|
52056
52391
|
if (item === 'node_modules' || item === '.git' ||
|
|
52057
52392
|
item === 'dist' || item === 'build' || item === '.next') {
|
|
52058
52393
|
continue;
|
|
52059
52394
|
}
|
|
52060
|
-
await
|
|
52395
|
+
await fs.copy(sourcePath, destPath, {
|
|
52061
52396
|
filter: (src) => {
|
|
52062
|
-
const fileName =
|
|
52397
|
+
const fileName = path.basename(src);
|
|
52063
52398
|
return fileName !== '.DS_Store' && fileName !== 'Thumbs.db' && fileName !== '.gitkeep';
|
|
52064
52399
|
}
|
|
52065
52400
|
});
|
|
@@ -52069,7 +52404,7 @@ async function copyTemplateFilesToCurrentDir(templatePath, projectPath) {
|
|
|
52069
52404
|
if (item === '.DS_Store' || item === 'Thumbs.db' || item === '.gitkeep') {
|
|
52070
52405
|
continue;
|
|
52071
52406
|
}
|
|
52072
|
-
await
|
|
52407
|
+
await fs.copy(sourcePath, destPath);
|
|
52073
52408
|
}
|
|
52074
52409
|
}
|
|
52075
52410
|
}
|
|
@@ -52461,7 +52796,7 @@ async function createProject(providedName, options) {
|
|
|
52461
52796
|
let templateName = '';
|
|
52462
52797
|
if (shouldShowTemplates(selectedFramework)) {
|
|
52463
52798
|
// For frameworks WITHOUT options - show template selection list
|
|
52464
|
-
templateName = await promptTemplateSelection(selectedFramework);
|
|
52799
|
+
templateName = await promptTemplateSelection(selectedFramework, selectedLanguage);
|
|
52465
52800
|
}
|
|
52466
52801
|
else if (hasFrameworkOptions(selectedFramework) || hasUIOptions(selectedFramework) || hasBundlerOptions(selectedFramework)) {
|
|
52467
52802
|
// For frameworks WITH options - generate template name from user choices
|
|
@@ -69028,7 +69363,7 @@ class AuthStore {
|
|
|
69028
69363
|
if (!rec)
|
|
69029
69364
|
throw new Error('User not found');
|
|
69030
69365
|
if (rec.verified)
|
|
69031
|
-
return true; // No limit for verified
|
|
69366
|
+
return true; // No limit for verified users
|
|
69032
69367
|
if (typeof rec.usageCount !== 'number')
|
|
69033
69368
|
rec.usageCount = 0;
|
|
69034
69369
|
if (typeof rec.usageLimit !== 'number')
|
|
@@ -69039,7 +69374,6 @@ class AuthStore {
|
|
|
69039
69374
|
await this.save();
|
|
69040
69375
|
return true;
|
|
69041
69376
|
}
|
|
69042
|
-
// Reset usage when user is verified
|
|
69043
69377
|
async verifyUser(email, password) {
|
|
69044
69378
|
const record = this.records.find(r => r.email === email.toLowerCase());
|
|
69045
69379
|
if (!record)
|
|
@@ -69074,10 +69408,11 @@ class AuthStore {
|
|
|
69074
69408
|
}
|
|
69075
69409
|
async login(email, password) {
|
|
69076
69410
|
const ok = await this.verifyUser(email, password);
|
|
69077
|
-
|
|
69078
|
-
|
|
69411
|
+
return !!ok;
|
|
69412
|
+
}
|
|
69413
|
+
// Create a session file for an already-verified authentication (does not verify password)
|
|
69414
|
+
async createSession(email) {
|
|
69079
69415
|
await fs_extra_lib.writeJson(this.sessionFile, { email: email.toLowerCase(), loggedAt: new Date().toISOString() }, { spaces: 2 });
|
|
69080
|
-
return true;
|
|
69081
69416
|
}
|
|
69082
69417
|
async logout() {
|
|
69083
69418
|
if (await fs_extra_lib.pathExists(this.sessionFile)) {
|
|
@@ -69114,10 +69449,6 @@ class AuthStore {
|
|
|
69114
69449
|
if (!rec)
|
|
69115
69450
|
throw new Error('User not found');
|
|
69116
69451
|
rec.verified = verified;
|
|
69117
|
-
if (verified) {
|
|
69118
|
-
rec.usageCount = undefined;
|
|
69119
|
-
rec.usageLimit = undefined;
|
|
69120
|
-
}
|
|
69121
69452
|
await this.save();
|
|
69122
69453
|
}
|
|
69123
69454
|
async getTotpSecret(email) {
|
|
@@ -69145,10 +69476,11 @@ var main = __webpack_require__(6273);
|
|
|
69145
69476
|
|
|
69146
69477
|
|
|
69147
69478
|
|
|
69479
|
+
|
|
69148
69480
|
async function setupTotp(email) {
|
|
69149
69481
|
// Generate TOTP secret
|
|
69150
69482
|
const secret = otplib.authenticator.generateSecret();
|
|
69151
|
-
const otpauth = otplib.authenticator.keyuri(email, '
|
|
69483
|
+
const otpauth = otplib.authenticator.keyuri(email, 'Package-Installer-CLI', secret);
|
|
69152
69484
|
// Show QR code in terminal
|
|
69153
69485
|
console.log(source/* default */.Ay.cyan('\nScan this QR code with Google Authenticator or a compatible app:'));
|
|
69154
69486
|
main.generate(otpauth, { small: true });
|
|
@@ -69183,7 +69515,7 @@ async function setupAndVerifyTotp(email) {
|
|
|
69183
69515
|
async function interactiveRegister() {
|
|
69184
69516
|
const { email, password, confirm } = await lib["default"].prompt([
|
|
69185
69517
|
{ name: 'email', message: 'Email:', type: 'input', validate: (v) => /^[^@\s]+@[^@\s]+\.[^@\s]+$/.test(v) || 'Enter a valid email' },
|
|
69186
|
-
{ name: 'password', message: 'Password (min 8 chars):', type: 'password',
|
|
69518
|
+
{ name: 'password', message: 'Password (min 8 chars):', type: 'password', validate: (v) => v.length >= 8 || 'Password must be at least 8 characters' },
|
|
69187
69519
|
{ name: 'confirm', message: 'Confirm Password:', type: 'password', mask: '*' },
|
|
69188
69520
|
]);
|
|
69189
69521
|
if (password !== confirm) {
|
|
@@ -69192,15 +69524,16 @@ async function interactiveRegister() {
|
|
|
69192
69524
|
}
|
|
69193
69525
|
let created = false;
|
|
69194
69526
|
try {
|
|
69527
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.bold('Registering new user'), { padding: 1, borderColor: 'green' }));
|
|
69195
69528
|
await authStore_authStore.createUser(email, password);
|
|
69196
69529
|
created = true;
|
|
69197
69530
|
}
|
|
69198
69531
|
catch (err) {
|
|
69199
69532
|
if (err.message && err.message.includes('already exists')) {
|
|
69200
|
-
console.log(source/* default */.Ay.red('
|
|
69533
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.red('User already exists. Please login or use a different email.'), { padding: 1, borderColor: 'red' }));
|
|
69201
69534
|
return;
|
|
69202
69535
|
}
|
|
69203
|
-
console.log(source/* default */.Ay.red('
|
|
69536
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.red('Registration failed: ' + (err.message || String(err))), { padding: 1, borderColor: 'red' }));
|
|
69204
69537
|
return;
|
|
69205
69538
|
}
|
|
69206
69539
|
// Suggest 2FA setup
|
|
@@ -69208,26 +69541,28 @@ async function interactiveRegister() {
|
|
|
69208
69541
|
{ name: 'enable2fa', type: 'confirm', message: 'Would you like to enable 2FA (recommended)?', default: true }
|
|
69209
69542
|
]);
|
|
69210
69543
|
if (enable2fa) {
|
|
69211
|
-
|
|
69544
|
+
console.log(source/* default */.Ay.gray('Setting up 2FA...'));
|
|
69545
|
+
const verified = await setupAndVerifyTotp(email);
|
|
69546
|
+
if (!verified) {
|
|
69547
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.yellow('2FA setup incomplete. You can enable it later with: pi auth verify'), { padding: 1 }));
|
|
69548
|
+
}
|
|
69212
69549
|
}
|
|
69213
69550
|
else {
|
|
69214
|
-
console.log(source/* default */.Ay.yellow('⚠️ 2FA is not enabled. You can enable it anytime with: pi auth verify'));
|
|
69551
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.yellow('⚠️ 2FA is not enabled. You can enable it anytime with: pi auth verify'), { padding: 1 }));
|
|
69215
69552
|
}
|
|
69216
69553
|
// Always auto-login after registration if user was created
|
|
69217
69554
|
if (created) {
|
|
69218
|
-
|
|
69219
|
-
|
|
69220
|
-
|
|
69221
|
-
|
|
69222
|
-
|
|
69223
|
-
console.log(source/* default */.Ay.yellow('User registered, but auto-login failed. Please login manually.'));
|
|
69224
|
-
}
|
|
69555
|
+
// Create session (auto-login)
|
|
69556
|
+
await authStore_authStore.createSession(email);
|
|
69557
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.green('✅ Registered and logged in — welcome!'), { padding: 1, borderColor: 'green' }));
|
|
69558
|
+
if (!enable2fa)
|
|
69559
|
+
console.log(source/* default */.Ay.yellow('Note: 2FA not enabled. Enable with: pi auth verify'));
|
|
69225
69560
|
}
|
|
69226
69561
|
}
|
|
69227
69562
|
async function interactiveLogin() {
|
|
69228
69563
|
const responses = await inquirer.prompt([
|
|
69229
69564
|
{ name: 'email', message: 'Email:', type: 'input', validate: (v) => /^[^@\s]+@[^@\s]+\.[^@\s]+$/.test(v) || 'Enter a valid email' },
|
|
69230
|
-
{ name: 'password', message: 'Password:', type: 'password',
|
|
69565
|
+
{ name: 'password', message: 'Password:', type: 'password', validate: (v) => v.length >= 8 || 'Password must be at least 8 characters' },
|
|
69231
69566
|
]);
|
|
69232
69567
|
const { email, password } = responses;
|
|
69233
69568
|
try {
|
|
@@ -69287,28 +69622,42 @@ async function handleAuthOptions(subcommand, value, opts = {}) {
|
|
|
69287
69622
|
console.log(source/* default */.Ay.red('❌ Invalid email or password'));
|
|
69288
69623
|
return;
|
|
69289
69624
|
}
|
|
69290
|
-
// Check verification
|
|
69625
|
+
// Check verification and handle totp provided for non-interactive flows
|
|
69291
69626
|
const secret = await authStore_authStore.getTotpSecret(opts.email);
|
|
69292
69627
|
const isVerified = await authStore_authStore.isVerified(opts.email);
|
|
69293
69628
|
if (!secret) {
|
|
69294
69629
|
console.log(source/* default */.Ay.red('❌ This account does not have 2FA set up. Please register again.'));
|
|
69295
|
-
await authStore_authStore.logout();
|
|
69296
69630
|
return;
|
|
69297
69631
|
}
|
|
69298
69632
|
if (!isVerified) {
|
|
69299
|
-
console.log(source/* default */.Ay.red('❌ This account is not verified. Please complete TOTP verification
|
|
69300
|
-
await authStore_authStore.logout();
|
|
69633
|
+
console.log(source/* default */.Ay.red('❌ This account is not verified. Please complete TOTP verification with: pi auth verify'));
|
|
69301
69634
|
return;
|
|
69302
69635
|
}
|
|
69303
|
-
//
|
|
69304
|
-
|
|
69305
|
-
|
|
69306
|
-
|
|
69307
|
-
|
|
69308
|
-
|
|
69309
|
-
|
|
69310
|
-
|
|
69636
|
+
// TOTP: allow up to 3 interactive attempts. If --totp provided, use it (single check).
|
|
69637
|
+
let code = opts.totp;
|
|
69638
|
+
if (code) {
|
|
69639
|
+
if (!otplib.authenticator.check(code, secret)) {
|
|
69640
|
+
console.log(source/* default */.Ay.red('❌ Invalid TOTP code provided. Login failed.'));
|
|
69641
|
+
return;
|
|
69642
|
+
}
|
|
69643
|
+
}
|
|
69644
|
+
else {
|
|
69645
|
+
let ok = false;
|
|
69646
|
+
for (let i = 0; i < 3; ++i) {
|
|
69647
|
+
const resp = await lib["default"].prompt([{ name: 'code', message: 'Enter 6-digit code from your Authenticator app:', type: 'input', validate: (v) => /^\d{6}$/.test(v) || 'Enter a 6-digit code' }]);
|
|
69648
|
+
if (otplib.authenticator.check(resp.code, secret)) {
|
|
69649
|
+
ok = true;
|
|
69650
|
+
break;
|
|
69651
|
+
}
|
|
69652
|
+
console.log(source/* default */.Ay.red('❌ Invalid code. Try again.'));
|
|
69653
|
+
}
|
|
69654
|
+
if (!ok) {
|
|
69655
|
+
console.log(source/* default */.Ay.red('❌ Too many invalid attempts. Login failed.'));
|
|
69656
|
+
return;
|
|
69657
|
+
}
|
|
69311
69658
|
}
|
|
69659
|
+
// Create session now that password and 2FA are verified
|
|
69660
|
+
await authStore_authStore.createSession(opts.email);
|
|
69312
69661
|
console.log(source/* default */.Ay.green('✅ Logged in successfully'));
|
|
69313
69662
|
}
|
|
69314
69663
|
catch (err) {
|
|
@@ -69335,22 +69684,27 @@ async function handleAuthOptions(subcommand, value, opts = {}) {
|
|
|
69335
69684
|
const isVerified = await authStore_authStore.isVerified(email);
|
|
69336
69685
|
if (!secret) {
|
|
69337
69686
|
console.log(source/* default */.Ay.red('❌ This account does not have 2FA set up. Please register again.'));
|
|
69338
|
-
await authStore_authStore.logout();
|
|
69339
69687
|
return;
|
|
69340
69688
|
}
|
|
69341
69689
|
if (!isVerified) {
|
|
69342
|
-
console.log(source/* default */.Ay.red('❌ This account is not verified. Please complete TOTP verification
|
|
69343
|
-
await authStore_authStore.logout();
|
|
69690
|
+
console.log(source/* default */.Ay.red('❌ This account is not verified. Please complete TOTP verification with: pi auth verify'));
|
|
69344
69691
|
return;
|
|
69345
69692
|
}
|
|
69346
|
-
|
|
69347
|
-
|
|
69348
|
-
|
|
69349
|
-
|
|
69350
|
-
|
|
69351
|
-
|
|
69693
|
+
// Interactive login: allow up to 3 attempts
|
|
69694
|
+
let okTotp = false;
|
|
69695
|
+
for (let i = 0; i < 3; ++i) {
|
|
69696
|
+
const { code } = await lib["default"].prompt([{ name: 'code', message: 'Enter 6-digit code from your Authenticator app:', type: 'input', validate: (v) => /^\d{6}$/.test(v) || 'Enter a 6-digit code' }]);
|
|
69697
|
+
if (otplib.authenticator.check(code, secret)) {
|
|
69698
|
+
okTotp = true;
|
|
69699
|
+
break;
|
|
69700
|
+
}
|
|
69701
|
+
console.log(source/* default */.Ay.red('❌ Invalid code. Try again.'));
|
|
69702
|
+
}
|
|
69703
|
+
if (!okTotp) {
|
|
69704
|
+
console.log(source/* default */.Ay.red('❌ Too many invalid attempts. Login failed.'));
|
|
69352
69705
|
return;
|
|
69353
69706
|
}
|
|
69707
|
+
await authStore_authStore.createSession(email);
|
|
69354
69708
|
console.log(source/* default */.Ay.green('✅ Logged in successfully'));
|
|
69355
69709
|
}
|
|
69356
69710
|
return;
|
|
@@ -69358,27 +69712,26 @@ async function handleAuthOptions(subcommand, value, opts = {}) {
|
|
|
69358
69712
|
case 'register': {
|
|
69359
69713
|
if (opts.email && opts.password) {
|
|
69360
69714
|
try {
|
|
69715
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.bold('Registering new user'), { padding: 1, borderColor: 'green' }));
|
|
69361
69716
|
await authStore_authStore.createUser(opts.email, opts.password);
|
|
69362
|
-
//
|
|
69363
|
-
|
|
69364
|
-
|
|
69365
|
-
|
|
69366
|
-
|
|
69367
|
-
|
|
69368
|
-
|
|
69369
|
-
|
|
69370
|
-
|
|
69371
|
-
|
|
69372
|
-
|
|
69373
|
-
if (ok) {
|
|
69374
|
-
console.log(source/* default */.Ay.green('✅ User registered, verified, and logged in.'));
|
|
69375
|
-
}
|
|
69376
|
-
else {
|
|
69377
|
-
console.log(source/* default */.Ay.yellow('User registered and verified, but auto-login failed. Please login manually.'));
|
|
69717
|
+
// Suggest 2FA setup flow same as interactive
|
|
69718
|
+
if (opts.enable2fa || opts.enable2fa === undefined) {
|
|
69719
|
+
const secret = await setupTotp(opts.email);
|
|
69720
|
+
await authStore_authStore.setTotpSecret(opts.email, secret);
|
|
69721
|
+
const verified = await verifyTotpPrompt(secret);
|
|
69722
|
+
if (!verified) {
|
|
69723
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.yellow('2FA verification failed. Registration saved but 2FA incomplete.'), { padding: 1 }));
|
|
69724
|
+
await authStore_authStore.createSession(opts.email);
|
|
69725
|
+
return;
|
|
69726
|
+
}
|
|
69727
|
+
await authStore_authStore.setVerified(opts.email, true);
|
|
69378
69728
|
}
|
|
69729
|
+
// Create session
|
|
69730
|
+
await authStore_authStore.createSession(opts.email);
|
|
69731
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.green('✅ User registered and logged in.'), { padding: 1, borderColor: 'green' }));
|
|
69379
69732
|
}
|
|
69380
69733
|
catch (err) {
|
|
69381
|
-
console.log(source/* default */.Ay.red('
|
|
69734
|
+
console.log((0,node_modules_boxen/* default */.A)(source/* default */.Ay.red('Registration failed: ' + (err.message || String(err))), { padding: 1, borderColor: 'red' }));
|
|
69382
69735
|
}
|
|
69383
69736
|
}
|
|
69384
69737
|
else {
|
|
@@ -69497,6 +69850,36 @@ function showAuthHelp() {
|
|
|
69497
69850
|
(0,helpFormatter/* createStandardHelp */.ht)(cfg);
|
|
69498
69851
|
}
|
|
69499
69852
|
|
|
69853
|
+
;// ./dist/utils/timer.js
|
|
69854
|
+
const timers = {};
|
|
69855
|
+
function startTimer(key = 'default') {
|
|
69856
|
+
timers[key] = { start: Date.now() };
|
|
69857
|
+
}
|
|
69858
|
+
function stopTimer(key = 'default') {
|
|
69859
|
+
const rec = timers[key];
|
|
69860
|
+
if (!rec)
|
|
69861
|
+
return undefined;
|
|
69862
|
+
rec.end = Date.now();
|
|
69863
|
+
return rec.end - rec.start;
|
|
69864
|
+
}
|
|
69865
|
+
function getTimer(key = 'default') {
|
|
69866
|
+
return timers[key];
|
|
69867
|
+
}
|
|
69868
|
+
function formatDuration(ms) {
|
|
69869
|
+
if (ms === undefined)
|
|
69870
|
+
return 'N/A';
|
|
69871
|
+
if (ms < 1000)
|
|
69872
|
+
return `${ms}ms`;
|
|
69873
|
+
const s = Math.floor(ms / 1000);
|
|
69874
|
+
const m = Math.floor(s / 60);
|
|
69875
|
+
if (m > 0)
|
|
69876
|
+
return `${m}m ${s % 60}s`;
|
|
69877
|
+
return `${s}s`;
|
|
69878
|
+
}
|
|
69879
|
+
function nowIso() {
|
|
69880
|
+
return new Date().toISOString();
|
|
69881
|
+
}
|
|
69882
|
+
|
|
69500
69883
|
;// ./dist/index.js
|
|
69501
69884
|
//#!/usr/bin/env node
|
|
69502
69885
|
|
|
@@ -69530,6 +69913,7 @@ globalThis.path = external_path_;
|
|
|
69530
69913
|
|
|
69531
69914
|
|
|
69532
69915
|
|
|
69916
|
+
|
|
69533
69917
|
// Get current file directory for ESM
|
|
69534
69918
|
const dist_filename = (0,external_url_.fileURLToPath)("file:///home/sharique/desktop/shariq-projects/package-installer-cli/dist/index.js");
|
|
69535
69919
|
const dist_dirname = (0,external_path_.dirname)(dist_filename);
|
|
@@ -69574,6 +69958,10 @@ dist_program
|
|
|
69574
69958
|
// Global preAction: enforce login for most commands, whitelist a few
|
|
69575
69959
|
dist_program.hook('preAction', async (thisCommand, actionCommand) => {
|
|
69576
69960
|
const name = actionCommand.name();
|
|
69961
|
+
// start a timer for this command
|
|
69962
|
+
startTimer(name);
|
|
69963
|
+
// record user input time
|
|
69964
|
+
actionCommand.__userInputTime = nowIso();
|
|
69577
69965
|
// Commands allowed without login (help, version, auth, cache --help etc.)
|
|
69578
69966
|
const allowed = ['auth', 'help', 'version', 'cache'];
|
|
69579
69967
|
if (allowed.includes(name))
|
|
@@ -69590,27 +69978,39 @@ dist_program.hook('preAction', async (thisCommand, actionCommand) => {
|
|
|
69590
69978
|
console.log(source/* default */.Ay.gray(`Run: pi auth --help to see authentication options`));
|
|
69591
69979
|
process.exit(1);
|
|
69592
69980
|
}
|
|
69593
|
-
//
|
|
69981
|
+
// Previously there were additional 2FA/usage checks here. Per request, only enforce login at preAction.
|
|
69982
|
+
// Enforce usage limit for unverified users: allow auth verify/logout/help/version
|
|
69594
69983
|
const session = await authStore_authStore.getSession();
|
|
69595
69984
|
if (session && session.email) {
|
|
69596
69985
|
const isVerified = await authStore_authStore.isVerified(session.email);
|
|
69597
|
-
// Allow verify, logout, help for unverified users
|
|
69598
|
-
const authSub = argv[1] || '';
|
|
69599
69986
|
if (!isVerified) {
|
|
69987
|
+
const authSub = argv[1] || '';
|
|
69600
69988
|
if (name === 'auth' && ['verify', 'logout', '', undefined].includes(authSub))
|
|
69601
69989
|
return;
|
|
69602
|
-
|
|
69603
|
-
|
|
69604
|
-
if (!allowed) {
|
|
69990
|
+
const allowedUsage = await authStore_authStore.incrementUsage(session.email).catch(() => false);
|
|
69991
|
+
if (!allowedUsage) {
|
|
69605
69992
|
console.log('\n' + source/* default */.Ay.red('❌ You have reached the maximum number of allowed commands as an unverified user.'));
|
|
69606
69993
|
console.log(source/* default */.Ay.yellow('Please verify your account with: pi auth verify'));
|
|
69607
69994
|
process.exit(1);
|
|
69608
69995
|
}
|
|
69609
|
-
// Show warning for unverified users
|
|
69610
69996
|
console.log(source/* default */.Ay.yellow('⚠️ Your account is not verified. You have limited access until you complete 2FA.'));
|
|
69611
69997
|
}
|
|
69612
69998
|
}
|
|
69613
69999
|
});
|
|
70000
|
+
// postAction: stop timers and print execution times
|
|
70001
|
+
dist_program.hook('postAction', async (thisCommand, actionCommand) => {
|
|
70002
|
+
const name = actionCommand.name();
|
|
70003
|
+
try {
|
|
70004
|
+
const durationMs = stopTimer(name);
|
|
70005
|
+
const userInputTime = actionCommand.__userInputTime || 'N/A';
|
|
70006
|
+
console.log('\n' + source/* default */.Ay.hex('#00d2d3')('⏱️ Command timing'));
|
|
70007
|
+
console.log(` ${source/* default */.Ay.gray('User input time:')} ${source/* default */.Ay.cyan(userInputTime)}`);
|
|
70008
|
+
console.log(` ${source/* default */.Ay.gray('Execution time:')} ${source/* default */.Ay.green(formatDuration(durationMs))}`);
|
|
70009
|
+
}
|
|
70010
|
+
catch (err) {
|
|
70011
|
+
// ignore timing errors
|
|
70012
|
+
}
|
|
70013
|
+
});
|
|
69614
70014
|
/**
|
|
69615
70015
|
* Enhanced error handler with better formatting
|
|
69616
70016
|
*/
|
|
@@ -69737,6 +70137,7 @@ dist_program
|
|
|
69737
70137
|
.argument('[value]', 'Optional value for subcommand (not used)')
|
|
69738
70138
|
.option('--email <email>', 'Email for login/register')
|
|
69739
70139
|
.option('--password <password>', 'Password for login/register')
|
|
70140
|
+
.option('--totp <code>', 'TOTP code for non-interactive login')
|
|
69740
70141
|
.option('-h, --help', 'Show help for auth command')
|
|
69741
70142
|
.allowUnknownOption(true)
|
|
69742
70143
|
.on('--help', () => { showAuthHelp(); })
|