-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 885 Bytes
/
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-html-dialog",
"sideEffects": false,
"version": "0.2.1",
"author": "Sam Cook",
"license": "MIT",
"description": "Simple, tiny React hook for working with native HTML dialogs. Optionally resets user agent dialog styles and closes on backdrop click when used in modal mode.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sjc5/use-html-dialog"
},
"keywords": [
"dialog",
"modal",
"react",
"hook",
"html",
"native"
],
"devDependencies": {
"@remix-run/eslint-config": "^1.18.1",
"@types/react": "^18.2.14",
"eslint": "^8.44.0",
"react": "^18.2.0",
"tsup": "^6.7.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts"
}
}