-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1023 Bytes
/
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
{
"name": "forgeform",
"version": "1.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"readme.md"
],
"scripts": {
"build": "tsc",
"test": "echo \"No tests yet\""
},
"keywords": [
"form",
"validation",
"typescript",
"react",
"regex",
"sanitization"
],
"author": "Arjun S. Nair <5minutepodcastforyou@gmail.com>",
"license": "ISC",
"description": "A lightweight, TypeScript-first form validation library with an intuitive DSL, built-in sanitization, custom error messages, a React hook, and a comprehensive regex builder.",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"ajv": "^8.17.1",
"date-fns": "^4.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2"
}
}