-
-
Notifications
You must be signed in to change notification settings - Fork 298
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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
63
64
65
66
67
68
{
"name": "@react-md/menu",
"version": "5.1.6",
"description": "Create menus that auto-position themselves within the viewport and adhere to the accessibility guidelines",
"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/menu"
},
"bugs": {
"url": "https://github.com/mlaursen/react-md/issues"
},
"homepage": "https://react-md.dev/packages/menu/demos",
"keywords": [
"accessibility",
"a11y",
"react-md",
"material design",
"react",
"menu",
"dropdown",
"component",
"components"
],
"license": "MIT",
"dependencies": {
"@react-md/app-bar": "^5.1.6",
"@react-md/button": "^5.1.6",
"@react-md/divider": "^5.1.6",
"@react-md/elevation": "^5.1.6",
"@react-md/icon": "^5.1.6",
"@react-md/list": "^5.1.6",
"@react-md/portal": "^5.1.0",
"@react-md/sheet": "^5.1.6",
"@react-md/states": "^5.1.6",
"@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"
}
}