lazy-loading-image-render
Version:
Lazy loading image render with blur effect for Next.js
64 lines (63 loc) • 1.51 kB
JSON
{
"name": "lazy-loading-image-render",
"version": "1.1.9",
"description": "Lazy loading image render with blur effect for Next.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./components": {
"import": "./dist/components/BlurImage.js",
"require": "./dist/components/BlurImage.js",
"types": "./dist/components/BlurImage.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint src/**/*.{ts,tsx}"
},
"keywords": [
"lazy-loading",
"image-render",
"image-processing",
"image-optimization",
"nextjs",
"react"
],
"author": "ezzio.salas@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ezzio-salas/lazy-loading-image-render.git"
},
"dependencies": {
"sharp": "^0.32.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"next": ">=12.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/next": "latest",
"@types/node": ">=12.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.57.1",
"jest": "^29.0.0",
"typescript": "^4.5.0"
}
}