-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.57 KB
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
{
"name": "react-smart-form-errors",
"version": "2.0.3",
"description": "A lightweight, production-ready form validation library for React with 15+ built-in validators and zero dependencies",
"main": "dist/react-smart-form-errors.cjs",
"module": "dist/react-smart-form-errors.esm.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./dist/react-smart-form-errors.esm.js",
"require": "./dist/react-smart-form-errors.cjs",
"types": "./index.d.ts"
}
},
"peerDependencies": {
"react": ">=16"
},
"scripts": {
"build": "microbundle -i src/index.js -o dist --no-compress",
"prepare": "npm run build",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"keywords": [
"react",
"form",
"validation",
"validators",
"error-handling",
"form-validation",
"lightweight"
],
"author": "Shaeel Khan <beingshaeel@gmail.com>",
"license": "MIT",
"type": "module",
"files": [
"dist",
"index.d.ts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@vitest/coverage-v8": "^1.0.4",
"jsdom": "^23.0.1",
"microbundle": "^0.15.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaeel45/react-smart-form-errors.git"
},
"bugs": {
"url": "https://github.com/shaeel45/react-smart-form-errors/issues"
},
"homepage": "https://github.com/shaeel45/react-smart-form-errors#readme"
}