forked from pmndrs/gltfjsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) 路 1.91 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) 路 1.91 KB
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
81
82
83
84
85
86
87
{
"name": "@react-three/gltfjsx",
"version": "3.0.9",
"description": "gltf to jsx",
"scripts": {
"test": "node src/test"
},
"keywords": [
"gltf",
"jsx",
"react",
"fiber",
"three",
"threejs"
],
"author": "Paul Henschel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/gltfjsx.git"
},
"bugs": {
"url": "https://github.com/pmndrs/gltfjsx/issues"
},
"homepage": "https://github.com/pmndrs/gltfjsx#readme",
"bin": "cli.js",
"engines": {
"node": ">=10"
},
"dependencies": {
"draco3dgltf": "^1.3.6",
"import-jsx": "^4.0.0",
"ink": "^3.0.7",
"is-var-name": "^2.0.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"meow": "^7.1.1",
"prettier": "^2.1.2",
"react": "^16.13.1",
"three": "^0.122.0",
"use-error-boundary": "^2.0.4"
},
"devDependencies": {
"glTF-Sample-Models": "https://github.com/KhronosGroup/glTF-Sample-Models",
"@ava/babel": "^1.0.1",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"chalk": "^4.1.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"ink-testing-library": "^2.1.0",
"lint-staged": "^10.4.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 120
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-three-fiber"
}
}