-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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": "@shelamkoff/carousel",
"version": "1.0.0",
"description": "Framework-agnostic JavaScript carousel and slider with responsive layouts, loop mode, touch gestures, animations, accessibility, and composable plugins",
"type": "module",
"sideEffects": ["**/*.css"],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./styles.css": "./dist/styles/carousel.css",
"./package.json": "./package.json"
},
"files": ["dist", "README.md", "README.ru.md", "LICENSE"],
"scripts": {
"build": "node scripts/build-package.mjs",
"demo": "node scripts/dev-server.mjs /demo.html",
"test": "node --test",
"prepublishOnly": "npm test",
"prepack": "npm run build"
},
"dependencies": { "@shelamkoff/event-bus": "^1.0.0" },
"keywords": [
"javascript",
"carousel",
"slider",
"image-carousel",
"responsive",
"touch",
"swipe",
"autoplay",
"thumbnails",
"parallax",
"accessibility",
"plugins",
"vanilla-js",
"framework-agnostic",
"esm"
],
"author": "Shelamkoff",
"engines": { "node": ">=20" },
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Shelamkoff/carousel.git"
},
"homepage": "https://shelamkoff.github.io/carousel/",
"bugs": { "url": "https://github.com/Shelamkoff/carousel/issues" },
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}