UNPKG

node-merge-images

Version:

Merges images. You can optionally set the merging orientation (vertical or horizontal), margins between images, etc.

74 lines (73 loc) 2.11 kB
{ "name": "node-merge-images", "version": "1.0.1", "description": "Merges images. You can optionally set the merging orientation (vertical or horizontal), margins between images, etc.", "main": "dist/build.common.js", "module": "dist/build.esm.js", "types": "types/index.d.ts", "files": [ "dist/*.js", "screencaps", "types", "CHANGELOG.md", "LICENSE", "package.json", "README.md" ], "scripts": { "watch": "node --max-old-space-size=8192 node_modules/rollup/dist/bin/rollup -c rollup.config.js --watch", "prewatch": "rm -rf dist types", "build": "node --max-old-space-size=8192 node_modules/rollup/dist/bin/rollup -c rollup.config.js", "prebuild": "rm -rf dist types", "test": "jest" }, "_moduleAliases": { "~": "dist" }, "repository": { "type": "git", "url": "git+https://github.com/takuya-motoshima/node-merge-images.git" }, "keywords": [ "merge image", "join image", "concat", "convert", "compose", "image", "merge", "magick", "imagemagick" ], "author": "Takuya Motoshima <developer.takuyamotoshima@gmail.com> (https://twitter.com/TakuyaMotoshima)", "license": "MIT", "bugs": { "url": "https://github.com/takuya-motoshima/node-merge-images/issues", "email": "developer.takuyamotoshima@gmail.com" }, "homepage": "https://github.com/takuya-motoshima/node-merge-images#readme", "dependencies": { "fs-extra": "^11.2.0", "imagemagick": "^0.1.3" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/imagemagick": "^0.0.31", "@types/jest": "^29.2.4", "@types/node": "^18.11.15", "image-size": "^1.1.1", "jest": "^29.3.1", "module-alias": "^2.2.2", "rollup": "^2.51.1", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-json": "^4.0.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.35.0", "ts-loader": "^8.1.0", "ts-node": "^9.1.1", "tsc-alias": "^1.8.2", "tsconfig-paths": "^3.9.0", "typescript": "^5.5.2" } }