76 lines
1.7 KiB
JSON
76 lines
1.7 KiB
JSON
|
|
{
|
||
|
|
"name": "@11ty/eleventy-img",
|
||
|
|
"version": "6.0.4",
|
||
|
|
"description": "Low level utility to perform build-time image transformations.",
|
||
|
|
"publishConfig": {
|
||
|
|
"access": "public"
|
||
|
|
},
|
||
|
|
"main": "img.js",
|
||
|
|
"engines": {
|
||
|
|
"node": ">=18"
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"pretest": "eslint img.js src/**.js test/**.js",
|
||
|
|
"test": "ava --no-worker-threads",
|
||
|
|
"watch": "ava --no-worker-threads --watch",
|
||
|
|
"sample": "cd sample && node sample.js"
|
||
|
|
},
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "git+https://github.com/11ty/eleventy-img.git"
|
||
|
|
},
|
||
|
|
"funding": {
|
||
|
|
"type": "opencollective",
|
||
|
|
"url": "https://opencollective.com/11ty"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"eleventy",
|
||
|
|
"eleventy-utility"
|
||
|
|
],
|
||
|
|
"author": {
|
||
|
|
"name": "Zach Leatherman",
|
||
|
|
"email": "zachleatherman@gmail.com",
|
||
|
|
"url": "https://zachleat.com/"
|
||
|
|
},
|
||
|
|
"license": "MIT",
|
||
|
|
"bugs": {
|
||
|
|
"url": "https://github.com/11ty/eleventy-img/issues"
|
||
|
|
},
|
||
|
|
"homepage": "https://github.com/11ty/eleventy-img#readme",
|
||
|
|
"dependencies": {
|
||
|
|
"@11ty/eleventy-fetch": "^5.1.0",
|
||
|
|
"@11ty/eleventy-utils": "^2.0.7",
|
||
|
|
"brotli-size": "^4.0.0",
|
||
|
|
"debug": "^4.4.0",
|
||
|
|
"entities": "^6.0.0",
|
||
|
|
"image-size": "^1.2.1",
|
||
|
|
"p-queue": "^6.6.2",
|
||
|
|
"sharp": "^0.33.5"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@11ty/eleventy": "^3.0.0",
|
||
|
|
"@11ty/eleventy-plugin-webc": "^0.11.2",
|
||
|
|
"@eslint/js": "^9.26.0",
|
||
|
|
"@stylistic/eslint-plugin-js": "^4.2.0",
|
||
|
|
"ava": "^6.3.0",
|
||
|
|
"eslint": "^9.26.0",
|
||
|
|
"exifr": "^7.1.3",
|
||
|
|
"globals": "^16.1.0",
|
||
|
|
"pixelmatch": "^5.3.0"
|
||
|
|
},
|
||
|
|
"ava": {
|
||
|
|
"failFast": false,
|
||
|
|
"files": [
|
||
|
|
"./test/*.{js,cjs,mjs}"
|
||
|
|
],
|
||
|
|
"watchMode": {
|
||
|
|
"ignoreChanges": [
|
||
|
|
"./.cache/*",
|
||
|
|
"./img/*",
|
||
|
|
"./test/img/*",
|
||
|
|
"./test/**/generated*"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|