mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
41 lines
1004 B
JSON
41 lines
1004 B
JSON
{
|
|
"name": "@vant/lazyload",
|
|
"version": "1.4.0",
|
|
"description": "This is a fork of vue-lazyload",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"types": "types/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"types"
|
|
],
|
|
"scripts": {
|
|
"dev": "rollup --config rollup.config.js --watch",
|
|
"build": "rollup --config rollup.config.js",
|
|
"release": "pnpm build && release-it",
|
|
"prepare": "pnpm build"
|
|
},
|
|
"license": "MIT",
|
|
"repository": "https://github.com/youzan/vant/tree/dev/packages/vant-lazyload",
|
|
"dependencies": {
|
|
"@vant/use": "^1.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@vant/cli": "workspace:*",
|
|
"@rollup/plugin-babel": "^5.2.1",
|
|
"@rollup/plugin-node-resolve": "^10.0.0",
|
|
"release-it": "^14.2.2",
|
|
"rollup": "^2.33.3"
|
|
},
|
|
"release-it": {
|
|
"git": {
|
|
"tag": false,
|
|
"commitMessage": "release: @vant/lazyload ${version}"
|
|
}
|
|
}
|
|
}
|