-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 866 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 866 Bytes
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
{
"name": "@barso/forms",
"version": "0.4.4",
"description": "Barso useForm hook and form validators",
"license": "MIT",
"type": "module",
"main": "src/index.js",
"files": [
"src",
"!src/**/*.test.js"
],
"scripts": {
"test": "tn test",
"test:run": "tn test run",
"lint": "eslint . && prettier --check .",
"format": "eslint --fix . && prettier --write ."
},
"dependencies": {
"@barso/helpers": "^0.4.3",
"@barso/hooks": "^0.1.10",
"validation-br": "^1.5.2"
},
"peerDependencies": {
"react": ">=18.2.0"
},
"author": "aprendendofelipe",
"repository": {
"type": "git",
"url": "https://github.com/aprendendofelipe/react-stack",
"directory": "packages/forms"
},
"keywords": [
"barso",
"form",
"hook",
"validator"
],
"publishConfig": {
"access": "public"
}
}