-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "use-file-dialog",
"version": "1.0.0",
"description": "Open file dialog without struggling with file input using useFileDialog react hook",
"main": "dist/index.js",
"module": "dist/use-file-dialog3.esm.js",
"typings": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/use-file-dialog3.esm.js",
"require": "./dist/index.js"
}
},
"keywords": ["react", "react-hook", "javascript", "useFileDialog", "hooks"],
"scripts": {
"dev": "tsdx watch",
"build": "tsdx build"
},
"files": ["dist"],
"author": "Omid Nikrah",
"license": "ISC",
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"parcel-bundler": "^1.12.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tsdx": "^0.14.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": ">=16.3",
"react-dom": ">=16.3"
},
"repository": {
"type": "git",
"url": "git://github.com/omidnikrah/use-file-dialog.git"
}
}