-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@sentuh/react-bootstrap-modal",
"version": "1.0.4",
"description": "Lightweight and customizable React modal component styled with Bootstrap 5.",
"type": "module",
"private": false,
"license": "MIT",
"main": "dist/react-bootstrap-modal.umd.js",
"module": "dist/react-bootstrap-modal.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-bootstrap-modal.es.js",
"require": "./dist/react-bootstrap-modal.umd.js"
}
},
"sideEffects": false,
"scripts": {
"build:types": "npx tsc -p tsconfig.lib.json",
"build:js": "vite build",
"build": "npm run build:js && npm run build:types",
"lint": "eslint .",
"dev": "vite",
"preview": "vite preview"
},
"peerDependencies": {
"react": ">=16.8 <20",
"react-dom": ">=16.8 <20",
"bootstrap": "^5.0.0"
},
"peerDependenciesMeta": {
"bootstrap": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"bootstrap": "^5.3.8"
},
"keywords": [
"react",
"react-modal",
"modal",
"bootstrap",
"bootstrap-modal",
"dialog",
"react-bootstrap-modal",
"popup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tisufa/react-bootstrap-modal.git"
},
"bugs": {
"url": "https://github.com/tisufa/react-bootstrap-modal/issues"
},
"homepage": "https://github.com/tisufa/react-bootstrap-modal#readme",
"author": "Titus Sutio Fanpula <titus@sentuh.dev>"
}