@memelabui/ui 0.8.1 → 0.10.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memelabui/ui",
3
- "version": "0.8.1",
3
+ "version": "0.10.0",
4
4
  "description": "MemeLab shared UI component library — React + Tailwind + Glassmorphism",
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -46,6 +46,20 @@
46
46
  "dist",
47
47
  "README.md"
48
48
  ],
49
+ "scripts": {
50
+ "dev": "storybook dev -p 6006",
51
+ "build": "tsup && pnpm build:css",
52
+ "build:css": "postcss src/styles/index.css -o dist/styles/index.css",
53
+ "build:storybook": "storybook build -o storybook-static",
54
+ "test": "vitest",
55
+ "test:ci": "vitest --run",
56
+ "typecheck": "tsc --noEmit",
57
+ "lint": "eslint src --ext ts,tsx --report-unused-disable-directives",
58
+ "lint:fix": "eslint src --ext ts,tsx --fix",
59
+ "format": "prettier --check \"src/**/*.{ts,tsx,css}\"",
60
+ "format:fix": "prettier --write \"src/**/*.{ts,tsx,css}\"",
61
+ "prepublishOnly": "pnpm build"
62
+ },
49
63
  "peerDependencies": {
50
64
  "react": "^18.0.0 || ^19.0.0",
51
65
  "react-dom": "^18.0.0 || ^19.0.0",
@@ -67,7 +81,7 @@
67
81
  "@typescript-eslint/parser": "^8.22.0",
68
82
  "@vitejs/plugin-react": "^4.3.4",
69
83
  "autoprefixer": "^10.4.20",
70
- "eslint": "^9.19.0",
84
+ "eslint": "^10.0.2",
71
85
  "eslint-plugin-react": "^7.37.4",
72
86
  "eslint-plugin-react-hooks": "^5.1.0",
73
87
  "jsdom": "^25.0.1",
@@ -88,6 +102,10 @@
88
102
  "access": "public",
89
103
  "registry": "https://registry.npmjs.org/"
90
104
  },
105
+ "packageManager": "pnpm@9.15.0",
106
+ "engines": {
107
+ "node": ">=22"
108
+ },
91
109
  "license": "MIT",
92
110
  "repository": {
93
111
  "type": "git",
@@ -101,18 +119,5 @@
101
119
  "glassmorphism",
102
120
  "dark-theme",
103
121
  "component-library"
104
- ],
105
- "scripts": {
106
- "dev": "storybook dev -p 6006",
107
- "build": "tsup && pnpm build:css",
108
- "build:css": "postcss src/styles/index.css -o dist/styles/index.css",
109
- "build:storybook": "storybook build -o storybook-static",
110
- "test": "vitest",
111
- "test:ci": "vitest --run",
112
- "typecheck": "tsc --noEmit",
113
- "lint": "eslint src --ext ts,tsx --report-unused-disable-directives",
114
- "lint:fix": "eslint src --ext ts,tsx --fix",
115
- "format": "prettier --check \"src/**/*.{ts,tsx,css}\"",
116
- "format:fix": "prettier --write \"src/**/*.{ts,tsx,css}\""
117
- }
118
- }
122
+ ]
123
+ }