@stackweld/registry 0.2.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.
Files changed (115) hide show
  1. package/.turbo/turbo-build.log +4 -0
  2. package/.turbo/turbo-lint.log +436 -0
  3. package/.turbo/turbo-test.log +15 -0
  4. package/.turbo/turbo-typecheck.log +4 -0
  5. package/dist/__tests__/loader.test.d.ts +2 -0
  6. package/dist/__tests__/loader.test.d.ts.map +1 -0
  7. package/dist/__tests__/loader.test.js +126 -0
  8. package/dist/__tests__/loader.test.js.map +1 -0
  9. package/dist/index.d.ts +5 -0
  10. package/dist/index.d.ts.map +1 -0
  11. package/dist/index.js +4 -0
  12. package/dist/index.js.map +1 -0
  13. package/dist/learning-resources.d.ts +16 -0
  14. package/dist/learning-resources.d.ts.map +1 -0
  15. package/dist/learning-resources.js +461 -0
  16. package/dist/learning-resources.js.map +1 -0
  17. package/dist/loader.d.ts +18 -0
  18. package/dist/loader.d.ts.map +1 -0
  19. package/dist/loader.js +56 -0
  20. package/dist/loader.js.map +1 -0
  21. package/dist/schema.d.ts +147 -0
  22. package/dist/schema.d.ts.map +1 -0
  23. package/dist/schema.js +79 -0
  24. package/dist/schema.js.map +1 -0
  25. package/package.json +39 -0
  26. package/src/__tests__/loader.test.ts +162 -0
  27. package/src/index.ts +4 -0
  28. package/src/learning-resources.ts +488 -0
  29. package/src/loader.ts +67 -0
  30. package/src/schema.ts +79 -0
  31. package/src/technologies/auth/clerk.yaml +29 -0
  32. package/src/technologies/auth/lucia.yaml +19 -0
  33. package/src/technologies/auth/nextauth.yaml +31 -0
  34. package/src/technologies/auth/supabase-auth.yaml +32 -0
  35. package/src/technologies/backend/django.yaml +17 -0
  36. package/src/technologies/backend/echo.yaml +17 -0
  37. package/src/technologies/backend/express.yaml +17 -0
  38. package/src/technologies/backend/fastapi.yaml +17 -0
  39. package/src/technologies/backend/fastify.yaml +17 -0
  40. package/src/technologies/backend/flask.yaml +17 -0
  41. package/src/technologies/backend/gin.yaml +17 -0
  42. package/src/technologies/backend/hono.yaml +17 -0
  43. package/src/technologies/backend/laravel.yaml +32 -0
  44. package/src/technologies/backend/nestjs.yaml +30 -0
  45. package/src/technologies/backend/spring-boot.yaml +30 -0
  46. package/src/technologies/backend/trpc.yaml +20 -0
  47. package/src/technologies/databases/kafka.yaml +27 -0
  48. package/src/technologies/databases/mariadb.yaml +30 -0
  49. package/src/technologies/databases/mongodb.yaml +25 -0
  50. package/src/technologies/databases/mysql.yaml +25 -0
  51. package/src/technologies/databases/neon.yaml +18 -0
  52. package/src/technologies/databases/pocketbase.yaml +24 -0
  53. package/src/technologies/databases/postgresql.yaml +26 -0
  54. package/src/technologies/databases/redis.yaml +23 -0
  55. package/src/technologies/databases/sqlite.yaml +19 -0
  56. package/src/technologies/databases/supabase.yaml +27 -0
  57. package/src/technologies/databases/turso.yaml +19 -0
  58. package/src/technologies/devops/biome.yaml +19 -0
  59. package/src/technologies/devops/cypress.yaml +20 -0
  60. package/src/technologies/devops/devcontainers.yaml +18 -0
  61. package/src/technologies/devops/docker.yaml +19 -0
  62. package/src/technologies/devops/eslint.yaml +18 -0
  63. package/src/technologies/devops/github-actions.yaml +18 -0
  64. package/src/technologies/devops/jest.yaml +19 -0
  65. package/src/technologies/devops/playwright.yaml +19 -0
  66. package/src/technologies/devops/pnpm.yaml +22 -0
  67. package/src/technologies/devops/prettier.yaml +19 -0
  68. package/src/technologies/devops/storybook.yaml +28 -0
  69. package/src/technologies/devops/turborepo.yaml +20 -0
  70. package/src/technologies/devops/typescript.yaml +20 -0
  71. package/src/technologies/devops/vitest.yaml +20 -0
  72. package/src/technologies/devops/zod.yaml +18 -0
  73. package/src/technologies/frontend/angular.yaml +19 -0
  74. package/src/technologies/frontend/astro.yaml +19 -0
  75. package/src/technologies/frontend/htmx.yaml +18 -0
  76. package/src/technologies/frontend/nextjs.yaml +22 -0
  77. package/src/technologies/frontend/nuxt.yaml +18 -0
  78. package/src/technologies/frontend/qwik.yaml +28 -0
  79. package/src/technologies/frontend/react.yaml +19 -0
  80. package/src/technologies/frontend/remix.yaml +28 -0
  81. package/src/technologies/frontend/solidjs.yaml +29 -0
  82. package/src/technologies/frontend/svelte.yaml +19 -0
  83. package/src/technologies/frontend/sveltekit.yaml +18 -0
  84. package/src/technologies/frontend/vue.yaml +18 -0
  85. package/src/technologies/orms/django-orm.yaml +21 -0
  86. package/src/technologies/orms/drizzle.yaml +23 -0
  87. package/src/technologies/orms/mongoose.yaml +22 -0
  88. package/src/technologies/orms/prisma.yaml +23 -0
  89. package/src/technologies/orms/sqlalchemy.yaml +21 -0
  90. package/src/technologies/orms/typeorm.yaml +21 -0
  91. package/src/technologies/runtimes/bun.yaml +24 -0
  92. package/src/technologies/runtimes/deno.yaml +30 -0
  93. package/src/technologies/runtimes/go.yaml +27 -0
  94. package/src/technologies/runtimes/nodejs.yaml +31 -0
  95. package/src/technologies/runtimes/php.yaml +30 -0
  96. package/src/technologies/runtimes/python.yaml +30 -0
  97. package/src/technologies/runtimes/rust.yaml +23 -0
  98. package/src/technologies/services/adminer.yaml +24 -0
  99. package/src/technologies/services/grafana.yaml +29 -0
  100. package/src/technologies/services/mailpit.yaml +27 -0
  101. package/src/technologies/services/minio.yaml +28 -0
  102. package/src/technologies/services/nginx.yaml +25 -0
  103. package/src/technologies/services/pgadmin.yaml +26 -0
  104. package/src/technologies/services/portainer.yaml +24 -0
  105. package/src/technologies/services/prometheus.yaml +27 -0
  106. package/src/technologies/services/rabbitmq.yaml +28 -0
  107. package/src/technologies/services/traefik.yaml +28 -0
  108. package/src/technologies/styling/chakra-ui.yaml +21 -0
  109. package/src/technologies/styling/css-modules.yaml +17 -0
  110. package/src/technologies/styling/daisyui.yaml +20 -0
  111. package/src/technologies/styling/material-ui.yaml +22 -0
  112. package/src/technologies/styling/shadcn-ui.yaml +20 -0
  113. package/src/technologies/styling/tailwindcss.yaml +20 -0
  114. package/tsconfig.json +11 -0
  115. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,24 @@
