-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.85 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
67
68
69
{
"name": "@jambonn/vue-concise-carousel",
"version": "2.1.31",
"description": "Vue Concise Carousel is SSR and CSR friendly",
"keywords": [
"vue",
"vue 3",
"concise",
"carousel",
"slider",
"ssr",
"csr",
"pwa"
],
"homepage": "https://jambonn.github.io/vue-concise-carousel/",
"bugs": {
"url": "https://github.com/jambonn/vue-concise-carousel/issues"
},
"license": "MIT",
"author": "Jambon <hoaeuro93@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/jambonn/vue-concise-carousel.git"
},
"scripts": {
"dev": "vite",
"release": "node release.js",
"build:demo": "NODE_ENV=production vite build --mode demo",
"build:lib": "NODE_ENV=production vite build --mode lib && yarn build:scss",
"build:scss": "sass src/scss/index.scss > lib/vue-concise-carousel.css && cleancss -o lib/vue-concise-carousel.min.css lib/vue-concise-carousel.css",
"serve": "vite preview"
},
"main": "lib/vue-concise-carousel.cjs.js",
"browser": "lib/vue-concise-carousel.es.js",
"module": "src/index.js",
"unpkg": "lib/vue-concise-carousel.umd.js",
"style": "lib/vue-concise-carousel.min.css",
"files": [
"lib",
"src/utils",
"src/*.js",
"src/*.vue"
],
"dependencies": {},
"devDependencies": {
"@vitejs/plugin-vue": "^1.2.3",
"@vue/compiler-sfc": "^3.1.1",
"@vue/eslint-config-prettier": "^6.0.0",
"chalk": "^4.1.1",
"clean-css-cli": "^5.2.2",
"eslint": "^7.23.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"execa": "^5.1.1",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"semver": "^7.3.5",
"vite": "^2.3.7",
"vue": "^3.1.1"
},
"peerDependencies": {
"vue": "^3.0.11"
},
"engines": {
"node": ">=12.x"
}
}