@react-three-dom/core 0.1.0 → 0.3.0
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/dist/index.cjs +1941 -689
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +758 -43
- package/dist/index.d.ts +758 -43
- package/dist/index.js +1931 -691
- package/dist/index.js.map +1 -1
- package/package.json +19 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-three-dom/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "DOM mirror, snapshot API, and interaction bridge for React Three Fiber",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -18,26 +18,31 @@
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
|
-
"files": [
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"dev": "tsup --watch",
|
|
25
|
-
"test": "vitest run",
|
|
26
|
-
"clean": "rm -rf dist"
|
|
27
|
-
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
28
24
|
"peerDependencies": {
|
|
29
|
-
"three": ">=0.150.0",
|
|
30
25
|
"@react-three/fiber": ">=8.0.0",
|
|
31
|
-
"react": ">=18.0.0"
|
|
26
|
+
"react": ">=18.0.0",
|
|
27
|
+
"three": ">=0.150.0"
|
|
32
28
|
},
|
|
33
29
|
"devDependencies": {
|
|
34
|
-
"three": "^0.171",
|
|
35
30
|
"@react-three/fiber": "^8",
|
|
31
|
+
"@types/react": "^18",
|
|
36
32
|
"@types/three": "^0.171",
|
|
37
33
|
"react": "^18",
|
|
38
|
-
"
|
|
39
|
-
"typescript": "^5.7",
|
|
34
|
+
"three": "^0.171",
|
|
40
35
|
"tsup": "^8",
|
|
36
|
+
"typescript": "^5.7",
|
|
41
37
|
"vitest": "^3"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"three-mesh-bvh": "^0.9.8"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsup",
|
|
44
|
+
"dev": "tsup --watch",
|
|
45
|
+
"test": "vitest run",
|
|
46
|
+
"clean": "rm -rf dist"
|
|
42
47
|
}
|
|
43
|
-
}
|
|
48
|
+
}
|