-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
66 lines (66 loc) · 1.84 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
64
65
66
{
"name": "vueperslides",
"version": "3.5.1",
"description": "A touch ready and responsive slideshow for Vue 3 and 2.",
"author": "Antoni Andre <[email protected]>",
"homepage": "https://github.com/antoniandre/vueper-slides",
"repository": "https://github.com/antoniandre/vueper-slides",
"license": "MIT",
"funding": "https://github.com/sponsors/antoniandre",
"main": "./dist/vueperslides.umd.js",
"unpkg": "./dist/vueperslides.umd.js",
"jsdelivr": "./dist/vueperslides.umd.js",
"module": "./dist/vueperslides.es.js",
"files": [
"dist/"
],
"exports": {
".": {
"import": "./dist/vueperslides.es.js",
"require": "./dist/vueperslides.umd.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"keywords": [
"carousel",
"slideshow",
"vue",
"vue 2",
"vue 3",
"ui"
],
"scripts": {
"dev": "vite",
"build": "vite build --base=/vueper-slides/",
"build-bundle": "BUNDLE=true vite build && mv dist/style.css dist/vueperslides.css",
"serve": "vite preview --base=/vueper-slides/",
"lint": "vite lint"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@fortawesome/fontawesome-free": "^5.15.4",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/compiler-sfc": "^3.2.41",
"autoprefixer": "^10.4.12",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.6.0",
"postcss": "^8.4.18",
"pug": "^3.0.2",
"rollup": "^3.2.3",
"rollup-plugin-delete": "^2.0.0",
"sass": "^1.55.0",
"simple-syntax-highlighter": "^2.2.3",
"vite": "^3.1.8",
"vue": "^3.2.41",
"vue-router": "^4.1.5",
"wave-ui": "^2.43.1"
},
"peerDependencies": {
"vue": "^2.6.14 || ^3.2.0"
}
}