join-images
Version:
Merge multiple images into a single image
73 lines • 1.93 kB
JSON
{
"name": "join-images",
"version": "1.4.0",
"description": "Merge multiple images into a single image",
"author": "m.doaie <mdoaie@yahoo.co.uk>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ccpu/join-images.git"
},
"keywords": [
"join image",
"merge image",
"sharp js",
"concat",
"convert",
"compose",
"image",
"manipulation",
"merge",
"multiple image"
],
"main": "lib/main.js",
"files": [
"lib"
],
"engines": {
"node": ">= 24"
},
"peerDependencies": {
"sharp": "^0.34.5"
},
"dependencies": {
"is-plain-obj": "^4.1.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@pixpilot/dev-config": "^3.20.0",
"@pixpilot/eslint-config": "^2.10.0",
"@types/node": "^24.12.4",
"@types/sharp": "^0.32.0",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"sharp": "^0.34.5",
"tsutils": "^3.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.6",
"vitest-image-snapshot": "^0.6.51"
},
"scripts": {
"clean": "rimraf coverage lib tmp",
"build": "npm run clean && tsc -p tsconfig.release.json",
"watch": "tsc -w -p tsconfig.release.json",
"changeset": "changeset",
"lint": "pnpm eslint . --ext .ts,.tsx",
"lint:fix": "pnpm eslint . --ext .ts,.tsx --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"check:all": "pnpm run typecheck && pnpm run lint && pnpm run test",
"fix:all": "pnpm run lint:fix && pnpm run format:fix",
"typecheck": "tsc --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest",
"prepublish": "npm run lint && npm run build"
}
}