-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
{
"name": "svelte-swipe",
"version": "2.0.4",
"description": "A Svelte component to swipe elements just like a snap",
"homepage": "https://github.com/SharifClick/svelte-swipe",
"repository": {
"type": "git",
"url": "https://github.com/SharifClick/svelte-swipe"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/SharifClick/svelte-swipe/issues"
},
"author": {
"name": "Sharif Ahmed",
"email": "me.sharifahmed@gmail.com",
"url": "http://sharifahmed.me"
},
"license": "MIT",
"scripts": {
"dev": "vite dev --force",
"build": "vite build && npm run package",
"package": "svelte-kit sync && svelte-package",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"deploy": "npm run build && touch build/.nojekyll && gh-pages -d build -t true"
},
"devDependencies": {
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.24.1",
"@sveltejs/package": "^2.2.2",
"gh-pages": "^6.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.33.0",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^4.2.0",
"svelte-check": "^3.5.1",
"svelte-preprocess": "^5.0.4",
"vite": "^4.4.9"
},
"peerDependencies": {
"svelte": "^3.54.0 || ^4.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist"
],
"main": "./dist/index.js",
"type": "module",
"keywords": [
"svelte",
"svelte.js",
"sveltejs",
"svelte-swipe",
"svelte-slider",
"swipe",
"slider",
"carousel",
"svelte-carousel"
]
}