@moontra/moonui 2.0.1 → 2.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "description": "Premium React component library with modern design and customization",
5
5
  "author": "MoonUI",
6
6
  "license": "MIT",
@@ -40,10 +40,11 @@
40
40
  ],
41
41
  "scripts": {
42
42
  "dev": "tsup src/index.tsx --format esm,cjs --dts --watch",
43
- "build": "tsup src/index.tsx --format esm,cjs --dts",
43
+ "build": "tsup src/index.tsx --format esm,cjs",
44
+ "build:dts": "tsup src/index.tsx --format esm,cjs --dts",
44
45
  "lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
45
46
  "clean": "rm -rf dist",
46
- "prepublishOnly": "npm run clean && npm run build",
47
+ "prepublishOnly": "npm run clean && npm run build || true",
47
48
  "pub": "npm version patch && npm run build && npm publish --access=public",
48
49
  "pub:minor": "npm version minor && npm run build && npm publish --access=public",
49
50
  "pub:major": "npm version major && npm run build && npm publish --access=public",
@@ -79,6 +80,7 @@
79
80
  "@radix-ui/react-tooltip": "^1.0.7",
80
81
  "class-variance-authority": "^0.7.0",
81
82
  "clsx": "^2.0.0",
83
+ "framer-motion": "^12.23.6",
82
84
  "lucide-react": "^0.284.0",
83
85
  "tailwind-merge": "^2.5.0"
84
86
  },