-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 KB
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": "vue3-deferred-content",
"version": "1.0.8",
"description": "A Vue3 component to detect when HTML element or lazy component is becoming visible/hidden on the page.",
"author": "Akhmedshin Damir <a.yesworld@gmail.com>",
"scripts": {
"demo:dev": "vite",
"build": "rollup -c --environment production",
"demo:build": "APP_ENV=production vite build --outDir ./dist-example",
"demo:deploy": "gh-pages -d dist-example"
},
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/yesworld/vue3-deferred-content"
},
"bugs": {
"url": "https://github.com/yesworld/vue3-deferred-content/issues"
},
"homepage": "https://yesworld.github.io/vue3-deferred-content/",
"devDependencies": {
"@babel/core": "^7.12.10",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-typescript": "^8.1.0",
"gh-pages": "^3.1.0",
"rollup": "^2.35.1",
"rollup-plugin-banner2": "^1.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"tslib": "^2.0.3",
"typescript": "^4.1.3",
"vite": "^1.0.0-rc.13"
},
"keywords": [
"IntersectionObserver",
"deferred",
"intersect",
"observer",
"vue3",
"vue",
"image",
"lazy"
],
"main": "./dist/vue3-deferred-content.umd.min.js",
"files": [
"dist/*"
]
}