-
Notifications
You must be signed in to change notification settings - Fork 559
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.05 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.05 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
49
{
"name": "@reach/dialog",
"version": "0.18.0",
"description": "Accessible React Modal Dialog.",
"author": "React Training <hello@reacttraining.com>",
"license": "MIT",
"sideEffects": [
"*.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/reach/reach-ui.git",
"directory": "packages/dialog"
},
"scripts": {
"build": "tsup"
},
"dependencies": {
"@reach/polymorphic": "workspace:*",
"@reach/portal": "workspace:*",
"@reach/utils": "workspace:*",
"react-focus-lock": "^2.5.2",
"react-remove-scroll": "^2.4.3"
},
"devDependencies": {
"@reach-internal/dev": "workspace:*",
"@reach-internal/test": "workspace:*",
"@reach-internal/tsconfig": "workspace:*",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsup": "^6.1.3"
},
"peerDependencies": {
"react": "^16.8.0 || 17.x",
"react-dom": "^16.8.0 || 17.x"
},
"main": "./src/reach-dialog.tsx",
"types": "./src/reach-dialog.tsx",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist",
"styles.css"
],
"publishConfig": {
"access": "public"
}
}