1
+ id: bun
2
+ name: Bun
3
+ category: runtime
4
+ description: Fast all-in-one JavaScript runtime and toolkit
5
+ website: https://bun.sh
6
+ versions:
7
+ - version: "1.2"
8
+ - version: "1.1"
9
+ defaultVersion: "1.2"
10
+ defaultPort: 3000
11
+ requires: []
12
+ incompatibleWith: []
13
+ suggestedWith: [typescript]
14
+ officialScaffold: bun init
15
+ dockerImage: oven/bun:1.2
16
+ healthCheck:
17
+ endpoint: http://localhost:3000
18
+ envVars:
19
+ BUN_ENV: development
20
+ configFiles:
21
+ - package.json
22
+ - bunfig.toml
23
+ lastVerified: "2026-03-22"
24
+ tags: [javascript, typescript, runtime, fast]
@@ -0,0 +1,30 @@
1
+ id: deno
2
+ name: Deno
3
+ category: runtime
4
+ description: Secure runtime for JavaScript and TypeScript with built-in tooling
5
+ website: https://deno.land
6
+ versions:
7
+ - version: "2.2"
8
+ - version: "2.1"
9
+ - version: "1.46"
10
+ eol: "2025-12-31"
11
+ defaultVersion: "2.2"
12
+ defaultPort: 8000
13
+ requires: []
14
+ incompatibleWith: []
15
+ suggestedWith: [typescript]
16
+ officialScaffold: null
17
+ dockerImage: denoland/deno:2.2.0
18
+ healthCheck:
19
+ endpoint: http://localhost:8000
20
+ interval: 10s
21
+ timeout: 5s
22
+ retries: 3
23
+ envVars:
24
+ DENO_ENV: development
25
+ PORT: "8000"
26
+ configFiles:
27
+ - deno.json
28
+ - deno.lock
29
+ lastVerified: "2026-03-22"
30
+ tags: [deno, javascript, typescript, runtime, server, secure]
@@ -0,0 +1,27 @@
1
+ id: go
2
+ name: Go
3
+ category: runtime
4
+ description: Statically typed, compiled language by Google
5
+ website: https://go.dev
6
+ versions:
7
+ - version: "1.23"
8
+ - version: "1.22"
9
+ defaultVersion: "1.23"
10
+ defaultPort: 8080
11
+ requires: []
12
+ incompatibleWith: []
13
+ suggestedWith: []
14
+ officialScaffold: null
15
+ dockerImage: golang:1.23-alpine
16
+ healthCheck:
17
+ endpoint: http://localhost:8080/health
18
+ interval: 10s
19
+ timeout: 5s
20
+ retries: 3
21
+ envVars:
22
+ GO_ENV: development
23
+ configFiles:
24
+ - go.mod
25
+ - go.sum
26
+ lastVerified: "2026-03-22"
27
+ tags: [go, golang, runtime, compiled]
@@ -0,0 +1,31 @@
1
+ id: nodejs
2
+ name: Node.js
3
+ category: runtime
4
+ description: JavaScript runtime built on V8
5
+ website: https://nodejs.org
6
+ versions:
7
+ - version: "24"
8
+ - version: "22"
9
+ lts: true
10
+ - version: "20"
11
+ lts: true
12
+ defaultVersion: "22"
13
+ defaultPort: 3000
14
+ requires: []
15
+ incompatibleWith: []
16
+ suggestedWith: [typescript]
17
+ officialScaffold: null
18
+ dockerImage: node:22-alpine
19
+ healthCheck:
20
+ endpoint: http://localhost:3000
21
+ interval: 10s
22
+ timeout: 5s
23
+ retries: 3
24
+ envVars:
25
+ NODE_ENV: development
26
+ PORT: "3000"
27
+ configFiles:
28
+ - package.json
29
+ - tsconfig.json
30
+ lastVerified: "2026-03-22"
31
+ tags: [javascript, typescript, runtime, server]
@@ -0,0 +1,30 @@
1
+ id: php
2
+ name: PHP
3
+ category: runtime
4
+ description: Popular general-purpose scripting language suited for web development
5
+ website: https://www.php.net
6
+ versions:
7
+ - version: "8.4"
8
+ - version: "8.3"
9
+ lts: true
10
+ - version: "8.2"
11
+ eol: "2025-12-31"
12
+ defaultVersion: "8.4"
13
+ defaultPort: 9000
14
+ requires: []
15
+ incompatibleWith: []
16
+ suggestedWith: [laravel, nginx]
17
+ officialScaffold: null
18
+ dockerImage: php:8.4-fpm
19
+ healthCheck:
20
+ command: php -r "echo 'ok';"
21
+ interval: 10s
22
+ timeout: 5s
23
+ retries: 3
24
+ envVars:
25
+ PHP_ENV: development
26
+ configFiles:
27
+ - php.ini
28
+ - composer.json
29
+ lastVerified: "2026-03-22"
30
+ tags: [php, scripting, web, server, runtime]
@@ -0,0 +1,30 @@
1
+ id: python
2
+ name: Python
3
+ category: runtime
4
+ description: General-purpose programming language
5
+ website: https://python.org
6
+ versions:
7
+ - version: "3.13"
8
+ - version: "3.12"
9
+ lts: true
10
+ - version: "3.11"
11
+ defaultVersion: "3.12"
12
+ defaultPort: 8000
13
+ requires: []
14
+ incompatibleWith: []
15
+ suggestedWith: []
16
+ officialScaffold: null
17
+ dockerImage: python:3.12-slim
18
+ healthCheck:
19
+ endpoint: http://localhost:8000/health
20
+ interval: 10s
21
+ timeout: 5s
22
+ retries: 3
23
+ envVars:
24
+ PYTHONUNBUFFERED: "1"
25
+ PYTHON_ENV: development
26
+ configFiles:
27
+ - pyproject.toml
28
+ - requirements.txt
29
+ lastVerified: "2026-03-22"
30
+ tags: [python, runtime, server, scripting]
@@ -0,0 +1,23 @@
1
+ id: rust
2
+ name: Rust
3
+ category: runtime
4
+ description: Systems programming language focused on safety and performance
5
+ website: https://www.rust-lang.org
6
+ versions:
7
+ - version: "1.84"
8
+ - version: "1.83"
9
+ defaultVersion: "1.84"
10
+ defaultPort: 8080
11
+ requires: []
12
+ incompatibleWith: []
13
+ suggestedWith: []
14
+ officialScaffold: cargo init
15
+ dockerImage: rust:1.84-slim
16
+ healthCheck:
17
+ endpoint: http://localhost:8080/health
18
+ envVars: {}
19
+ configFiles:
20
+ - Cargo.toml
21
+ - Cargo.lock
22
+ lastVerified: "2026-03-22"
23
+ tags: [rust, runtime, compiled, systems]
@@ -0,0 +1,24 @@
1
+ id: adminer
2
+ name: Adminer
3
+ category: service
4
+ description: Full-featured database management tool in a single PHP file
5
+ website: https://www.adminer.org
6
+ versions:
7
+ - version: "4.8"
8
+ defaultVersion: "4.8"
9
+ defaultPort: 8080
10
+ requires: []
11
+ incompatibleWith: []
12
+ suggestedWith: [postgresql, mysql, mariadb]
13
+ officialScaffold: null
14
+ dockerImage: adminer:4
15
+ healthCheck:
16
+ endpoint: http://localhost:8080
17
+ interval: 10s
18
+ timeout: 5s
19
+ retries: 3
20
+ envVars:
21
+ ADMINER_DEFAULT_SERVER: localhost
22
+ configFiles: []
23
+ lastVerified: "2026-03-22"
24
+ tags: [adminer, database, management, gui, sql, php]
@@ -0,0 +1,29 @@
1
+ id: grafana
2
+ name: Grafana
3
+ category: service
4
+ description: Open source analytics and interactive visualization platform
5
+ website: https://grafana.com
6
+ versions:
7
+ - version: "11.5"
8
+ - version: "11.4"
9
+ - version: "10.4"
10
+ lts: true
11
+ defaultVersion: "11.5"
12
+ defaultPort: 3001
13
+ requires: []
14
+ incompatibleWith: []
15
+ suggestedWith: [prometheus]
16
+ officialScaffold: null
17
+ dockerImage: grafana/grafana:11.5.0
18
+ healthCheck:
19
+ endpoint: http://localhost:3001/api/health
20
+ interval: 10s
21
+ timeout: 5s
22
+ retries: 3
23
+ envVars:
24
+ GF_SECURITY_ADMIN_USER: admin
25
+ GF_SECURITY_ADMIN_PASSWORD: admin
26
+ configFiles:
27
+ - grafana.ini
28
+ lastVerified: "2026-03-22"
29
+ tags: [grafana, monitoring, visualization, dashboards, observability]
@@ -0,0 +1,27 @@
1
+ id: mailpit
2
+ name: Mailpit
3
+ category: service
4
+ description: Email and SMTP testing tool for developers with web UI
5
+ website: https://mailpit.axllent.org
6
+ versions:
7
+ - {version: "1.21"}
8
+ - {version: "1.20"}
9
+ - {version: "1.19"}
10
+ defaultVersion: "1.21"
11
+ defaultPort: 8025
12
+ requires: []
13
+ incompatibleWith: []
14
+ suggestedWith: []
15
+ officialScaffold: null
16
+ dockerImage: axllent/mailpit:latest
17
+ healthCheck:
18
+ endpoint: http://localhost:8025
19
+ interval: 10s
20
+ timeout: 5s
21
+ retries: 3
22
+ envVars:
23
+ SMTP_HOST: localhost
24
+ SMTP_PORT: "1025"
25
+ configFiles: []
26
+ lastVerified: "2026-03-22"
27
+ tags: [mailpit, email, smtp, testing, development, mail-catcher]
@@ -0,0 +1,28 @@
1
+ id: minio
2
+ name: MinIO
3
+ category: service
4
+ description: High-performance S3-compatible object storage
5
+ website: https://min.io
6
+ versions:
7
+ - {version: "2024.12"}
8
+ - {version: "2024.11"}
9
+ - {version: "2024.10"}
10
+ defaultVersion: "2024.12"
11
+ defaultPort: 9000
12
+ requires: []
13
+ incompatibleWith: []
14
+ suggestedWith: []
15
+ officialScaffold: null
16
+ dockerImage: minio/minio:latest
17
+ healthCheck:
18
+ endpoint: http://localhost:9000/minio/health/live
19
+ interval: 10s
20
+ timeout: 5s
21
+ retries: 3
22
+ envVars:
23
+ MINIO_ROOT_USER: minioadmin
24
+ MINIO_ROOT_PASSWORD: minioadmin
25
+ S3_ENDPOINT: http://localhost:9000
26
+ configFiles: []
27
+ lastVerified: "2026-03-22"
28
+ tags: [minio, s3, object-storage, storage, aws-s3-compatible]
@@ -0,0 +1,25 @@
1
+ id: nginx
2
+ name: Nginx
3
+ category: service
4
+ description: High-performance HTTP server, reverse proxy, and load balancer
5
+ website: https://nginx.org
6
+ versions:
7
+ - {version: "1.27"}
8
+ - {version: "1.26", lts: true}
9
+ - {version: "1.25"}
10
+ defaultVersion: "1.27"
11
+ defaultPort: 80
12
+ requires: []
13
+ incompatibleWith: [traefik]
14
+ suggestedWith: []
15
+ officialScaffold: null
16
+ dockerImage: nginx:alpine
17
+ healthCheck:
18
+ endpoint: http://localhost:80
19
+ interval: 10s
20
+ timeout: 5s
21
+ retries: 3
22
+ envVars: {}
23
+ configFiles: [nginx.conf]
24
+ lastVerified: "2026-03-22"
25
+ tags: [nginx, reverse-proxy, web-server, load-balancer, http]
@@ -0,0 +1,26 @@
1
+ id: pgadmin
2
+ name: pgAdmin
3
+ category: service
4
+ description: Feature-rich administration and development platform for PostgreSQL
5
+ website: https://www.pgadmin.org
6
+ versions:
7
+ - version: "8.16"
8
+ - version: "8.15"
9
+ defaultVersion: "8.16"
10
+ defaultPort: 5050
11
+ requires: []
12
+ incompatibleWith: []
13
+ suggestedWith: [postgresql]
14
+ officialScaffold: null
15
+ dockerImage: dpage/pgadmin4:8.16
16
+ healthCheck:
17
+ endpoint: http://localhost:5050/misc/ping
18
+ interval: 10s
19
+ timeout: 5s
20
+ retries: 3
21
+ envVars:
22
+ PGADMIN_DEFAULT_EMAIL: admin@admin.com
23
+ PGADMIN_DEFAULT_PASSWORD: admin
24
+ configFiles: []
25
+ lastVerified: "2026-03-22"
26
+ tags: [pgadmin, postgresql, database, management, gui, admin]
@@ -0,0 +1,24 @@
1
+ id: portainer
2
+ name: Portainer
3
+ category: service
4
+ description: Universal container management platform for Docker and Kubernetes
5
+ website: https://www.portainer.io
6
+ versions:
7
+ - version: "2.25"
8
+ - version: "2.24"
9
+ defaultVersion: "2.25"
10
+ defaultPort: 9443
11
+ requires: []
12
+ incompatibleWith: []
13
+ suggestedWith: [docker]
14
+ officialScaffold: null
15
+ dockerImage: portainer/portainer-ce:2.25.0
16
+ healthCheck:
17
+ endpoint: http://localhost:9000/api/system/status
18
+ interval: 10s
19
+ timeout: 5s
20
+ retries: 3
21
+ envVars: {}
22
+ configFiles: []
23
+ lastVerified: "2026-03-22"
24
+ tags: [portainer, docker, containers, management, gui, kubernetes]
@@ -0,0 +1,27 @@
1
+ id: prometheus
2
+ name: Prometheus
3
+ category: service
4
+ description: Open source monitoring and alerting toolkit with time series database
5
+ website: https://prometheus.io
6
+ versions:
7
+ - version: "3.2"
8
+ - version: "3.1"
9
+ - version: "2.55"
10
+ lts: true
11
+ defaultVersion: "3.2"
12
+ defaultPort: 9090
13
+ requires: []
14
+ incompatibleWith: []
15
+ suggestedWith: [grafana]
16
+ officialScaffold: null
17
+ dockerImage: prom/prometheus:v3.2.0
18
+ healthCheck:
19
+ endpoint: http://localhost:9090/-/healthy
20
+ interval: 10s
21
+ timeout: 5s
22
+ retries: 3
23
+ envVars: {}
24
+ configFiles:
25
+ - prometheus.yml
26
+ lastVerified: "2026-03-22"
27
+ tags: [prometheus, monitoring, metrics, alerting, time-series, observability]
@@ -0,0 +1,28 @@
1
+ id: rabbitmq
2
+ name: RabbitMQ
3
+ category: service
4
+ description: Open-source message broker for reliable asynchronous messaging
5
+ website: https://www.rabbitmq.com
6
+ versions:
7
+ - {version: "4.0", lts: true}
8
+ - {version: "3.13"}
9
+ - {version: "3.12", eol: "2025-12-31"}
10
+ defaultVersion: "4.0"
11
+ defaultPort: 5672
12
+ requires: []
13
+ incompatibleWith: []
14
+ suggestedWith: []
15
+ officialScaffold: null
16
+ dockerImage: rabbitmq:4-management
17
+ healthCheck:
18
+ command: rabbitmq-diagnostics -q ping
19
+ interval: 10s
20
+ timeout: 10s
21
+ retries: 5
22
+ envVars:
23
+ RABBITMQ_DEFAULT_USER: guest
24
+ RABBITMQ_DEFAULT_PASS: guest
25
+ AMQP_URL: amqp://guest:guest@localhost:5672
26
+ configFiles: [rabbitmq.conf]
27
+ lastVerified: "2026-03-22"
28
+ tags: [rabbitmq, message-broker, amqp, queue, messaging, async]
@@ -0,0 +1,28 @@
1
+ id: traefik
2
+ name: Traefik
3
+ category: service
4
+ description: Cloud-native reverse proxy and load balancer with automatic service discovery
5
+ website: https://traefik.io
6
+ versions:
7
+ - version: "3.3"
8
+ - version: "3.2"
9
+ - version: "2.11"
10
+ lts: true
11
+ defaultVersion: "3.3"
12
+ defaultPort: 80
13
+ requires: []
14
+ incompatibleWith: [nginx]
15
+ suggestedWith: [docker]
16
+ officialScaffold: null
17
+ dockerImage: traefik:v3.3
18
+ healthCheck:
19
+ endpoint: http://localhost:8080/ping
20
+ interval: 10s
21
+ timeout: 5s
22
+ retries: 3
23
+ envVars: {}
24
+ configFiles:
25
+ - traefik.yml
26
+ - traefik.toml
27
+ lastVerified: "2026-03-22"
28
+ tags: [traefik, reverse-proxy, load-balancer, ingress, docker, cloud-native]
@@ -0,0 +1,21 @@
1
+ id: chakra-ui
2
+ name: Chakra UI
3
+ category: styling
4
+ description: Simple, modular and accessible component library for React applications
5
+ website: https://chakra-ui.com
6
+ versions:
7
+ - version: "3.3"
8
+ - version: "3.2"
9
+ - version: "3.1"
10
+ - version: "3.0"
11
+ - version: "2.10"
12
+ defaultVersion: "3.3"
13
+ requires: [nodejs, react]
14
+ incompatibleWith: [shadcn-ui, material-ui]
15
+ suggestedWith: [nextjs, typescript]
16
+ officialScaffold: null
17
+ dockerImage: null
18
+ envVars: {}
19
+ configFiles: [theme.ts]
20
+ lastVerified: "2026-03-22"
21
+ tags: [chakra, ui, components, accessible, styling]
@@ -0,0 +1,17 @@
1
+ id: css-modules
2
+ name: CSS Modules
3
+ category: styling
4
+ description: Locally scoped CSS classes for component-based styling
5
+ website: https://github.com/css-modules/css-modules
6
+ versions:
7
+ - version: "1"
8
+ defaultVersion: "1"
9
+ requires: [nodejs]
10
+ incompatibleWith: []
11
+ suggestedWith: [react, vue, nextjs]
12
+ officialScaffold: null
13
+ dockerImage: null
14
+ envVars: {}
15
+ configFiles: []
16
+ lastVerified: "2026-03-22"
17
+ tags: [css-modules, css, styling, scoped, components]
@@ -0,0 +1,20 @@
1
+ id: daisyui
2
+ name: DaisyUI
3
+ category: styling
4
+ description: Tailwind CSS component library with semantic class names and themes
5
+ website: https://daisyui.com
6
+ versions:
7
+ - version: "4.12"
8
+ - version: "4.11"
9
+ defaultVersion: "4.12"
10
+ requires: [nodejs, tailwindcss]
11
+ incompatibleWith: []
12
+ suggestedWith: [react, vue]
13
+ officialScaffold: null
14
+ dockerImage: null
15
+ envVars: {}
16
+ configFiles:
17
+ - tailwind.config.js
18
+ - tailwind.config.ts
19
+ lastVerified: "2026-03-22"
20
+ tags: [daisyui, tailwindcss, components, themes, styling, ui]
@@ -0,0 +1,22 @@
1
+ id: material-ui
2
+ name: Material UI (MUI)
3
+ category: styling
4
+ description: React component library implementing Google's Material Design
5
+ website: https://mui.com
6
+ versions:
7
+ - version: "6.4"
8
+ - version: "6.3"
9
+ - version: "6.2"
10
+ - version: "6.1"
11
+ - version: "6.0"
12
+ - version: "5.16"
13
+ defaultVersion: "6.4"
14
+ requires: [nodejs, react]
15
+ incompatibleWith: [shadcn-ui, chakra-ui]
16
+ suggestedWith: [nextjs, typescript]
17
+ officialScaffold: null
18
+ dockerImage: null
19
+ envVars: {}
20
+ configFiles: [theme.ts]
21
+ lastVerified: "2026-03-22"
22
+ tags: [material, mui, ui, components, google, styling]
@@ -0,0 +1,20 @@
1
+ id: shadcn-ui
2
+ name: shadcn/ui
3
+ category: styling
4
+ description: Beautifully designed components built with Radix UI and Tailwind CSS
5
+ website: https://ui.shadcn.com
6
+ versions:
7
+ - version: "2.2"
8
+ - version: "2.1"
9
+ - version: "2.0"
10
+ - version: "1.0"
11
+ defaultVersion: "2.2"
12
+ requires: [nodejs, react, tailwindcss]
13
+ incompatibleWith: [chakra-ui, material-ui]
14
+ suggestedWith: [nextjs, typescript]
15
+ officialScaffold: npx shadcn@latest init
16
+ dockerImage: null
17
+ envVars: {}
18
+ configFiles: [components.json]
19
+ lastVerified: "2026-03-22"
20
+ tags: [shadcn, ui, components, radix, tailwind, styling]
@@ -0,0 +1,20 @@
1
+ id: tailwindcss
2
+ name: Tailwind CSS
3
+ category: styling
4
+ description: Utility-first CSS framework for rapid UI development
5
+ website: https://tailwindcss.com
6
+ versions:
7
+ - version: "4.1"
8
+ - version: "4.0"
9
+ - version: "3.4"
10
+ - version: "3.3"
11
+ defaultVersion: "4.1"
12
+ requires: [nodejs]
13
+ incompatibleWith: []
14
+ suggestedWith: [react, nextjs, vue]
15
+ officialScaffold: null
16
+ dockerImage: null
17
+ envVars: {}
18
+ configFiles: [tailwind.config.js, tailwind.config.ts, postcss.config.js]
19
+ lastVerified: "2026-03-22"
20
+ tags: [tailwind, css, utility-first, styling, responsive]
package/tsconfig.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "dist",
5
+ "rootDir": "src",
6
+ "composite": true,
7
+ "types": ["node"]
8
+ },
9
+ "include": ["src"],
10
+ "references": [{ "path": "../core" }]
11
+ }