@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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. 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 '@zenpatient-org/healthspan-marketing-ui/styles';
47
+ import "@zenpatient-org/healthspan-marketing-ui/dist/index.css"
48
48
  ```
package/package.json CHANGED
@@ -1,46 +1,42 @@
1
1
  {
2
- "name": "@zenpatient-org/healthspan-marketing-ui",
3
- "version": "0.1.6",
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
- "exports": {
12
- "./index.css": "./dist/index.css",
13
- "./*": "./dist/*"
14
- },
15
- "scripts": {
16
- "dev": "vite",
17
- "build": "vite build",
18
- "preview": "vite preview",
19
- "storybook": "storybook dev -p 6006",
20
- "build-storybook": "storybook build"
21
- },
22
- "license": "MIT",
23
- "peerDependencies": {
24
- "react": "^18.0.0 || ^19.0.0",
25
- "react-dom": "^18.0.0 || ^19.0.0"
26
- },
27
- "devDependencies": {
28
- "@storybook/addon-essentials": "^8.6.12",
29
- "@storybook/addon-interactions": "^8.6.12",
30
- "@storybook/addon-onboarding": "^8.6.12",
31
- "@storybook/blocks": "^8.6.12",
32
- "@storybook/react": "^8.6.12",
33
- "@storybook/react-vite": "^8.6.12",
34
- "@storybook/test": "^8.6.12",
35
- "@vitejs/plugin-react": "^4.4.1",
36
- "postcss": "^8.5.3",
37
- "storybook": "^8.6.12",
38
- "typescript": "^5.8.3",
39
- "vite": "^6.3.5",
40
- "vite-plugin-dts": "^3.0.0",
41
- "vite-plugin-svgr": "^4.3.0"
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
  }