UNPKG

gzipper

Version:

CLI for compressing files.

61 lines 1.52 kB
{ "name": "gzipper", "version": "8.2.1", "description": "CLI for compressing files.", "main": "index.js", "type": "module", "repository": { "type": "git", "url": "git+https://github.com/gios/gzipper.git" }, "bin": "./bin/index.js", "keywords": [ "compress", "compression", "brotli", "deflate", "zopfli", "gzip", "zlib", "CLI", "tool", "angular" ], "author": "Gios", "license": "GPL-3.0", "bugs": { "url": "https://github.com/gios/gzipper/issues" }, "homepage": "https://github.com/gios/gzipper#readme", "devDependencies": { "@eslint/js": "^9.22.0", "@types/eslint__js": "^8.42.3", "@types/node": "^22.13.10", "copyfiles": "^2.4.1", "eslint": "^9.22.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-vitest": "^0.5.4", "prettier": "^3.5.3", "rimraf": "^6.0.1", "tsx": "^4.19.3", "typescript": "^5.8.2", "typescript-eslint": "^8.26.1", "vitest": "^2.1.9" }, "engines": { "node": ">=20.11.0" }, "dependencies": { "@gfx/zopfli": "^1.0.15", "commander": "^12.1.0", "simple-zstd": "^1.4.2" }, "scripts": { "test": "vitest run --no-file-parallelism --test-timeout=10000", "coverage": "npm run test --coverage --silent", "eslint": "eslint \"**/*.ts\"", "prettier": "prettier \"**/*.{ts,js,yaml,md,json}\" --write", "tsc": "tsc --noEmit", "build": "rimraf dist && tsc && copyfiles -f package.json README.md LICENSE CHANGELOG.md dist/" } }