forked from pmndrs/gltfjsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.09 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "deltadevs-gltfjsx",
"version": "4.5.2",
"description": "GLTF to JSX converter",
"scripts": {
"test": "NODE_OPTIONS=--openssl-legacy-provider 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",
"main": "src/utils/main.js",
"engines": {
"node": ">=10"
},
"dependencies": {
"@gltf-transform/core": "^0.12.16",
"@gltf-transform/extensions": "^0.12.16",
"@gltf-transform/functions": "^0.12.16",
"@react-spring/core": "^9.2.4",
"@react-spring/web": "^9.2.4",
"draco3dgltf": "1.4.1",
"import-jsx": "^4.0.0",
"ink": "^3.0.9",
"is-var-name": "^2.0.0",
"jsdom": "16.6.0",
"jsdom-global": "3.0.2",
"meow": "7.1.1",
"prettier": "^2.3.2",
"react": "^17.0.0",
"three": "0.122.0",
"use-error-boundary": "2.0.6"
},
"devDependencies": {
"@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.1",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"fast-glob": "^3.2.7",
"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"
}
}