forked from Splidejs/vue-splide
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.87 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
{
"name": "@splidejs/vue-splide",
"version": "0.6.12",
"description": "The Splide component for Vue.",
"author": "Naotoshi Fujita",
"license": "MIT",
"main": "dist/vue-splide.umd.cjs",
"module": "dist/vue-splide.js",
"types": "dist/index.d.ts",
"packageManager": "[email protected]",
"type": "module",
"files": [
"dist"
],
"keywords": [
"splide",
"slider",
"carousel",
"slideshow",
"lightweight",
"touch",
"responsive",
"vue"
],
"repository": {
"type": "git",
"url": "https://github.com/Splidejs/vue-splide.git"
},
"bugs": {
"url": "https://github.com/Splidejs/vue-splide/issues"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitejs/plugin-vue": "^5.1.2",
"eslint": "^8.23.0",
"eslint-plugin-vue": "^9.4.0",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "next",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "4.0.0-beta.2",
"vue": "^3.4.35",
"vue-tsc": "^2.0.29"
},
"scripts": {
"develop": "vite build",
"check:type": "vue-tsc --noEmit",
"build": "vite build",
"build:all": "npm run build && node scripts/copy-css.js",
"test": "jest",
"eslint": "eslint src",
"deploy": "gh-pages -d examples/dist",
"prepare": "npm run build:all"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/vue-splide.umd.cjs",
"import": "./dist/vue-splide.js",
"default": "./dist/vue-splide.js"
},
"./css": "./dist/css/splide.min.css",
"./css/core": "./dist/css/splide-core.min.css",
"./css/*": "./dist/css/themes/splide-*.min.css"
},
"dependencies": {
"@splidejs/splide": "^4.1.3"
}
}