forked from pmndrs/use-cannon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.18 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
79
80
{
"name": "@react-three/cannon",
"version": "0.5.4",
"description": "physics based hooks for react-three-fiber",
"keywords": [
"cannon",
"three",
"react",
"react-three-fiber"
],
"author": "Paul Henschel",
"contributors": [
"Cody Persinger <[email protected]> (https://github.com/codynova)"
],
"license": "MIT",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist && npm run typegen",
"build": "rollup -c",
"prepare": "npm run build",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict --jsx react",
"typegen": "tsc",
"test": "echo tests are missing"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 110
},
"peerDependencies": {
"react": ">=16.13",
"react-dom": ">=16.13",
"react-three-fiber": ">=5.0",
"typescript": ">=3.9"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/plugin-transform-parameters": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/plugin-transform-template-literals": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@babel/register": "^7.10.1",
"@types/react": "^17.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cannon-es": "^0.16.0",
"husky": "^4.3.7",
"lebab": "^3.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"react-merge-refs": "^1.0.0",
"react-three-fiber": "^5.3.13",
"rimraf": "^3.0.2",
"rollup": "^2.36.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-web-worker-loader": "^1.3.1",
"three": "^0.120.1",
"typescript": "^4.1.3"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}