bsmnt 0.6.3 → 0.7.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 (91) hide show
  1. package/dist/application/add-integration/index.d.ts.map +1 -1
  2. package/dist/application/add-integration/index.js +30 -4
  3. package/dist/application/add-integration/index.js.map +1 -1
  4. package/dist/application/shared/node-version.d.ts +8 -0
  5. package/dist/application/shared/node-version.d.ts.map +1 -0
  6. package/dist/application/shared/node-version.js +31 -0
  7. package/dist/application/shared/node-version.js.map +1 -0
  8. package/dist/application/shared/strip-ansi.d.ts +3 -0
  9. package/dist/application/shared/strip-ansi.d.ts.map +1 -0
  10. package/dist/application/shared/strip-ansi.js +7 -0
  11. package/dist/application/shared/strip-ansi.js.map +1 -0
  12. package/dist/core/create/execute-plan.d.ts +3 -0
  13. package/dist/core/create/execute-plan.d.ts.map +1 -1
  14. package/dist/core/create/execute-plan.js +3 -0
  15. package/dist/core/create/execute-plan.js.map +1 -1
  16. package/dist/domain/cms.d.ts +2 -0
  17. package/dist/domain/cms.d.ts.map +1 -1
  18. package/dist/domain/cms.js +1 -0
  19. package/dist/domain/cms.js.map +1 -1
  20. package/dist/domain/forms.d.ts +2 -2
  21. package/dist/domain/forms.js +1 -1
  22. package/dist/domain/forms.js.map +1 -1
  23. package/dist/domain/integration.d.ts +7 -3
  24. package/dist/domain/integration.d.ts.map +1 -1
  25. package/dist/domain/integration.js.map +1 -1
  26. package/dist/domain/skills.d.ts +26 -8
  27. package/dist/domain/skills.d.ts.map +1 -1
  28. package/dist/domain/skills.js +30 -9
  29. package/dist/domain/skills.js.map +1 -1
  30. package/dist/index.js +132 -16
  31. package/dist/index.js.map +1 -1
  32. package/dist/infrastructure/create/executor.d.ts.map +1 -1
  33. package/dist/infrastructure/create/executor.js +2 -1
  34. package/dist/infrastructure/create/executor.js.map +1 -1
  35. package/dist/infrastructure/create/init-git-repo.d.ts +11 -7
  36. package/dist/infrastructure/create/init-git-repo.d.ts.map +1 -1
  37. package/dist/infrastructure/create/init-git-repo.js +21 -18
  38. package/dist/infrastructure/create/init-git-repo.js.map +1 -1
  39. package/dist/infrastructure/create/sanity-auth.d.ts +11 -0
  40. package/dist/infrastructure/create/sanity-auth.d.ts.map +1 -0
  41. package/dist/infrastructure/create/sanity-auth.js +72 -0
  42. package/dist/infrastructure/create/sanity-auth.js.map +1 -0
  43. package/dist/infrastructure/create/setup-agent.d.ts +4 -3
  44. package/dist/infrastructure/create/setup-agent.d.ts.map +1 -1
  45. package/dist/infrastructure/create/setup-agent.js +51 -30
  46. package/dist/infrastructure/create/setup-agent.js.map +1 -1
  47. package/dist/infrastructure/create/setup-dotenvx.js +1 -1
  48. package/dist/infrastructure/create/setup-dotenvx.js.map +1 -1
  49. package/dist/infrastructure/create/setup-remote.d.ts +14 -0
  50. package/dist/infrastructure/create/setup-remote.d.ts.map +1 -0
  51. package/dist/infrastructure/create/setup-remote.js +139 -0
  52. package/dist/infrastructure/create/setup-remote.js.map +1 -0
  53. package/dist/infrastructure/create/setup-sanity.d.ts +3 -2
  54. package/dist/infrastructure/create/setup-sanity.d.ts.map +1 -1
  55. package/dist/infrastructure/create/setup-sanity.js +34 -49
  56. package/dist/infrastructure/create/setup-sanity.js.map +1 -1
  57. package/dist/modules/features/env/dotenvx/config.d.ts.map +1 -1
  58. package/dist/modules/features/env/dotenvx/config.js +6 -0
  59. package/dist/modules/features/env/dotenvx/config.js.map +1 -1
  60. package/dist/paths.d.ts +0 -2
  61. package/dist/paths.d.ts.map +1 -1
  62. package/dist/paths.js +0 -2
  63. package/dist/paths.js.map +1 -1
  64. package/package.json +3 -3
  65. package/src/agent-skills/hubspot-pagebuilder-block/SKILL.md +160 -0
  66. package/src/agent-skills/rss-feed/SKILL.md +158 -0
  67. package/src/modules/features/cms/sanity/files/lib/integrations/sanity/sanity.config.ts +3 -0
  68. package/src/modules/features/cms/sanity-pagebuilder/files/lib/integrations/sanity/sanity.config.ts +3 -0
  69. package/src/modules/features/cms/sanity-pagebuilder/files/lib/scripts/sanity-typegen.ts +16 -25
  70. package/src/modules/features/env/dotenvx/files/push-keys.mjs +7 -7
  71. package/src/modules/features/env/dotenvx/files/save-key.mjs +27 -12
  72. package/src/modules/features/env/dotenvx/files/setup-remote.ts +182 -0
  73. package/src/modules/features/forms/hubspot/files/_sanity-adapter/form-block.ts +60 -0
  74. package/src/modules/features/forms/hubspot/files/_sanity-adapter/form-field.ts +30 -0
  75. package/src/modules/features/forms/hubspot/files/_sanity-adapter/form-select-input.tsx +169 -0
  76. package/src/modules/features/forms/hubspot/files/lib/integrations/hubspot/README.md +114 -0
  77. package/src/modules/features/forms/hubspot/files/lib/integrations/hubspot/embed.tsx +165 -0
  78. package/src/modules/features/forms/hubspot/files/lib/integrations/hubspot/form-selection.ts +40 -0
  79. package/src/modules/features/forms/hubspot/files/lib/integrations/hubspot/form.tsx +29 -0
  80. package/src/modules/features/forms/hubspot/files/lib/integrations/hubspot/forms.ts +142 -0
  81. package/src/modules/features/forms/hubspot/files/lib/integrations/hubspot/hubspot-form.css +634 -0
  82. package/src/modules/features/forms/hubspot/files/lib/integrations/hubspot/skeleton.tsx +24 -0
  83. package/src/templates/next-default/README.md +1 -0
  84. package/src/templates/next-default/knip.json +9 -1
  85. package/src/templates/next-experiments/README.md +1 -0
  86. package/src/templates/next-experiments/knip.json +9 -1
  87. package/src/templates/next-pagebuilder/README.md +1 -0
  88. package/src/templates/next-pagebuilder/knip.json +7 -2
  89. package/src/templates/next-pagebuilder/lib/integrations/sanity/sanity.types.ts +1197 -176
  90. package/src/templates/next-webgl/README.md +1 -0
  91. package/src/templates/next-webgl/knip.json +9 -1
@@ -19,9 +19,14 @@
19
19
  "@svgr/webpack",
20
20
  "postcss-functions",
21
21
  "clsx",
22
- "rxjs"
22
+ "rxjs",
23
+ "gsap",
24
+ "@gsap/react",
25
+ "motion"
23
26
  ],
24
27
  "ignoreBinaries": [
25
- "gh"
28
+ "gh",
29
+ "op",
30
+ "vercel"
26
31
  ]
27
32
  }