-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.55 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
{
"name": "angular-three-gltf",
"version": "1.0.9",
"description": "GLTF to Angular Three converter",
"scripts": {
"cleanup": "rimraf node_modules"
},
"type": "module",
"keywords": [
"gltf",
"angular",
"three",
"threejs",
"webp"
],
"author": "Chau Tran",
"contributors": [
"Paul Henschel"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/angular-threejs/gltf.git"
},
"bugs": {
"url": "https://github.com/angular-threejs/gltf.git/issues"
},
"homepage": "https://github.com/angular-threejs/gltf.git#readme",
"bin": {
"angular-three-gltf": "cli.js"
},
"main": "./src/utils/exports.js",
"engines": {
"node": ">=18"
},
"dependencies": {
"@gltf-transform/core": "^4.0.9",
"@gltf-transform/extensions": "^4.0.9",
"@gltf-transform/functions": "^4.0.9",
"@node-loader/babel": "^2.1.0",
"chalk": "^5.3.0",
"draco3dgltf": "^1.5.7",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"jsdom": "^25.0.1",
"jsdom-global": "^3.0.2",
"meow": "^13.2.0",
"meshoptimizer": "^0.21.0",
"prettier": "^3.3.3",
"read-pkg-up": "^11.0.0",
"sharp": "^0.33.5",
"three": "0.122.0",
"three-stdlib": "^2.21.8"
},
"devDependencies": {
"lint-staged": "^15.2.10",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
}
}