create-skybridge 0.0.0-dev.f792261 → 0.0.0-dev.f7943e6

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