generated from TiagoCavalcante/react-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "r3f-native-orbitcontrols",
"version": "1.0.12",
"description": "OrbitControls for React Three Fiber in React Native",
"type": "module",
"types": "./lib/index.d.ts",
"main": "./lib/index.cjs",
"module": "./lib/index.esm.js",
"exports": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"default": "./lib/index.esm.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TiagoCavalcante/r3f-native-orbitcontrols"
},
"scripts": {
"build": "rollup -c",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"keywords": [
"r3f",
"react-native",
"orbitcontrols"
],
"author": "Tiago Cavalcante Trindade",
"license": "MIT",
"peerDependencies": {
"@react-three/fiber": ">=8.0.11",
"expo-gl": ">=12.0.0",
"react": ">=14.0.0",
"react-native": ">=0.64.0",
"three": ">=0.139.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/react": "^18.2.56",
"@types/react-native": "^0.72.8",
"@types/three": "^0.161.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rollup": "^4.12.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{ts,tsx,md}": "prettier --write --no-semi"
}
}