-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 1.98 KB
/
package.json
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
{
"name": "preact-reconciler",
"version": "0.1.8",
"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": {
"@preact/preset-vite": "^2.5.0",
"@react-three/cannon": "^6.5.2",
"@react-three/drei": "^9.57.1",
"@react-three/fiber": "^8.12.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"jsdom": "^21.1.0",
"preact": "^10.16.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.150.1",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"peerDependencies": {
"preact": ">=10"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"test": "vitest run --environment=jsdom"
}
}