forked from pmndrs/gltfjsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.2 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
{
"name": "gltfjsx",
"version": "2.0.0",
"description": "gltf to jsx",
"bin": {
"gltfjsx": "./index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 120
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-spring/gltfjsx.git"
},
"keywords": [
"gltf",
"jsx",
"react",
"fiber",
"three",
"threejs"
],
"author": "Paul Henschel",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-spring/gltfjsx/issues"
},
"homepage": "https://github.com/react-spring/gltfjsx#readme",
"dependencies": {
"draco3dgltf": "1.3.6",
"is-var-name": "^2.0.0",
"jsdom": "16.2.2",
"jsdom-global": "3.0.2",
"prettier": "2.0.5",
"three": "0.116.1",
"yargs": "15.3.1"
},
"devDependencies": {
"husky": "4.2.5",
"lint-staged": "10.2.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-three-fiber"
}
}