-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 996 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
{
"name": "vali.ts",
"version": "2.2.0",
"description": "A runtime data validator in TypeScript with advanced type inference, built-in validation functions, and seamless integration for server and client environments.",
"homepage": "https://github.com/x-keyscore/VALI.TS#readme",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc && node dist",
"build": "tsc",
"build:pack": "tsc && npm pack && mv -f ./*.tgz pack/",
"test": "tsc && node --test"
},
"keywords": [
"vali",
"vali.ts",
"validator",
"validation",
"data-validation",
"runtime-validation",
"type-safety",
"type-checking",
"type-validation",
"typescript",
"typescript-validator",
"type-guard",
"schema",
"schema-validation",
"validation-library"
],
"author": "x-keyscore",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.3"
}
}