-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 881 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 881 Bytes
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
{
"name": "vue3-lazy-render",
"version": "1.0.0",
"description": "A Vue 3 plugin for lazy rendering components",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.mjs",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"keywords": [
"vue",
"vue3",
"lazy",
"render",
"plugin"
],
"author": "Miguel Chambel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/helghast79/vue3-lazy-render"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"postcss": "^8.5.3",
"rollup": "^4.40.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-vue": "^6.0.0-beta.10"
}
}