-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "preact-reconciler",
"version": "0.2.3",
"description": "Custom renderers for Preact in <1KB.",
"keywords": [
"react",
"preact",
"minimal",
"reconciliation",
"jsx",
"vdom",
"fiber",
"renderers"
],
"author": "Cody Bennett (https://github.com/CodyJasonBennett)",
"homepage": "https://github.com/CodyJasonBennett/preact-reconciler",
"repository": "https://github.com/CodyJasonBennett/preact-reconciler",
"license": "MIT",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./constants.js": {
"types": "./dist/constants.d.ts",
"require": "./dist/constants.js",
"import": "./dist/constants.mjs"
},
"./constants": {
"types": "./dist/constants.d.ts",
"require": "./dist/constants.js",
"import": "./dist/constants.mjs"
},
"./reflection.js": {
"types": "./dist/reflection.d.ts",
"require": "./dist/reflection.js",
"import": "./dist/reflection.mjs"
},
"./reflection": {
"types": "./dist/reflection.d.ts",
"require": "./dist/reflection.js",
"import": "./dist/reflection.mjs"
}
},
"sideEffects": false,
"devDependencies": {
"@react-three/cannon": "^6.6.0",
"@react-three/drei": "^10.0.0",
"@react-three/fiber": "^9.0.4",
"@types/node": "^22.13.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.4",
"@types/three": "^0.173.0",
"jsdom": "^26.0.0",
"preact": "^10.26.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"three": "^0.173.0",
"typescript": "^5.7.3",
"vite": "^6.1.1",
"vitest": "^3.0.6"
},
"peerDependencies": {
"preact": ">=10"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"test": "vitest run --environment=jsdom"
}
}