-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.24 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "gitart-scroll-carousel",
"version": "1.3.0",
"scripts": {
"dev": "vite --config dev/vite.config.ts",
"dev:build": "vite build --config dev/vite.config.ts",
"build": "node build/build.js",
"build:types": "vue-tsc --declaration --emitDeclarationOnly --p ./build/tsconfig.json --outFile dist/index.d.ts",
"lint": "yarn stylelint && yarn eslint",
"stylelint": "stylelint src/**/*.vue",
"eslint": "eslint . --ext .js,.ts,.vue",
"test": "vitest"
},
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./bundled": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dist": "./dist/*",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"bundled": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist",
"src"
],
"keywords": [
"gitart carousel",
"carousel",
"slider",
"carousel component",
"slider component",
"vue slider",
"vue3 slider",
"vue carousel",
"vue3 carousel"
],
"repository": {
"type": "git",
"url": "https://github.com/gitart-group/scroll-carousel.git",
"directory": "."
},
"author": {
"name": "Michael Gitart",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@gitart/eslint-config-vue": "0.3.0",
"@types/node": "^18.16.9",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.2",
"@vue/runtime-core": "^3.3.2",
"@vue/test-utils": "^2.3.2",
"eslint": "^8.40.0",
"happy-dom": "^9.18.3",
"sass": "^1.62.1",
"shelljs": "^0.8.5",
"stylelint": "^15.6.1",
"stylelint-config-standard": "^33.0.0",
"typescript": "^5.0.4",
"unplugin-auto-import": "^0.15.3",
"unplugin-vue-components": "^0.24.1",
"vite": "~4.3.6",
"vite-plugin-checker": "^0.6.0",
"vite-plugin-terminal": "^1.1.0",
"vite-plugin-windicss": "^1.9.0",
"vitest": "^0.31.0",
"vue": "^3.3.2",
"vue-tsc": "^1.6.5",
"windicss": "^3.5.6"
},
"peerDependencies": {
"vue": "^3.2.6"
},
"dependencies": {
"@vueuse/core": "^10.1.2",
"bezier-easing": "^2.1.0",
"gitart-animate-number": "^0.2.3"
}
}