2020-01-18 05:31:39 +00:00
|
|
|
{
|
|
|
|
"name": "heic-convert",
|
2023-11-30 05:37:52 +00:00
|
|
|
"version": "2.1.0",
|
2020-01-18 06:06:03 +00:00
|
|
|
"description": "Convert HEIC/HEIF images to JPEG and PNG",
|
2020-01-18 05:31:39 +00:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2020-02-03 22:36:47 +00:00
|
|
|
"pretest": "node scripts/images.js",
|
2023-11-28 07:27:56 +00:00
|
|
|
"test": "mocha --timeout 40000 --slow 0 \"test/**/*.test.js\""
|
2020-01-18 05:31:39 +00:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
},
|
2020-01-18 05:41:55 +00:00
|
|
|
"homepage": "https://github.com/catdad-experiments/heic-convert#readme",
|
|
|
|
"devDependencies": {
|
2020-08-19 21:58:36 +00:00
|
|
|
"buffer-to-uint8array": "^1.1.0",
|
2023-11-28 07:28:41 +00:00
|
|
|
"canvas": "^2.11.2",
|
2020-01-18 06:06:03 +00:00
|
|
|
"chai": "^4.2.0",
|
2020-01-18 05:41:55 +00:00
|
|
|
"eslint": "^5.16.0",
|
2020-01-18 06:06:03 +00:00
|
|
|
"file-type": "^13.1.0",
|
|
|
|
"fs-extra": "^8.1.0",
|
2023-11-28 07:28:41 +00:00
|
|
|
"jsdom": "^22.1.0",
|
2020-01-18 06:06:03 +00:00
|
|
|
"mocha": "^7.0.0",
|
|
|
|
"node-fetch": "^2.6.0",
|
2020-08-19 21:58:36 +00:00
|
|
|
"pixelmatch": "^5.2.1",
|
2020-01-18 06:06:03 +00:00
|
|
|
"rootrequire": "^1.0.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-11-09 23:23:41 +00:00
|
|
|
"heic-decode": "^2.0.0",
|
2023-11-09 21:46:33 +00:00
|
|
|
"jpeg-js": "^0.4.4",
|
|
|
|
"pngjs": "^6.0.0"
|
2020-01-18 06:06:03 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-11-11 06:54:56 +00:00
|
|
|
"node": ">=12.0.0"
|
2020-01-18 05:41:55 +00:00
|
|
|
}
|
2020-01-18 05:31:39 +00:00
|
|
|
}
|