-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "nuxt-render-on-scroll",
"version": "1.1.0",
"description": "A Vue/Nuxt component that allows you to lazily render components only when they are scrolled into the viewport.",
"main": "dist/render-on-scroll.ssr.js",
"browser": "dist/render-on-scroll.esm.js",
"module": "dist/render-on-scroll.esm.js",
"unpkg": "dist/render-on-scroll.min.js",
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"serve": "vue-cli-service serve dev/serve.js",
"prebuild": "rimraf ./dist",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.3.4",
"cross-env": "^7.0.3",
"minimist": "^1.2.8",
"postcss": "^8.4.24",
"rimraf": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"vue": "^3.3.4"
},
"peerDependencies": {
"vue": "3.x"
},
"engines": {
"node": ">=16"
},
"author": "Michael Dell",
"repository": {
"url": "git+https://github.com/dell-mic/nuxt-render-on-scroll",
"type": "git"
},
"keywords": [
"vue",
"nuxt",
"render",
"scroll",
"viewport",
"component"
],
"license": "MIT"
}