UNPKG

img2teletext

Version:

TypeScript CLI and library for converting PNG/JPEG images to teletext graphics with multiple output formats

58 lines (57 loc) 1.37 kB
{ "name": "img2teletext", "version": "5.0.0", "description": "TypeScript CLI and library for converting PNG/JPEG images to teletext graphics with multiple output formats", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "img2teletext": "dist/cli.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "prepare": "npm run build && chmod +x ./dist/cli.js", "prepublish": "npm run test", "test": "npm run build && jest", "test:update": "npm run build && jest --updateSnapshot" }, "repository": { "type": "git", "url": "git+https://github.com/andormade/img2teletext.git" }, "keywords": [ "teletext", "png", "jpeg", "image", "converter", "cli", "typescript", "mosaic", "graphics" ], "author": "Andor Polgar", "license": "MIT", "bugs": { "url": "https://github.com/andormade/img2teletext/issues" }, "homepage": "https://github.com/andormade/img2teletext#readme", "engines": { "node": ">=14.0.0", "npm": ">=6.0.0" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.19.0", "@types/pngjs": "^6.0.5", "jest": "^29.7.0", "typescript": "^5.9.0" }, "dependencies": { "btoa": "^1.2.1", "commander": "^12.0.0", "jpeg-js": "^0.4.4", "pngjs": "^7.0.0", "teletexthash": "^0.1.0" } }