forked from arilotter/texture-compressor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 986 Bytes
/
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
{
"name": "@arilotter/texture-compressor",
"version": "1.0.5",
"description": "CLI tool for texture compression using ASTC, ETC, PVRTC and S3TC in a KTX container.",
"main": "dist/cli/lib/index.js",
"types": "dist/types/lib/index.d.ts",
"scripts": {
"start": "tsc -w",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc"
},
"bin": {
"texture-compressor": "./bin/texture-compressor.js"
},
"author": "Tim van Scherpenzeel",
"license": "MIT",
"dependencies": {
"argparse": "^1.0.10",
"image-size": "^0.7.4"
},
"devDependencies": {
"@types/argparse": "^1.0.36",
"@types/node": "^12.0.2",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
}
}