UNPKG

@raja-rakoto/minificator

Version:

Minificator CLI: efficience solution for swiftly reducing file sizes and effortlessly optimizing a variety of file formats 🛠️

107 lines (106 loc) 3.46 kB
{ "name": "@raja-rakoto/minificator", "version": "2.0.5", "description": "Minificator CLI: efficience solution for swiftly reducing file sizes and effortlessly optimizing a variety of file formats 🛠️", "author": "Raja Rakotonirina <raja.rakoto7@gmail.com>", "license": "MIT", "type": "module", "module": "index.ts", "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "minificator": "./dist/index.js" }, "repository": { "type": "git", "url": "git+https://github.com/RajaRakoto/minificator.git" }, "homepage": "https://github.com/RajaRakoto/minificator#readme", "bugs": "https://github.com/RajaRakoto/minificator/issues", "files": [ "dist" ], "keywords": [ "cli", "tools", "minify", "compress", "all-in-one" ], "engines": { "node": ">= 16.0.0" }, "scripts": { "start": "bun dist/index.js", "start:smol": "bun --smol dist/index.js", "start:bin": "./dist/minificator", "clean": "rimraf build dist coverage", "dev": "bun run src/index.ts", "dev:watch": "bun --watch run src/index.ts", "dev:hot": "bun --hot run src/index.ts", "dev:smol:watch": "bun --smol --watch run src/index.ts", "dev:smol:hot": "bun --smol --hot run src/index.ts", "build": "bun run clean && bun run build.js && grunt copy", "build:watch": "bun build src/index.ts --outdir dist --watch", "build:bin": "bun build --compile --minify --sourcemap src/index.ts --outfile dist/minificator", "test": "bun test", "test:watch": "bun test --watch", "biome:start": "biome start", "biome:stop": "biome stop", "biome:fix": "biome check --fix .", "biome:unsafe": "biome check --fix --unsafe .", "backup": "grunt backup", "pkg-check": "depcheck", "pkg-upgrade": "ncu --interactive --format group --packageManager bun", "versioning": "ungit", "npm-version:major": "npm version major", "npm-version:minor": "npm version minor", "npm-version:patch": "npm version patch", "npm-login": "npm login", "npm-publish": "npm publish --access public", "npm-unpublish": "npm unpublish --force @raja-rakoto/minificator", "npm-reset:registry": "npm config delete registry", "npm-check:registry": "npm config get registry", "npm-proxy-set:registry": "npm set registry http://localhost:4873/", "npm-proxy:start": "bun run npm-proxy-set:registry && verdaccio", "npm-proxy:publish": "npm publish --registry http://localhost:4873/", "npm-proxy:unpublish": "npm unpublish --force --registry http://localhost:4873/ @raja-rakoto/minificator", "npm-proxy:republish": "bun run npm-proxy:unpublish && bun run npm-proxy:publish", "nvm": "nvm use" }, "dependencies": { "commander": "^12.1.0", "compress-pdf": "^0.5.1", "execa": "^9.4.0", "figlet": "^1.7.0", "inquirer": "^9.2.20", "node-emoji": "^2.1.3", "ora": "^8.1.0", "sharp": "^0.33.5" }, "devDependencies": { "@biomejs/biome": "1.9.2", "@types/bun": "latest", "@types/commander": "^2.12.2", "@types/execa": "^2.0.0", "@types/figlet": "^1.5.8", "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.13", "@types/node-emoji": "^2.1.0", "@types/ora": "^3.2.0", "bun-plugin-dts": "^0.2.3", "depcheck": "^1.4.7", "grunt": "^1.6.1", "grunt-contrib-compress": "^2.0.0", "grunt-shell": "^4.0.0", "jest": "^29.7.0", "load-grunt-tasks": "^5.1.0", "npm-check-updates": "^17.1.3", "rimraf": "^6.0.1", "ts-jest": "^29.2.5", "ungit": "^1.5.27" }, "peerDependencies": { "typescript": "^5.0.0" } }