diff --git a/mcp/package.json b/mcp/package.json index 5115471..1bdb200 100644 --- a/mcp/package.json +++ b/mcp/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@modelcontextprotocol/sdk": "^1.30.0", - "image-and-video-compressor": "^2.0.2", + "image-and-video-compressor": "^2.0.3", "zod": "^4.4.3" }, "devDependencies": { diff --git a/package-lock.json b/package-lock.json index 439292d..d478fc2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "image-and-video-compressor", - "version": "2.0.2", + "version": "2.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "image-and-video-compressor", - "version": "2.0.2", + "version": "2.0.3", "license": "MIT", "workspaces": [ "mcp" diff --git a/package.json b/package.json index a0216b5..8c6e007 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "image-and-video-compressor", - "version": "2.0.2", + "version": "2.0.3", "description": "Fast, type-safe image and video compression for Node.js — parallel by default, with a colorful CLI and machine-readable JSON output for AI agents.", "author": "Rohan Poudel", "license": "MIT", @@ -37,6 +37,7 @@ "files": [ "dist", "README.md", + "MIGRATION.md", "LICENSE" ], "engines": { @@ -56,7 +57,7 @@ "lint:fix": "eslint . --fix", "format": "prettier --write .", "format:check": "prettier --check .", - "prepublishOnly": "npm run typecheck && npm run test && npm run build", + "prepublishOnly": "npm run typecheck && npm run lint && npm run format:check && npm run test && npm run build", "samples": "node scripts/make-samples.mjs", "build:mcp": "npm run build -w image-and-video-compressor-mcp" },