@toriistudio/v0-playground 0.5.3 → 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.
- package/README.md +0 -19
- package/dist/index.d.mts +102 -30
- package/dist/index.d.ts +102 -30
- package/dist/index.js +941 -329
- package/dist/index.mjs +935 -325
- package/dist/preset.d.mts +5 -0
- package/dist/preset.d.ts +5 -0
- package/package.json +4 -33
package/dist/preset.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toriistudio/v0-playground",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "V0 Playground",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -43,10 +43,7 @@
|
|
|
43
43
|
"keywords": [
|
|
44
44
|
"react",
|
|
45
45
|
"component",
|
|
46
|
-
"headless"
|
|
47
|
-
"canvas",
|
|
48
|
-
"r3f",
|
|
49
|
-
"three"
|
|
46
|
+
"headless"
|
|
50
47
|
],
|
|
51
48
|
"author": "toriistudio",
|
|
52
49
|
"license": "MIT",
|
|
@@ -67,25 +64,7 @@
|
|
|
67
64
|
"lodash": "^4.17.21",
|
|
68
65
|
"lucide-react": "^0.522.0",
|
|
69
66
|
"tailwind-merge": "^3.3.1",
|
|
70
|
-
"tailwindcss-animate": "^1.0.7"
|
|
71
|
-
"@react-three/fiber": ">=9.0.0",
|
|
72
|
-
"@react-three/drei": ">=10.0.0",
|
|
73
|
-
"three": ">=0.157 <1",
|
|
74
|
-
"three-stdlib": ">=2.36.0"
|
|
75
|
-
},
|
|
76
|
-
"peerDependenciesMeta": {
|
|
77
|
-
"@react-three/fiber": {
|
|
78
|
-
"optional": true
|
|
79
|
-
},
|
|
80
|
-
"@react-three/drei": {
|
|
81
|
-
"optional": true
|
|
82
|
-
},
|
|
83
|
-
"three": {
|
|
84
|
-
"optional": true
|
|
85
|
-
},
|
|
86
|
-
"three-stdlib": {
|
|
87
|
-
"optional": true
|
|
88
|
-
}
|
|
67
|
+
"tailwindcss-animate": "^1.0.7"
|
|
89
68
|
},
|
|
90
69
|
"devDependencies": {
|
|
91
70
|
"@radix-ui/react-label": "^2.1.6",
|
|
@@ -93,10 +72,6 @@
|
|
|
93
72
|
"@radix-ui/react-slider": "^1.3.4",
|
|
94
73
|
"@radix-ui/react-slot": "^1.2.3",
|
|
95
74
|
"@radix-ui/react-switch": "^1.2.4",
|
|
96
|
-
"@react-three/drei": "^10.3.0",
|
|
97
|
-
"@react-three/fiber": "^9.1.2",
|
|
98
|
-
"three": "^0.177.0",
|
|
99
|
-
"three-stdlib": "^2.36.0",
|
|
100
75
|
"@types/lodash": "^4.17.19",
|
|
101
76
|
"@types/node": "^24.0.3",
|
|
102
77
|
"@types/react": "^19.1.2",
|
|
@@ -130,11 +105,7 @@
|
|
|
130
105
|
"clean": true,
|
|
131
106
|
"external": [
|
|
132
107
|
"react",
|
|
133
|
-
"react-dom"
|
|
134
|
-
"@react-three/fiber",
|
|
135
|
-
"@react-three/drei",
|
|
136
|
-
"three",
|
|
137
|
-
"three-stdlib"
|
|
108
|
+
"react-dom"
|
|
138
109
|
]
|
|
139
110
|
}
|
|
140
111
|
}
|