-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.55 KB
/
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
43
44
45
46
47
48
49
50
51
52
{
"name": "vovk-zod",
"version": "0.1.5-beta.2",
"description": "Isomorphic Zod validation for Vovk.js controllers",
"main": "index.js",
"scripts": {
"test": "npm run lint-nofix && tsc --noEmit",
"lint": "npm run lint-nofix -- --fix",
"lint-nofix": "npx eslint .",
"upgrade": "npx npm-check-updates -u -x eslint && npm i",
"build": "tsc",
"patch": "npm t && npm version patch && npm run build && npm publish && git push && git push --tags",
"minor": "npm t && npm version minor && npm run build && npm publish && git push && git push --tags",
"BREAKING-major": "npm t && npm version major && npm run build && npm publish && git push && git push --tags",
"beta": "npm t && npm version prerelease --preid=beta && npm run build && npm publish --tag beta && git push && git push --tags"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"keywords": [
"vovk",
"zod",
"ajv"
],
"author": "Andrii Gubanov",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"next": "^14.2.3",
"typescript": "^5.4.5",
"vovk": "^2.1.1-beta.13",
"zod": "*"
},
"peerDependencies": {
"next": "*",
"vovk": "^2.1.1-beta.0",
"zod": "*"
},
"dependencies": {
"ajv": "^8.13.0",
"ajv-formats": "^3.0.1",
"zod-to-json-schema": "^3.23.0"
}
}