-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.45 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
{
"name": "@hookform/inputs",
"version": "0.0.0-development",
"description": "",
"keywords": [
"react",
"mui",
"material-ui",
"react-hook-form",
"hookform",
"typescript",
"typesafe"
],
"author": "Jose V Sebastian <josevseb99@gmail.com>",
"license": "MIT",
"type": "module",
"exports": {
"mui": {
"import": "./dist/mui/index.js",
"types": "./dist/mui/index.d.ts"
},
"mui/*": {
"import": "./dist/mui/*.js",
"types": "./dist/mui/*.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@types/react": "^18.2.23",
"glob": "^10.3.10",
"rollup": "^3.29.4",
"rollup-plugin-delete": "^2.0.0",
"semantic-release": "^22.0.5",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@mui/material": ">= 5.x <6",
"react": ">=17 <19",
"react-hook-form": ">=7.33"
},
"peerDependenciesMeta": {
"@mui/material": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/JoseVSeb/react-hook-form-inputs.git"
}
}