@gnsx/react-three-fiber 10.0.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/package.json ADDED
@@ -0,0 +1,91 @@
1
+ {
2
+ "name": "@gnsx/react-three-fiber",
3
+ "version": "10.0.0",
4
+ "description": "A React renderer for Threejs",
5
+ "keywords": [
6
+ "react",
7
+ "renderer",
8
+ "fiber",
9
+ "three",
10
+ "threejs"
11
+ ],
12
+ "author": "Paul Henschel (https://github.com/drcmda)",
13
+ "license": "MIT",
14
+ "maintainers": [
15
+ "Josh Ellis (https://github.com/joshuaellis)",
16
+ "Cody Bennett (https://github.com/codyjasonbennett)",
17
+ "Kris Baumgarter (https://github.com/krispya)",
18
+ "Dennis Smolek (https://github.com/dennissmolek)"
19
+ ],
20
+ "bugs": {
21
+ "url": "https://github.com/pmndrs/react-three-fiber/issues"
22
+ },
23
+ "homepage": "https://github.com/pmndrs/react-three-fiber#readme",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/pmndrs/react-three-fiber.git"
27
+ },
28
+ "collective": {
29
+ "type": "opencollective",
30
+ "url": "https://opencollective.com/react-three-fiber"
31
+ },
32
+ "main": "./dist/index.cjs",
33
+ "module": "./dist/index.mjs",
34
+ "types": "./dist/index.d.ts",
35
+ "sideEffects": false,
36
+ "files": [
37
+ "dist",
38
+ "react-reconciler",
39
+ "readme.md"
40
+ ],
41
+ "exports": {
42
+ ".": {
43
+ "types": "./dist/index.d.ts",
44
+ "import": "./dist/index.mjs",
45
+ "require": "./dist/index.cjs"
46
+ },
47
+ "./legacy": {
48
+ "types": "./dist/legacy.d.ts",
49
+ "import": "./dist/legacy.mjs",
50
+ "require": "./dist/legacy.cjs"
51
+ },
52
+ "./webgpu": {
53
+ "types": "./dist/webgpu/index.d.ts",
54
+ "import": "./dist/webgpu/index.mjs",
55
+ "require": "./dist/webgpu/index.cjs"
56
+ }
57
+ },
58
+ "dependencies": {
59
+ "@babel/runtime": "^7.28.6",
60
+ "@monogrid/gainmap-js": "^3.4.0",
61
+ "dequal": "^2.0.3",
62
+ "its-fine": "^2.0.0",
63
+ "react-use-measure": "^2.1.7",
64
+ "scheduler": "^0.27.0",
65
+ "suspend-react": "^0.1.3",
66
+ "use-sync-external-store": "^1.6.0",
67
+ "zustand": "^5.0.10"
68
+ },
69
+ "devDependencies": {
70
+ "@types/react-reconciler": "^0.32.3",
71
+ "@types/three": "^0.181.0",
72
+ "@types/webxr": "*",
73
+ "react-reconciler": "^0.33.0"
74
+ },
75
+ "peerDependencies": {
76
+ "react": ">=19.0 <19.3",
77
+ "react-dom": ">=19.0 <19.3",
78
+ "three": ">=0.181.2"
79
+ },
80
+ "peerDependenciesMeta": {
81
+ "react-dom": {
82
+ "optional": true
83
+ }
84
+ },
85
+ "scripts": {
86
+ "prebuild": "node -e \"require('fs').copyFileSync('../../readme.md', 'readme.md')\"",
87
+ "build": "unbuild",
88
+ "postbuild": "node ../../scripts/fix-three-types.js",
89
+ "stub": "unbuild --stub"
90
+ }
91
+ }
@@ -0,0 +1,7 @@
1
+ export const DiscreteEventPriority = 0b0000000000000000000000000000001;
2
+ export const ContinuousEventPriority = 0b0000000000000000000000000000100;
3
+ export const DefaultEventPriority = 0b0000000000000000000000000010000;
4
+ export const IdleEventPriority = 0b0100000000000000000000000000000;
5
+ export const LegacyRoot = 0;
6
+ export const ConcurrentRoot = 1;
7
+ export const NoEventPriority = 0;
@@ -0,0 +1 @@
1
+ const t=1,o=8,r=32,e=2,i=268435456,n=0,s=0;export{t as ConcurrentRoot,o as ContinuousEventPriority,r as DefaultEventPriority,e as DiscreteEventPriority,i as IdleEventPriority,n as LegacyRoot,s as NoEventPriority};