forked from juunini/gltf-optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
{
"name": "gltf-optimizer",
"version": "0.4.0",
"description": "Optimize glTF model",
"homepage": "https://github.com/juunini/gltf-optimizer",
"repository": "juunini/gltf-optimizer",
"license": "MIT",
"author": "juunini",
"main": "./dist/src/index.js",
"module": "./dist/src/module.js",
"types": "./dist/src/index.d.ts",
"bin": {
"gltf-optimizer": "./dist/bin/index.js"
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"test": "pnpm clear && jest",
"test:cov": "pnpm clear && jest --coverage",
"clear": "rimraf bin/*.js && rimraf bin/*.d.ts && rimraf src/**/*.js && rimraf src/**/*.d.ts",
"lint": "eslint --ext .ts ."
},
"devDependencies": {
"@swc/core": "^1.3.24",
"@swc/jest": "^0.2.24",
"@types/draco3d": "^1.4.2",
"@types/jest": "^29.2.4",
"@types/jest-plugin-context": "^2.9.5",
"@types/node": "^18.11.18",
"@types/sharp": "^0.31.1",
"@types/yargs": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"jest-plugin-context": "^2.9.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@gltf-transform/core": "^2.4.7",
"@gltf-transform/extensions": "^2.4.7",
"@gltf-transform/functions": "^2.4.7",
"@squoosh/lib": "^0.5.3",
"draco3d": "^1.5.6",
"meshoptimizer": "^0.18.1",
"sharp": "^0.31.3",
"webp-converter-browser": "^1.0.3",
"yargs": "^17.6.2"
}
}