@docyrus/shadcn 1.2.0 → 1.2.1

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 (1) hide show
  1. package/package.json +15 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docyrus/shadcn",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "All shadcn/ui components bundled in a single NPM package for AI Builder projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -135,6 +135,16 @@
135
135
  "files": [
136
136
  "dist"
137
137
  ],
138
+ "scripts": {
139
+ "sync": "tsx scripts/sync-shadcn.ts",
140
+ "sync:diceui": "tsx scripts/sync-diceui.ts",
141
+ "sync:reui": "tsx scripts/sync-reui.ts",
142
+ "sync:all": "pnpm run sync && pnpm run sync:diceui && pnpm run sync:reui",
143
+ "build": "tsup",
144
+ "prepublishOnly": "pnpm run build",
145
+ "release": "pnpm run sync && pnpm run build && pnpm publish --access public",
146
+ "release:private": "pnpm run sync && pnpm run build && pnpm publish --access restricted"
147
+ },
138
148
  "keywords": [
139
149
  "shadcn",
140
150
  "shadcn-ui",
@@ -219,13 +229,8 @@
219
229
  "optional": true
220
230
  }
221
231
  },
222
- "scripts": {
223
- "sync": "tsx scripts/sync-shadcn.ts",
224
- "sync:diceui": "tsx scripts/sync-diceui.ts",
225
- "sync:reui": "tsx scripts/sync-reui.ts",
226
- "sync:all": "pnpm run sync && pnpm run sync:diceui && pnpm run sync:reui",
227
- "build": "tsup",
228
- "release": "pnpm run sync && pnpm run build && pnpm publish --access public",
229
- "release:private": "pnpm run sync && pnpm run build && pnpm publish --access restricted"
232
+ "packageManager": "pnpm@10.29.1",
233
+ "engines": {
234
+ "node": ">=24"
230
235
  }
231
- }
236
+ }