shadcn 2.0.2 → 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": "shadcn",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Add components to your apps.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -28,22 +28,6 @@
28
28
  "type": "module",
29
29
  "exports": "./dist/index.js",
30
30
  "bin": "./dist/index.js",
31
- "scripts": {
32
- "dev": "tsup --watch",
33
- "build": "tsup",
34
- "typecheck": "tsc --noEmit",
35
- "clean": "rimraf dist && rimraf components",
36
- "start:dev": "cross-env REGISTRY_URL=http://localhost:3333/r node dist/index.js",
37
- "start": "node dist/index.js",
38
- "format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
39
- "format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
40
- "release": "changeset version",
41
- "pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
42
- "pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
43
- "pub:release": "pnpm build && pnpm publish --access public",
44
- "test": "vitest run",
45
- "test:dev": "REGISTRY_URL=http://localhost:3333/r vitest run"
46
- },
47
31
  "dependencies": {
48
32
  "@antfu/ni": "^0.21.4",
49
33
  "@babel/core": "^7.22.1",
@@ -80,5 +64,21 @@
80
64
  "tsup": "^6.6.3",
81
65
  "type-fest": "^3.8.0",
82
66
  "typescript": "^4.9.3"
67
+ },
68
+ "scripts": {
69
+ "dev": "tsup --watch",
70
+ "build": "tsup",
71
+ "typecheck": "tsc --noEmit",
72
+ "clean": "rimraf dist && rimraf components",
73
+ "start:dev": "cross-env REGISTRY_URL=http://localhost:3333/r node dist/index.js",
74
+ "start": "node dist/index.js",
75
+ "format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
76
+ "format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
77
+ "release": "changeset version",
78
+ "pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
79
+ "pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
80
+ "pub:release": "pnpm build && pnpm publish --access public",
81
+ "test": "vitest run",
82
+ "test:dev": "REGISTRY_URL=http://localhost:3333/r vitest run"
83
83
  }
84
- }
84
+ }