-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "react-resizable-draggable-modal",
"version": "0.0.3",
"description": "Resizable draggable modal based on React hooks.",
"module": "build",
"types": "./build/types",
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
},
"keywords": [
"react",
"resizable",
"draggable",
"modal"
],
"repository": {
"type": "git",
"url": "https://github.com/hellobq/react-resizable-draggable-modal.git"
},
"author": "hellobq",
"license": "MIT",
"dependencies": {
"react-transition-group": "4.4.0"
},
"devDependencies": {
"@rsbuild/plugin-react": "^1.1.0",
"@rsbuild/plugin-sass": "^1.1.2",
"@rslib/core": "^0.2.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/react-transition-group": "^4.4.12",
"react": "^17.0.2",
"typescript": "^5.6.3"
},
"files": [
"build"
],
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}