-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.06 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
{
"name": "gltf-gpu-compressed-texture",
"version": "1.1.0",
"description": "一个用于 GPU 压缩纹理降级的 GLTF 扩展",
"bin": {
"gltf-tc": "dist/gltf-tc.cli.js"
},
"main": "dist/gltf-tc.cjs.js",
"module": "dist/gltf-tc.esm.js",
"browser": "dist/gltf-tc.umd.js",
"miniprogram": "dist/gltf-tc.cjs.js",
"scripts": {
"example": "http-server .",
"build": "rollup -c",
"dev": "rollup -c -w",
"cli-help": "node dist/gltf-tc.cli.js -h",
"cli-zstd": "node dist/gltf-tc.cli.js -i ./examples/glb ./examples/zstd",
"cli-no-zstd": "node dist/gltf-tc.cli.js -i ./examples/glb ./examples/no-zstd 0",
"cli-no-mipmap": "node dist/gltf-tc.cli.js -i ./examples/glb ./examples/no-mipmap 1 false",
"cli-etc1s": "node dist/gltf-tc.cli.js -i ./examples/glb ./examples/etc1s 1 false \"-comp_level 5 -max_endpoints 16128 -max_selectors 16128\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepkolos/gltf-gpu-compressed-texture.git"
},
"files": [
"dist",
"types"
],
"types": "types/gltf-tc.d.ts",
"keywords": [
"gltf",
"glb",
"gpu",
"astc",
"uastc",
"basis",
"bc7",
"dxt",
"etc1",
"gpu compressed texture"
],
"author": "DeepKolos<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deepkolos/gltf-gpu-compressed-texture/issues"
},
"homepage": "https://github.com/deepkolos/gltf-gpu-compressed-texture#readme",
"dependencies": {
"gltf-pipeline": "^3.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-sucrase": "^3.1.0",
"@types/three": "^0.129.1",
"http-server": "^0.12.3",
"rollup": "^2.35.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^3.0.2",
"three": "^0.129.0",
"typescript": "^4.3.5"
}
}