@zenpatient-org/healthspan-marketing-ui 0.1.6 → 0.1.8
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/README.md +1 -1
- package/package.json +40 -44
package/README.md
CHANGED
|
@@ -44,5 +44,5 @@ npm publish
|
|
|
44
44
|
Design tokens (colors, spacing, etc.) are injected via CSS variables globally. Just import the global styles once:
|
|
45
45
|
|
|
46
46
|
```tsx
|
|
47
|
-
import
|
|
47
|
+
import "@zenpatient-org/healthspan-marketing-ui/dist/index.css"
|
|
48
48
|
```
|
package/package.json
CHANGED
|
@@ -1,46 +1,42 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
},
|
|
43
|
-
"dependencies": {
|
|
44
|
-
"@types/node": "^22.15.14"
|
|
45
|
-
}
|
|
2
|
+
"name": "@zenpatient-org/healthspan-marketing-ui",
|
|
3
|
+
"version": "0.1.8",
|
|
4
|
+
"description": "Design system",
|
|
5
|
+
"main": "dist/healthspan-ui.umd.js",
|
|
6
|
+
"module": "dist/healthspan-ui.es.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "vite",
|
|
13
|
+
"build": "vite build",
|
|
14
|
+
"preview": "vite preview",
|
|
15
|
+
"storybook": "storybook dev -p 6006",
|
|
16
|
+
"build-storybook": "storybook build"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
21
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@storybook/addon-essentials": "^8.6.12",
|
|
25
|
+
"@storybook/addon-interactions": "^8.6.12",
|
|
26
|
+
"@storybook/addon-onboarding": "^8.6.12",
|
|
27
|
+
"@storybook/blocks": "^8.6.12",
|
|
28
|
+
"@storybook/react": "^8.6.12",
|
|
29
|
+
"@storybook/react-vite": "^8.6.12",
|
|
30
|
+
"@storybook/test": "^8.6.12",
|
|
31
|
+
"@vitejs/plugin-react": "^4.4.1",
|
|
32
|
+
"postcss": "^8.5.3",
|
|
33
|
+
"storybook": "^8.6.12",
|
|
34
|
+
"typescript": "^5.8.3",
|
|
35
|
+
"vite": "^6.3.5",
|
|
36
|
+
"vite-plugin-dts": "^3.0.0",
|
|
37
|
+
"vite-plugin-svgr": "^4.3.0"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@types/node": "^22.15.14"
|
|
41
|
+
}
|
|
46
42
|
}
|