-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "@splidejs/vue-splide",
"version": "0.6.12",
"description": "The Splide component for Vue.",
"author": "Naotoshi Fujita",
"license": "MIT",
"main": "dist/js/vue-splide.cjs.js",
"module": "dist/js/vue-splide.esm.js",
"types": "src/js/index.ts",
"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": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitejs/plugin-vue": "^3.1.0",
"eslint": "^8.23.0",
"eslint-plugin-vue": "^9.4.0",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"jest": "^29.0.2",
"ts-jest": "next",
"typescript": "^4.8.2",
"vite": "^3.1.0",
"vue": "^3.2.38",
"vue-tsc": "^0.40.9"
},
"scripts": {
"develop": "vite build",
"check:type": "vue-tsc --noEmit",
"build": "vite build --watch false",
"build:all": "npm run check:type && npm run build && node scripts/copy-css.js",
"test": "jest",
"eslint": "eslint src",
"deploy": "gh-pages -d examples/dist"
},
"exports": {
".": {
"require": "./dist/js/vue-splide.cjs.js",
"import": "./dist/js/vue-splide.esm.js",
"default": "./dist/js/vue-splide.esm.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"
}
}