-
-
Notifications
You must be signed in to change notification settings - Fork 298
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@react-md/alert",
"version": "5.1.6",
"description": "Create accessible alerts through snackbars and banners.",
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./types/index.d.ts",
"sideEffects": [
"dist/**/*"
],
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/mlaursen/react-md.git",
"directory": "packages/alert"
},
"bugs": {
"url": "https://github.com/mlaursen/react-md/issues"
},
"homepage": "https://react-md.dev/packages/alert/demos",
"keywords": [
"react-md",
"material design",
"react",
"alert",
"snackbar",
"toast",
"notification",
"banner",
"component"
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^5.1.6",
"@react-md/elevation": "^5.1.6",
"@react-md/portal": "^5.1.0",
"@react-md/theme": "^5.1.6",
"@react-md/transition": "^5.1.6",
"@react-md/typography": "^5.1.6",
"@react-md/utils": "^5.1.6",
"classnames": "^2.3.1"
},
"devDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.1"
},
"peerDependencies": {
"react": ">= 16.14",
"react-dom": ">= 16.14"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
},
"publishConfig": {
"access": "public"
}
}