-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "@splidejs/svelte-splide",
"version": "0.2.9",
"description": "Svelte component for the Splide slider/carousel.",
"author": "Naotoshi Fujita",
"license": "MIT",
"keywords": [
"splide",
"slider",
"carousel",
"slideshow",
"lightweight",
"touch",
"responsive",
"svelte"
],
"repository": {
"type": "git",
"url": "https://github.com/Splidejs/svelte-splide.git"
},
"bugs": {
"url": "https://github.com/Splidejs/svelte-splide/issues"
},
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"package": "node scripts/copy-css.js && svelte-kit package",
"preview": "svelte-kit preview --port 3030",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint src",
"deploy": "gh-pages -d examples/build"
},
"devDependencies": {
"@sveltejs/adapter-static": "^1.0.0-next.42",
"@sveltejs/kit": "next",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-plugin-svelte3": "^4.0.0",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"jest": "next",
"svelte": "^3.50.0",
"svelte-check": "^2.9.0",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.16",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"type": "module",
"exports": {
".": "./index.js",
"./css": "./css/splide.min.css",
"./css/core": "./css/splide-core.min.css",
"./css/*": "./css/themes/splide-*.min.css"
},
"dependencies": {
"@splidejs/splide": "^4.1.3"
}
}