-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 944 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
38
{
"name": "@eva/texture-compressor",
"version": "0.2.0",
"description": "compressed texture generation scheme for eva.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"eva-compress": "./bin/index.js"
},
"scripts": {
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eva-engine/texture-compressor.git"
},
"author": "aspsnd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eva-engine/texture-compressor/issues"
},
"homepage": "https://github.com/eva-engine/texture-compressor#readme",
"dependencies": {
"minimist": "^1.2.5",
"sharp": "^0.29.3"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^16.11.10",
"@types/sharp": "^0.29.4",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^3.6.4"
}
}