-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "r3f-touch-controller",
"version": "1.0.0",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"description": "A Vite plugin for manipulating elements in Three.js using a touch device.",
"keywords": [
"vite",
"plugin",
"typescript"
],
"author": "Andrew H <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsc",
"preview": "vite preview"
},
"peerDependencies": {
"@react-three/fiber": "^8.16.8",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"three": "^0.166.1",
"vite": "^5.3.1"
},
"dependencies": {
"@react-three/drei": "^9.108.4",
"@react-three/fiber": "^8.16.8",
"@use-gesture/react": "^10.3.1",
"three": "^0.166.1"
},
"devDependencies": {
"@types/node": "20.14.10",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.166.0",
"typescript": "^5.2.2",
"vite": "^5.3.1"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/runeii/r3f-touch-controller.git"
},
"bugs": {
"url": "https://github.com/runeii/r3f-touch-controller/issues"
},
"homepage": "https://github.com/runeii/r3f-touch-controller#readme"
}