-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "@shelamkoff/expose",
"version": "1.0.0",
"description": "Framework-agnostic fullscreen lightbox and media gallery with animations, zoom, thumbnails, video, iframes, and composable plugins",
"type": "module",
"sideEffects": ["**/*.css", "**/animations/*.js"],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./styles.css": "./dist/styles/expose.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",
"gallery",
"lightbox",
"image-gallery",
"media-viewer",
"fullscreen",
"animations",
"video-gallery",
"plugins",
"zoom",
"thumbnails",
"vanilla-js",
"framework-agnostic",
"esm"
],
"author": "Shelamkoff",
"engines": { "node": ">=20" },
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Shelamkoff/expose.git"
},
"homepage": "https://shelamkoff.github.io/expose/",
"bugs": { "url": "https://github.com/Shelamkoff/expose/issues" },
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}