-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "react-confirmly",
"version": "1.2.2",
"main": "lib/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "babel lib -d dist",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"repository": {
"type": "git",
"url": "https://github.com/saurabhcoded/react-confirmly.git"
},
"keywords": [
"react",
"component",
"npm",
"dialog",
"confirmbox"
],
"author": "saurabhcoded <saurabhcoded@gmail.com>",
"license": "MIT",
"description": "A lightweight and flexible confirmation dialog component for React applications.",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.23.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"react-hot-toast": "^2.5.2",
"zustand": "^5.0.3"
}
}