{ "name": "img2mp3", "version": "1.0.0", "description": "Encode MP3 files into images and decode them back, with a built-in player for audio-embedded images", "main": "src/index.js", "types": "index.d.ts", "bin": { "img2mp3": "bin/cli.js" }, "scripts": { "start": "node src/index.js", "test": "node test/basic.test.js", "prepublishOnly": "npm run test", "example": "node examples/basic_usage.js" }, "keywords": [ "steganography", "mp3", "image", "audio", "encoder", "decoder", "player", "cli", "embed", "hide", "extract", "i2m" ], "author": "ale", "license": "MIT", "dependencies": { "commander": "^11.1.0", "sharp": "^0.32.6", "chalk": "^4.1.2", "ora": "^5.4.1", "inquirer": "^8.2.6" }, "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/ale/img2mp3.git" }, "bugs": { "url": "https://github.com/ale/img2mp3/issues" }, "homepage": "https://github.com/ale/img2mp3#readme", "files": [ "src/", "bin/", "examples/", "index.d.ts", "README.md", "LICENSE" ] }