vue3-img-lazyload
Version:
Vue3 image lazyload
92 lines (91 loc) • 2.38 kB
JSON
{
"name": "vue3-img-lazyload",
"version": "1.4.0",
"description": "Vue3 image lazyload",
"license": "MIT",
"author": "木荣 <admin@imuboy.cn>, lxf <infiniment@163.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/luoxiangfan/vue3-lazyload.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"unpkg": "dist/index.min.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"keywords": [
"vue",
"vue3",
"image",
"img",
"lazyload"
],
"sideEffects": false,
"scripts": {
"build": "unbuild && npm run rollup:build",
"rollup:build": "node rollup.config.js",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"demo:dev": "vite",
"demo:build": "vite build",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"type-check": "tsc --strict --noEmit"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/types": "^7.26.9",
"@blaumaus/rollup-plugin-uglify": "^7.0.1",
"@eslint/js": "^9.21.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.9",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/test-utils": "^2.4.6",
"bumpp": "^10.0.3",
"eslint": "^9.21.0",
"esno": "^4.8.0",
"globals": "^16.0.0",
"happy-dom": "^17.3.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.3",
"rollup": "^4.34.9",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"unbuild": "^3.5.0",
"vite": "^6.2.0",
"vitest": "^3.0.8",
"vue": "^3.5.13"
},
"lint-staged": {
"*": "npm run lint:fix"
},
"homepage": "https://github.com/luoxiangfan/vue3-lazyload#readme"
}