forked from kevin-radino-aleacsysonline/zip-and-unzip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 4.5 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "zip-unzip-ktx2",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env TS_NODE_PROJECT=build/tsconfig.node.json NODE_ENV=development webpack serve --config build/webpack.dev.ts",
"build:dev": "cross-env TS_NODE_PROJECT=build/tsconfig.node.json NODE_ENV=development webpack --config build/webpack.dev.ts",
"build:prod": "cross-env TS_NODE_PROJECT=build/tsconfig.node.json NODE_ENV=production webpack --config build/webpack.prod.ts",
"lint": "tsc --build build/tsconfig.all.json && eslint --config build/eslintrc.js 'src/**/*'",
"format": "prettier --write --config build/prettierrc.json 'src/**/*'",
"ktx2:etc1s": "sh ./build/compression/compressToKTX2.sh --dir KTX2_ETC1S --t2 --encode etc1s --clevel 5 --qlevel 255",
"ktx2:uastc": "sh ./build/compression/compressToKTX2.sh --dir KTX2_UASTC --t2 --encode uastc --uastc_quality 4 --zcmp 22 --uastc_rdo_l 4 --uastc_rdo_d 4096 --uastc_rdo_b 10.0 --uastc_rdo_s 18.0",
"ktx2:uastc-high": "sh ./build/compression/compressToKTX2.sh --dir KTX2_UASTC --t2 --encode uastc --uastc_quality 4 --zcmp 22 --uastc_rdo_l 1 --uastc_rdo_d 8192 --uastc_rdo_b 20.0 --uastc_rdo_s 20.0",
"new-ktx2:etc1s": "sh ./build/compression/compressToKTX2New.sh --dir KTX2_ETC1S --encode basis-lz --format R8G8B8A8_SRGB --clevel 5 --qlevel 255",
"new-ktx2:uastc": "sh ./build/compression/compressToKTX2New.sh --dir KTX2_UASTC --encode uastc --format R8G8B8A8_SRGB --uastc-quality 4 --zstd 22 --uastc-rdo --uastc-rdo-l 4 --uastc-rdo-d 4096 --uastc-rdo-b 10.0 --uastc-rdo-s 18.0",
"new-ktx2:uastc-high": "sh ./build/compression/compressToKTX2New.sh --dir KTX2_UASTC --encode uastc --format R8G8B8A8_SRGB --uastc-quality 4 --zstd 22 --uastc-rdo --uastc-rdo-l 1 --uastc-rdo-d 8192 --uastc-rdo-b 20.0 --uastc-rdo-s 20.0",
"new-ktx2:uastc-high-zlib": "sh ./build/compression/compressToKTX2New.sh --dir KTX2_UASTC --encode uastc --format R8G8B8A8_SRGB --uastc-quality 4 --zlib 9 --uastc-rdo --uastc-rdo-l 1 --uastc-rdo-d 8192 --uastc-rdo-b 20.0 --uastc-rdo-s 20.0"
},
"author": "Kristof Van Der Haeghen",
"license": "ISC",
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@types/clean-webpack-plugin": "^0.1.3",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/howler": "^2.2.7",
"@types/ip": "^1.1.0",
"@types/lodash": "^4.14.172",
"@types/node": "^20.3.2",
"@types/terser-webpack-plugin": "^5.0.3",
"@types/uglify-js": "^3.13.0",
"@types/uglifyjs-webpack-plugin": "^1.1.1",
"@types/webpack": "^5.28.5",
"@types/webpack-dev-server": "^4.7.2",
"@types/webpack-merge": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^2.27.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"file-loader": "^6.2.0",
"fs": "^0.0.1-security",
"howler": "^2.2.3",
"html-webpack-plugin": "^5.3.2",
"imagemin": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"img-loader": "^4.0.0",
"ip": "^1.1.5",
"node-polyfill-webpack-plugin": "^1.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.3.0",
"tslint": "^6.1.3",
"typescript": "^5.3.3",
"typescript-tslint-plugin": "^1.0.1",
"uglify-js": "^3.13.10",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.1.0",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.1",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@types/stats": "^0.16.30",
"@types/three": "^0.146.0",
"commander": "^10.0.1",
"convert-js-to-ts": "^1.3.2",
"fflate": "^0.8.2",
"figlet": "^1.6.0",
"js-to-ts-converter": "^0.18.2",
"lodash": "^4.17.21",
"pixi-basis-ktx2": "^0.0.19",
"pixi.js": "^7.4.2",
"stats.js": "^0.17.0",
"three": "^0.148.0",
"zstddec": "^0.0.2"
},
"resolutions": {
"pixi.js": "7.4.2"
},
"browser": {
"fs": false
},
"packageManager": "yarn@4.0.2"
}