create-skybridge 0.0.0-dev.ea04428 → 0.0.0-dev.ea09368

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 (116) hide show
  1. package/dist/index.js +335 -212
  2. package/package.json +6 -5
  3. package/{template → templates/blank}/Dockerfile +3 -3
  4. package/templates/blank/README.md +92 -0
  5. package/{template → templates/blank}/_gitignore +2 -1
  6. package/templates/blank/node_modules/.bin/alpic +21 -0
  7. package/{template → templates/blank}/node_modules/.bin/tsx +2 -2
  8. package/{template → templates/blank}/node_modules/.bin/vite +2 -2
  9. package/templates/blank/package.json +29 -0
  10. package/templates/blank/src/server.ts +16 -0
  11. package/templates/blank/tsconfig.json +5 -0
  12. package/templates/blank/vite.config.ts +6 -0
  13. package/templates/demo/.dockerignore +4 -0
  14. package/templates/demo/AGENTS.md +1 -0
  15. package/templates/demo/Dockerfile +53 -0
  16. package/{template → templates/demo}/README.md +16 -15
  17. package/templates/demo/_gitignore +7 -0
  18. package/templates/demo/alpic.json +3 -0
  19. package/templates/demo/node_modules/.bin/alpic +21 -0
  20. package/templates/demo/node_modules/.bin/sb +21 -0
  21. package/templates/demo/node_modules/.bin/skybridge +21 -0
  22. package/templates/demo/node_modules/.bin/tsc +21 -0
  23. package/templates/demo/node_modules/.bin/tsserver +21 -0
  24. package/templates/demo/node_modules/.bin/tsx +21 -0
  25. package/templates/demo/node_modules/.bin/vite +21 -0
  26. package/{template → templates/demo}/package.json +15 -15
  27. package/templates/demo/src/helpers.ts +4 -0
  28. package/{template → templates/demo}/src/server.ts +23 -6
  29. package/{template → templates/demo}/src/views/components/steps/tool-output.tsx +2 -2
  30. package/{template → templates/demo}/src/views/onboarding.tsx +1 -1
  31. package/templates/ecom/.dockerignore +4 -0
  32. package/templates/ecom/.env.template +2 -0
  33. package/templates/ecom/.ladle/components.tsx +26 -0
  34. package/templates/ecom/.ladle/config.mjs +11 -0
  35. package/templates/ecom/.ladle/vite.config.ts +11 -0
  36. package/templates/ecom/AGENTS.md +2 -0
  37. package/templates/ecom/Dockerfile +53 -0
  38. package/templates/ecom/README.md +92 -0
  39. package/templates/ecom/_gitignore +9 -0
  40. package/templates/ecom/alpic.json +3 -0
  41. package/templates/ecom/node_modules/.bin/alpic +21 -0
  42. package/templates/ecom/node_modules/.bin/ladle +21 -0
  43. package/templates/ecom/node_modules/.bin/sb +21 -0
  44. package/templates/ecom/node_modules/.bin/skybridge +21 -0
  45. package/templates/ecom/node_modules/.bin/tsc +21 -0
  46. package/templates/ecom/node_modules/.bin/tsserver +21 -0
  47. package/templates/ecom/node_modules/.bin/tsx +21 -0
  48. package/templates/ecom/node_modules/.bin/vite +21 -0
  49. package/templates/ecom/package.json +41 -0
  50. package/templates/ecom/src/components/empty-state.stories.tsx +3 -0
  51. package/templates/ecom/src/components/empty-state.tsx +12 -0
  52. package/templates/ecom/src/components/product-card.css.ts +136 -0
  53. package/templates/ecom/src/components/product-card.stories.tsx +58 -0
  54. package/templates/ecom/src/components/product-card.tsx +101 -0
  55. package/templates/ecom/src/components/product-carousel.css.ts +134 -0
  56. package/templates/ecom/src/components/product-carousel.stories.tsx +64 -0
  57. package/templates/ecom/src/components/product-carousel.tsx +195 -0
  58. package/templates/ecom/src/components/view-frame.css.ts +22 -0
  59. package/templates/ecom/src/components/view-frame.tsx +27 -0
  60. package/templates/ecom/src/config.ts +12 -0
  61. package/templates/ecom/src/design/contract.css.ts +39 -0
  62. package/templates/ecom/src/design/fonts.css +15 -0
  63. package/templates/ecom/src/design/primitives.css.ts +101 -0
  64. package/templates/ecom/src/design/recipes/typography.css.ts +75 -0
  65. package/templates/ecom/src/design/sprinkles.css.ts +128 -0
  66. package/templates/ecom/src/design/themes/dark.css.ts +36 -0
  67. package/templates/ecom/src/design/themes/light.css.ts +36 -0
  68. package/templates/ecom/src/design/tokens.ts +8 -0
  69. package/templates/ecom/src/helpers.ts +4 -0
  70. package/templates/ecom/src/i18n.ts +27 -0
  71. package/templates/ecom/src/index.css +9 -0
  72. package/templates/ecom/src/lib/cx.ts +9 -0
  73. package/templates/ecom/src/lib/format.ts +9 -0
  74. package/templates/ecom/src/server.ts +43 -0
  75. package/templates/ecom/src/tools/render-carousel.ts +234 -0
  76. package/templates/ecom/src/tools/search-products.ts +182 -0
  77. package/templates/ecom/src/types.ts +13 -0
  78. package/templates/ecom/src/views/carousel/index.tsx +94 -0
  79. package/templates/ecom/tsconfig.json +11 -0
  80. package/templates/ecom/vite.config.ts +8 -0
  81. package/dist/index.test.d.ts +0 -1
  82. package/dist/index.test.js +0 -35
  83. package/template/node_modules/.bin/alpic +0 -21
  84. package/template/src/vite-manifest.d.ts +0 -4
  85. /package/{template → templates/blank}/.dockerignore +0 -0
  86. /package/{template → templates/blank}/AGENTS.md +0 -0
  87. /package/{template → templates/blank}/alpic.json +0 -0
  88. /package/{template → templates/blank}/node_modules/.bin/sb +0 -0
  89. /package/{template → templates/blank}/node_modules/.bin/skybridge +0 -0
  90. /package/{template → templates/blank}/node_modules/.bin/tsc +0 -0
  91. /package/{template → templates/blank}/node_modules/.bin/tsserver +0 -0
  92. /package/{template → templates/blank}/src/helpers.ts +0 -0
  93. /package/{template → templates/demo}/src/index.css +0 -0
  94. /package/{template → templates/demo}/src/views/components/doc-link.tsx +0 -0
  95. /package/{template → templates/demo}/src/views/components/doc.tsx +0 -0
  96. /package/{template → templates/demo}/src/views/components/nav.tsx +0 -0
  97. /package/{template → templates/demo}/src/views/components/progress.tsx +0 -0
  98. /package/{template → templates/demo}/src/views/components/steps/outro.tsx +0 -0
  99. /package/{template → templates/demo}/src/views/components/steps/state.tsx +0 -0
  100. /package/{template → templates/demo}/src/views/components/steps/tool-call.tsx +0 -0
  101. /package/{template → templates/demo}/src/views/images/mascot/beret.png +0 -0
  102. /package/{template → templates/demo}/src/views/images/mascot/chapka.png +0 -0
  103. /package/{template → templates/demo}/src/views/images/mascot/cowboy-hat.png +0 -0
  104. /package/{template → templates/demo}/src/views/images/mascot/fez.png +0 -0
  105. /package/{template → templates/demo}/src/views/images/mascot/jester-hat.png +0 -0
  106. /package/{template → templates/demo}/src/views/images/mascot/mitre.png +0 -0
  107. /package/{template → templates/demo}/src/views/images/mascot/non-la.png +0 -0
  108. /package/{template → templates/demo}/src/views/images/mascot/original.png +0 -0
  109. /package/{template → templates/demo}/src/views/images/mascot/propeller-beanie.png +0 -0
  110. /package/{template → templates/demo}/src/views/images/mascot/ski-mask.png +0 -0
  111. /package/{template → templates/demo}/src/views/images/mascot/sombrero.png +0 -0
  112. /package/{template → templates/demo}/src/views/images/mascot/top-hat.png +0 -0
  113. /package/{template → templates/demo}/src/views/images/mascot/viking-helmet.png +0 -0
  114. /package/{template → templates/demo}/src/views/use-mascot.ts +0 -0
  115. /package/{template → templates/demo}/tsconfig.json +0 -0
  116. /package/{template → templates/demo}/vite.config.ts +0 -0
File without changes
File without changes