-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "@daveyplate/nextui-confirm-modal",
"homepage": "https://github.com/daveyplate/nextui-confirm-modal",
"version": "1.0.8",
"description": "A simple confirm modal for NextUI",
"module": "dist/index",
"types": "dist/index",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "rm -rf dist && npm run build"
},
"keywords": [
"NextUI",
"React",
"Modal",
"Confirm"
],
"author": "daveycodez",
"license": "ISC",
"devDependencies": {
"@types/react": "^19.0.1",
"framer-motion": "file:../daveyplate/node_modules/framer-motion",
"react": "file:../daveyplate/node_modules/react",
"react-dom": "file:../daveyplate/node_modules/react-dom",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@emotion/is-prop-valid": ">=1.3.1",
"@nextui-org/react": ">=2.4.8",
"framer-motion": ">=11.9.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@types/react-dom": "^19.0.1"
}
}