-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "rex",
"version": "1.0.0",
"description": "A powerful and flexible schema validation library for TypeScript.",
"main": "index.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint . --fix",
"test": "jest",
"prepare": "husky",
"format": "prettier --write ."
},
"keywords": [
"rex",
"schema",
"validation",
"validation-schema",
"schema-validation",
"validation-schema-typescript",
"schema-validation-typescript"
],
"author": "Behzad Ali Mohammad Zad",
"license": "ISC",
"packageManager": "pnpm@10.5.2",
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"ts-jest": "^29.2.6",
"tsup": "^8.4.0",
"typescript": "^5.7.3"
}
}