@lindle/linoardo 1.0.1 → 1.0.3

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/package.json CHANGED
@@ -1,24 +1,34 @@
1
1
  {
2
2
  "name": "@lindle/linoardo",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "author": "",
7
7
  "license": "ISC",
8
8
  "type": "module",
9
9
  "dependencies": {
10
- "react": "^19.1.1",
11
- "react-dom": "^19.1.1"
10
+ "@mdi/font": "^7.4.47",
11
+ "react": ">=18",
12
+ "react-dom": ">=18",
13
+ "tailwind-merge": "^3.3.1"
12
14
  },
13
15
  "devDependencies": {
16
+ "@storybook/addon-docs": "^10.0.2",
17
+ "@storybook/addon-links": "^10.0.2",
18
+ "@storybook/react-vite": "^10.0.2",
19
+ "@storybook/testing-library": "^0.2.2",
14
20
  "@tailwindcss/postcss": "^4.1.13",
21
+ "@types/node": "^24.7.2",
15
22
  "@types/react": "^19.1.13",
16
23
  "@types/react-dom": "^19.1.9",
24
+ "@vitejs/plugin-react": "^5.0.4",
17
25
  "postcss": "^8.5.6",
18
26
  "postcss-cli": "^11.0.1",
27
+ "storybook": "^10.0.2",
19
28
  "tailwindcss": "^4.1.13",
20
29
  "tsup": "^8.5.0",
21
- "typescript": "^5.9.2"
30
+ "typescript": "^5.9.2",
31
+ "vite": "^7.1.9"
22
32
  },
23
33
  "main": "dist/index.cjs",
24
34
  "module": "dist/index.js",
@@ -39,10 +49,12 @@
39
49
  },
40
50
  "scripts": {
41
51
  "build:js": "tsup",
42
- "build:css": "postcss src/styles.css -o dist/styles.css",
43
- "build": "pnpm run build:js && pnpm run build:css",
52
+ "build:css": "postcss src/styles.css -o dist/styles.css && node ./scripts/fix-mdi-fonts.mjs",
53
+ "build": "npm run build:js && npm run build:css",
54
+ "storybook": "storybook dev -p 6006",
55
+ "storybook:build": "storybook build",
44
56
  "pubcheck": "npm pack --dry-run",
45
- "prepublishOnly": "pnpm run build"
57
+ "prepublishOnly": "npm run build"
46
58
  },
47
59
  "peerDependencies": {
48
60
  "react": ">=18",