forked from pmndrs/gltfjsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.7 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
{
"name": "gltfjsx",
"version": "6.1.3",
"description": "GLTF to JSX converter",
"scripts": {
"test": "node src/test"
},
"type": "module",
"keywords": [
"gltf",
"jsx",
"react",
"fiber",
"three",
"threejs",
"webp"
],
"author": "Paul Henschel",
"maintainers": [
"Max Rusan"
],
"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": {
"gltfjsx": "./cli.js"
},
"main": "./src/utils/exports.js",
"engines": {
"node": ">=16"
},
"dependencies": {
"@gltf-transform/core": "3.0.0-alpha.4",
"@gltf-transform/extensions": "3.0.0-alpha.4",
"@gltf-transform/functions": "3.0.0-alpha.4",
"@node-loader/babel": "^2.0.1",
"draco3dgltf": "^1.5.5",
"is-var-name": "^2.0.0",
"jsdom": "^20.0.3",
"jsdom-global": "^3.0.2",
"meow": "^11.0.0",
"meshoptimizer": "^0.18.1",
"prettier": "^2.3.2",
"sharp": "^0.31.3",
"three": "0.122.0"
},
"devDependencies": {
"chalk": "^4.1.1",
"fast-glob": "^3.2.7",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0"
},
"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"
}
}