-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@jambonn/vue-lazyload",
"version": "1.0.10",
"description": "Vue module for lazy-loading images in your vue 3 applications.",
"main": "dist/vue-lazyload.cjs.js",
"module": "dist/vue-lazyload.es.js",
"unpkg": "dist/vue-lazyload.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"release": "node scripts/release.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jambonn/vue-lazyload.git"
},
"keywords": [
"vue-lazyload",
"vue",
"vue 3",
"lazyload",
"vue-directive"
],
"author": "Jambon <hoaeuro93@gmail.com>",
"bugs": {
"url": "https://github.com/jambonn/vue-lazyload/issues"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@vue/eslint-config-prettier": "^6.0.0",
"chalk": "^4.1.1",
"eslint": "^7.24.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.9.0",
"execa": "^5.1.1",
"minimist": "^1.2.5",
"prettier": "^2.2.1",
"semver": "^7.3.5",
"vite": "^2.1.5"
},
"peerDependencies": {
"vue": "^3.0.11"
},
"engines": {
"node": ">=12.x"
}
}