@toriistudio/v0-playground 0.5.2 → 0.5.5

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.
@@ -0,0 +1,5 @@
1
+ import { Config } from 'tailwindcss';
2
+
3
+ declare const preset: Partial<Config>;
4
+
5
+ export { preset as default };
@@ -0,0 +1,5 @@
1
+ import { Config } from 'tailwindcss';
2
+
3
+ declare const preset: Partial<Config>;
4
+
5
+ export { preset as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toriistudio/v0-playground",
3
- "version": "0.5.2",
3
+ "version": "0.5.5",
4
4
  "description": "V0 Playground",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -27,6 +27,7 @@
27
27
  "LICENSE",
28
28
  "README.md"
29
29
  ],
30
+ "sideEffects": false,
30
31
  "scripts": {
31
32
  "build": "tsup",
32
33
  "local:push": "yarn build && yalc push",
@@ -42,10 +43,7 @@
42
43
  "keywords": [
43
44
  "react",
44
45
  "component",
45
- "headless",
46
- "crop",
47
- "image",
48
- "cropper"
46
+ "headless"
49
47
  ],
50
48
  "author": "toriistudio",
51
49
  "license": "MIT",
@@ -54,23 +52,19 @@
54
52
  },
55
53
  "homepage": "https://github.com/toriistudio/v0-playground#readme",
56
54
  "peerDependencies": {
55
+ "react": ">=18 <20",
56
+ "react-dom": ">=18 <20",
57
57
  "@radix-ui/react-label": "^2.1.6",
58
58
  "@radix-ui/react-select": "^2.2.4",
59
59
  "@radix-ui/react-slider": "^1.3.4",
60
60
  "@radix-ui/react-slot": "^1.2.3",
61
61
  "@radix-ui/react-switch": "^1.2.4",
62
- "@react-three/drei": "^10.3.0",
63
- "@react-three/fiber": "^9.1.2",
64
62
  "class-variance-authority": "^0.7.1",
65
63
  "clsx": "^2.1.1",
66
64
  "lodash": "^4.17.21",
67
65
  "lucide-react": "^0.522.0",
68
- "react": "^19.1.0",
69
- "react-dom": "^19.1.0",
70
66
  "tailwind-merge": "^3.3.1",
71
- "tailwindcss-animate": "^1.0.7",
72
- "three": "^0.177.0",
73
- "three-stdlib": "^2.36.0"
67
+ "tailwindcss-animate": "^1.0.7"
74
68
  },
75
69
  "devDependencies": {
76
70
  "@radix-ui/react-label": "^2.1.6",
@@ -78,8 +72,6 @@
78
72
  "@radix-ui/react-slider": "^1.3.4",
79
73
  "@radix-ui/react-slot": "^1.2.3",
80
74
  "@radix-ui/react-switch": "^1.2.4",
81
- "@react-three/drei": "^10.3.0",
82
- "@react-three/fiber": "^9.1.2",
83
75
  "@types/lodash": "^4.17.19",
84
76
  "@types/node": "^24.0.3",
85
77
  "@types/react": "^19.1.2",
@@ -91,12 +83,29 @@
91
83
  "tailwind-merge": "^3.3.1",
92
84
  "tailwindcss": "^4.1.10",
93
85
  "tailwindcss-animate": "^1.0.7",
94
- "three": "^0.177.0",
95
- "three-stdlib": "^2.36.0",
96
86
  "tsup": "^8.4.0",
97
87
  "typescript": "^5.8.3"
98
88
  },
99
89
  "publishConfig": {
100
90
  "access": "public"
91
+ },
92
+ "engines": {
93
+ "node": ">=18"
94
+ },
95
+ "tsup": {
96
+ "entry": [
97
+ "src/index.ts"
98
+ ],
99
+ "dts": true,
100
+ "format": [
101
+ "cjs",
102
+ "esm"
103
+ ],
104
+ "sourcemap": true,
105
+ "clean": true,
106
+ "external": [
107
+ "react",
108
+ "react-dom"
109
+ ]
101
110
  }
102
111
  }