-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.05 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": "swipe-scroller",
"version": "1.0.7",
"description": "Horizontal card slider for the modern web",
"scripts": {
"dev": "vite dev",
"build": "vite build && node --run package",
"preview": "vite preview",
"postversion": "git push && git push --tags",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "node --run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint ."
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": [
"**/*.css"
],
"type": "module",
"exports": {
"./style": "./dist/styles/container-colored.css",
"./Scroller.svelte": {
"types": "./dist/Scroller.svelte.d.ts",
"svelte": "./dist/Scroller.svelte"
}
},
"typesVersions": {
">4.0": {
"Scroller.svelte": [
"./dist/Scroller.svelte.d.ts"
]
}
},
"peerDependencies": {
"svelte": "^3.55.1 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.15.0",
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"publint": "^0.2.12",
"svelte": "^5.15.0",
"svelte-check": "^4.1.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyunbinseo/swipe-scroller.git"
},
"author": "Hyunbin Seo",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyunbinseo/swipe-scroller/issues"
},
"homepage": "https://github.com/hyunbinseo/swipe-scroller/#readme",
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf"
}