multi-format-converter
Version:
A Node.js package for converting image, PDF, and audio files, with SVG compression.
62 lines • 1.51 kB
JSON
{
"name": "multi-format-converter",
"version": "1.1.2",
"description": "A Node.js package for converting image, PDF, and audio files, with SVG compression.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"multi-format-converter": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts"
},
"keywords": [
"file-converter",
"image-converter",
"pdf-converter",
"audio-converter",
"svg-compressor"
],
"author": "Bharath",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"docx": "^8.5.0",
"fluent-ffmpeg": "^2.1.3",
"pdf-parse": "^1.1.1",
"pdf2pic": "^3.2.0",
"sharp": "^0.33.5",
"svgo": "^3.3.2"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.27",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/pdf-parse": "^1.1.5",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bharat2301/Packages.git"
},
"homepage": "https://github.com/Bharat2301/Packages.git#readme",
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=16"
}
}