-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 957 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
{
"name": "valideasy",
"version": "1.0.8",
"description": "A super lightweight and flexible field validation utility for JavaScript/TypeScript. Perfect for validating request bodies, form submissions, or any object with required fields.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"keywords": [
"validation",
"validate",
"field-validation",
"form-validation",
"request-body",
"lightweight",
"typescript",
"javascript"
],
"author": "Shavkatjon Juraev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Shavkatjon06/valideasy.git"
},
"homepage": "https://github.com/Shavkatjon06/valideasy#readme",
"bugs": {
"url": "https://github.com/Shavkatjon06/valideasy/issues"
},
"devDependencies": {
"typescript": "^5.6.3"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}