-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
90 lines (90 loc) · 2.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "solid-slider",
"version": "1.3.18",
"description": "A slider utility for SolidJS.",
"author": "David Di Biase",
"repository": {
"type": "git",
"url": "git+https://[email protected]/davedbase/solid-slider.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/davedbase/solid-slider/issues"
},
"homepage": "https://github.com/davedbase/solid-slider#readme",
"scripts": {
"format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\"",
"build": "rollup -c rollup.config.js && cp src/slider.css dist/slider.css && cp src/plugins/adaptiveHeight.css dist/adaptiveHeight/style.css && cp src/plugins/adaptiveWidth.css dist/adaptiveWidth/style.css"
},
"type": "module",
"main": "dist/index/index.common.js",
"module": "dist/index/index.module.js",
"types": "./dist/index/index.d.ts",
"exports": {
".": {
"solid": "./dist/index/index.jsx",
"import": "./dist/index/index.module.js",
"browser": "./dist/index/index.module.js",
"require": "./dist/index/index.common.js",
"node": "./dist/index/index.common.js"
},
"./plugins/autoplay": {
"types": "./dist/autoplay/index.d.ts",
"solid": "./dist/autoplay/autoplay.jsx",
"import": "./dist/autoplay/index.module.js",
"browser": "./dist/autoplay/index.module.js",
"require": "./dist/autoplay/index.common.js",
"node": "./dist/autoplay/index.common.js"
},
"./plugins/adaptiveHeight": {
"types": "./dist/adaptiveHeight/index.d.ts",
"solid": "./dist/adaptiveHeight/adaptiveHeight.jsx",
"import": "./dist/adaptiveHeight/index.module.js",
"browser": "./dist/adaptiveHeight/index.module.js",
"require": "./dist/adaptiveHeight/index.common.js",
"node": "./dist/adaptiveHeight/index.common.js"
},
"./plugins/adaptiveWidth": {
"types": "./dist/adaptiveWidth/index.d.ts",
"solid": "./dist/adaptiveWidth/adaptiveWidth.jsx",
"import": "./dist/adaptiveWidth/index.module.js",
"browser": "./dist/adaptiveWidth/index.module.js",
"require": "./dist/adaptiveWidth/index.common.js",
"node": "./dist/adaptiveWidth/index.common.js"
},
"./slider.css": "./dist/slider.css",
"./plugins/adaptiveHeight.css": "./dist/adaptiveHeight/slider.css",
"./plugins/adaptiveWidth.css": "./dist/adaptiveWidth/slider.css"
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"slider",
"carousel",
"solid",
"keen",
"slider",
"carousel",
"caroussel",
"slideshow",
"gallery",
"plugin"
],
"peerDependencies": {
"solid-js": "^1.8.5"
},
"dependencies": {
"@solid-primitives/timer": "^1.3.10",
"@solid-primitives/utils": "^6.2.3",
"keen-slider": "^6.8.6"
},
"devDependencies": {
"esbuild-plugin-solid": "^0.6.0",
"prettier": "^3.3.3",
"rollup": "^4.21.3",
"rollup-preset-solid": "^2.0.1",
"typescript": "^5.5.4"
}
}