mirror of
https://github.com/catdad-experiments/heic-convert
synced 2024-11-21 17:38:42 +00:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "heic-convert",
|
|
"version": "2.1.0",
|
|
"description": "Convert HEIC/HEIF images to JPEG and PNG",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"pretest": "node scripts/images.js",
|
|
"test": "mocha --timeout 40000 --slow 0 \"test/**/*.test.js\""
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/catdad-experiments/heic-convert.git"
|
|
},
|
|
"keywords": [
|
|
"heif",
|
|
"heic",
|
|
"convert",
|
|
"jpeg",
|
|
"jpg",
|
|
"png",
|
|
"image"
|
|
],
|
|
"author": "Kiril Vatev <vatev.1@gmail.com>",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/catdad-experiments/heic-convert/issues"
|
|
},
|
|
"homepage": "https://github.com/catdad-experiments/heic-convert#readme",
|
|
"devDependencies": {
|
|
"buffer-to-uint8array": "^1.1.0",
|
|
"canvas": "^2.11.2",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^5.16.0",
|
|
"file-type": "^13.1.0",
|
|
"fs-extra": "^8.1.0",
|
|
"jsdom": "^22.1.0",
|
|
"mocha": "^7.0.0",
|
|
"node-fetch": "^2.6.0",
|
|
"pixelmatch": "^5.2.1",
|
|
"rootrequire": "^1.0.0"
|
|
},
|
|
"dependencies": {
|
|
"heic-decode": "^2.0.0",
|
|
"jpeg-js": "^0.4.4",
|
|
"pngjs": "^6.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
}
|
|
}
|