-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2.21 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
70
71
72
73
74
75
76
77
78
79
{
"name": "vue-carousel-card",
"version": "2.0.0",
"description": "vue轮播卡片组件(vue carousel card component)with [email protected]",
"author": "jekorx",
"files": [
"lib",
"types",
"styles"
],
"main": "./lib/vue-carousel-card.umd.js",
"module": "./lib/vue-carousel-card.es.js",
"style": "./styles/index.css",
"exports": {
".": {
"import": "./lib/vue-carousel-card.es.js",
"require": "./lib/vue-carousel-card.umd.js"
},
"./styles/index.css": {
"import": "./styles/index.css",
"require": "./styles/index.css"
}
},
"typings": "./types/index.d.ts",
"private": false,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && eslint src --ext .ts,.js,.tsx,.jsx,.vue && vite build",
"build:show": "vue-tsc --noEmit && eslint src --ext .ts,.js,.tsx,.jsx,.vue && vite build -c vite.config.show.ts",
"build:all": "vue-tsc --noEmit && eslint src --ext .ts,.js,.tsx,.jsx,.vue && vite build && vite build -c vite.config.show.ts",
"serve": "vite preview"
},
"dependencies": {
"resize-observer-polyfill": "^1.5.0",
"throttle-debounce": "^1.0.1"
},
"peerDependencies": {
"vue": "^3.0.5"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@types/throttle-debounce": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vitejs/plugin-legacy": "^1.3.2",
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.5",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-vue": "^7.9.0",
"typescript": "^4.1.3",
"vite": "^2.2.3",
"vue": "^3.0.5",
"vue-tsc": "^0.0.24"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jekorx/vue-carousel-card.git"
},
"bugs": {
"url": "https://github.com/jekorx/vue-carousel-card/issues"
},
"homepage": "https://github.com/jekorx/vue-carousel-card#readme",
"keywords": [
"Vue",
"Vue3",
"vue-carousel-card",
"carousel",
"banner"
],
"license": "MIT"
}