forked from Splidejs/vue-splide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "@splidejs/vue-splide",
"version": "0.5.18",
"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"
},
"dependencies": {
"@splidejs/splide": "^3.6.12"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vitejs/plugin-vue": "^2.1.0",
"eslint": "^8.7.0",
"eslint-plugin-vue": "^8.3.0",
"gh-pages": "^3.2.3",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"vite": "^2.7.13",
"vue": "^3.2.23",
"vue-tsc": "^0.31.1"
},
"scripts": {
"develop": "vite build",
"check:type": "vue-tsc --noEmit",
"build": "vite build --watch false",
"build:all": "npm run check:type && npm run build",
"test": "jest",
"eslint": "eslint src",
"deploy": "gh-pages -d examples/dist"
}
}