@web-my-money/blocks 1.0.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.
package/dist/site.mjs ADDED
@@ -0,0 +1,77 @@
1
+ import {
2
+ AvatarGroup,
3
+ BentoGrid,
4
+ CTABanner,
5
+ CaseStudiesSection,
6
+ ComparisonTable,
7
+ ContactForm,
8
+ DEFAULT_WAVES,
9
+ FadeUp,
10
+ Faq,
11
+ FeatureGrid,
12
+ Footer,
13
+ HeroCanvas,
14
+ HeroSection,
15
+ LayeredButton,
16
+ LogoCloud,
17
+ Marquee,
18
+ NavBar,
19
+ PricingTable,
20
+ ProcessSteps,
21
+ ScrollReveal,
22
+ SectionGlow,
23
+ SectionIntro,
24
+ SectionLabel,
25
+ SocialProof,
26
+ StatsSection,
27
+ TechCarousel,
28
+ TestimonialCarousel,
29
+ TestimonialsCarousel,
30
+ TestimonialsSection,
31
+ TextRotator,
32
+ UseCasesSection,
33
+ ValueStackSection,
34
+ WaveCanvas
35
+ } from "./chunk-X6SF4TT2.mjs";
36
+ import {
37
+ LightboxGallery,
38
+ Thumbnail
39
+ } from "./chunk-L6OIX4DG.mjs";
40
+ import "./chunk-PJO7WJ4G.mjs";
41
+ export {
42
+ AvatarGroup,
43
+ BentoGrid,
44
+ CTABanner,
45
+ CaseStudiesSection,
46
+ ComparisonTable,
47
+ ContactForm,
48
+ DEFAULT_WAVES,
49
+ FadeUp,
50
+ Faq,
51
+ FeatureGrid,
52
+ Footer,
53
+ HeroCanvas,
54
+ HeroSection,
55
+ LayeredButton,
56
+ LightboxGallery,
57
+ LogoCloud,
58
+ Marquee,
59
+ NavBar,
60
+ PricingTable,
61
+ ProcessSteps,
62
+ ScrollReveal,
63
+ SectionGlow,
64
+ SectionIntro,
65
+ SectionLabel,
66
+ SocialProof,
67
+ StatsSection,
68
+ TechCarousel,
69
+ TestimonialCarousel,
70
+ TestimonialsCarousel,
71
+ TestimonialsSection,
72
+ TextRotator,
73
+ Thumbnail,
74
+ UseCasesSection,
75
+ ValueStackSection,
76
+ WaveCanvas
77
+ };
package/package.json ADDED
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "@web-my-money/blocks",
3
+ "version": "1.0.0",
4
+ "description": "Composed UI blocks — hero, pricing, testimonials, dashboards, CTAs. /site = landing, /app = dashboard. Brand-agnostic (reads token CSS vars).",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./site": {
15
+ "types": "./dist/site.d.ts",
16
+ "import": "./dist/site.mjs",
17
+ "require": "./dist/site.js"
18
+ },
19
+ "./app": {
20
+ "types": "./dist/app.d.ts",
21
+ "import": "./dist/app.mjs",
22
+ "require": "./dist/app.js"
23
+ },
24
+ "./fx": {
25
+ "types": "./dist/fx.d.ts",
26
+ "import": "./dist/fx.mjs",
27
+ "require": "./dist/fx.js"
28
+ },
29
+ "./funnel": {
30
+ "types": "./dist/funnel.d.ts",
31
+ "import": "./dist/funnel.mjs",
32
+ "require": "./dist/funnel.js"
33
+ },
34
+ "./next": {
35
+ "types": "./dist/next.d.ts",
36
+ "import": "./dist/next.mjs",
37
+ "require": "./dist/next.js"
38
+ }
39
+ },
40
+ "files": [
41
+ "dist"
42
+ ],
43
+ "scripts": {
44
+ "build": "tsup src/index.ts src/site.ts src/app.ts src/fx.ts src/funnel.ts src/next.ts --format cjs,esm --dts --external react --external react-dom --external framer-motion --external three --external @react-three/fiber --external simplex-noise --external next",
45
+ "typecheck": "tsc --noEmit"
46
+ },
47
+ "peerDependencies": {
48
+ "@react-three/fiber": "^9.0.0",
49
+ "next": "^14.0.0 || ^15.0.0",
50
+ "react": "^18.0.0 || ^19.0.0",
51
+ "react-dom": "^18.0.0 || ^19.0.0",
52
+ "simplex-noise": "^4.0.0",
53
+ "three": "^0.180.0 || ^0.183.0"
54
+ },
55
+ "peerDependenciesMeta": {
56
+ "three": {
57
+ "optional": true
58
+ },
59
+ "@react-three/fiber": {
60
+ "optional": true
61
+ },
62
+ "simplex-noise": {
63
+ "optional": true
64
+ },
65
+ "next": {
66
+ "optional": true
67
+ }
68
+ },
69
+ "dependencies": {
70
+ "@web-my-money/primitives": "*",
71
+ "@web-my-money/tokens": "*",
72
+ "clsx": "^2.1.1",
73
+ "framer-motion": "^12.0.0",
74
+ "lucide-react": "^1.7.0",
75
+ "tailwind-merge": "^3.5.0"
76
+ },
77
+ "devDependencies": {
78
+ "@react-three/fiber": "^9.6.1",
79
+ "@types/react": "^19.0.0",
80
+ "@types/react-dom": "^19.0.0",
81
+ "@types/three": "^0.183.1",
82
+ "next": "^15.5.20",
83
+ "simplex-noise": "^4.0.3",
84
+ "three": "^0.183.2",
85
+ "tsup": "^8.4.0",
86
+ "typescript": "^5.8.0"
87
+ },
88
+ "publishConfig": {
89
+ "registry": "https://registry.npmjs.org",
90
+ "access": "public"
91
+ },
92
+ "license": "UNLICENSED"
93
+ }