-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.69 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
{
"name": "@rat.md/bs-lightbox",
"version": "1.1.1",
"description": "A simple Bootstrap 4 and Bootstrap 5 Lightbox system using the native Carousel and Modal components.",
"keywords": [
"bootstrap",
"bootstrap-plugin",
"lightbox",
"front-end",
"web",
"bs",
"rat"
],
"author": "Sam <[email protected]> (https://rat.md)",
"license": "MIT",
"copyright": "rat.md <[email protected]>",
"homepage": "https://github.com/RatMD/bs-lightbox",
"bugs": {
"url": "https://github.com/RatMD/bs-lightbox",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/RatMD/bs-lightbox.git"
},
"funding": [
{
"type": "buymeacoffee",
"url": "https://buymeacoff.ee/ratmd"
}
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"serve": "node serve.js",
"start": "concurrently --kill-others \"npm run watch\" \"npm run serve\""
},
"main": "dist/js/rat.lightbox.js",
"module": "dist/esm/rat.lightbox.js",
"browser": "dist/js/rat.lightbox.js",
"jsdeliver": "dist/js/rat.lightbox.js",
"typings": "src/types/index.ts",
"files": [
"dist/*/**",
"src/types/*",
"CHANGELOG.md"
],
"reveal": true,
"dependencies": {},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"bootstrap": "^5.3.0",
"concurrently": "^8.2.0",
"rollup": "^3.25.1",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
}
}