-
-
Notifications
You must be signed in to change notification settings - Fork 298
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "@react-md/portal",
"version": "5.1.0",
"description": "This package is for including icons within react-md. There is included support for both font icons and SVG icons. There is also a helper component for applying spacing between icons and text.",
"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/portal"
},
"bugs": {
"url": "https://github.com/mlaursen/react-md/issues"
},
"homepage": "https://react-md.dev/packages/portal/demos",
"keywords": [
"react-md",
"material design",
"react",
"icon",
"font icon",
"svg icon",
"component",
"components"
],
"license": "MIT",
"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"
}
}