-
-
Notifications
You must be signed in to change notification settings - Fork 298
/
package.json
71 lines (71 loc) · 1.55 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
69
70
71
{
"name": "@react-md/form",
"version": "2.5.2",
"description": "This package is for creating all the different form input types.",
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./types/index.d.ts",
"sideEffects": [
"dist/**/*"
],
"files": [
"es/*",
"lib/*",
"types/*",
"src/*",
"dist/*"
],
"author": "Mikkel Laursen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mlaursen/react-md.git",
"directory": "packages/form"
},
"bugs": {
"url": "https://github.com/mlaursen/react-md/issues"
},
"homepage": "https://react-md.dev/packages/form/demos",
"keywords": [
"react-md",
"material design",
"react",
"form",
"input",
"text field",
"textarea",
"checkbox",
"radio",
"select",
"accessible",
"component",
"components"
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^2.5.0",
"@react-md/icon": "^2.5.0",
"@react-md/list": "^2.5.1",
"@react-md/portal": "^2.5.0",
"@react-md/progress": "^2.5.0",
"@react-md/states": "^2.5.0",
"@react-md/theme": "^2.5.0",
"@react-md/tooltip": "^2.5.0",
"@react-md/transition": "^2.5.0",
"@react-md/typography": "^2.5.0",
"@react-md/utils": "^2.5.0",
"classnames": "^2.2.6"
},
"devDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"peerDependencies": {
"react": ">= 16.8"
},
"optionalDependencies": {
"prop-types": ">= 15.6"
},
"publishConfig": {
"access": "public"
}
}