datamosh
Version:
Edit images via buffers.
53 lines (52 loc) • 1.17 kB
JSON
{
"name": "datamosh",
"version": "2.1.3",
"description": "Edit images via buffers.",
"keywords": [
"datamosh",
"mosh",
"jpg",
"png",
"tiff",
"bmp",
"gif",
"edit",
"image",
"buffer",
"glitch"
],
"engines": {
"node": ">=14.0.0"
},
"author": "Michael Sterpka <michaelsterpka@gmail.com>",
"contributors": [
"Tyler Laskey <tlaskey3@gmail.com> (https://github.com/tlaskey)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mster/datamosh.git"
},
"bugs": {
"url": "https://github.com/mster/datamosh/issues"
},
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run jest",
"jest": "jest ./tests",
"lint": "echo \"Linting with Prettier\n\" && npx prettier --check . && echo \"Lint passed\n\"",
"lint-fix": "echo \"Auto-fixing with Prettier...\" && npx prettier --write ."
},
"jest": {
"testRegex": "tests/.*.test.js$"
},
"dependencies": {
"file-type": "^16.5.0",
"image-decode": "^1.2.2",
"image-encode": "^1.3.1"
},
"devDependencies": {
"jest": "^27.0.4",
"prettier": "^2.3.0"
}
}