forked from causaly/zod-validation-error
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "zod-validation-error",
"version": "4.0.0-beta.2",
"description": "Wrap zod validation errors in user-friendly readable messages",
"keywords": [
"zod",
"error",
"validation"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/causaly/zod-validation-error.git"
},
"author": {
"name": "Dimitrios C. Michalakos",
"email": "dimitris@jmike.gr",
"url": "https://github.com/jmike"
},
"contributors": [
{
"name": "Thanos Karagiannis",
"email": "hey@maestros.io",
"url": "https://github.com/thanoskrg"
},
{
"name": "Nikos Tsompanides",
"email": "nikostsompanides@gmail.com",
"url": "https://github.com/NikosTsompanides"
},
{
"name": "Nikos Kalogridis",
"url": "https://github.com/nikoskalogridis"
}
],
"main": "./v4/index.js",
"module": "./v4/index.mjs",
"types": "./v4/index.d.ts",
"exports": {
".": {
"types": "./v4/index.d.ts",
"require": "./v4/index.js",
"import": "./v4/index.mjs"
},
"./v3": {
"types": "./v3/index.d.ts",
"require": "./v3/index.js",
"import": "./v3/index.mjs"
},
"./v4": {
"types": "./v4/index.d.ts",
"require": "./v4/index.js",
"import": "./v4/index.mjs"
}
},
"files": [
"v3",
"v4"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup --config ./tsup.config.ts",
"lint": "eslint lib --ext .ts",
"format": "prettier --config ./.prettierrc --ignore-path .gitignore -w .",
"test": "vitest run",
"changeset": "changeset",
"prerelease": "npm run build && npm run test",
"release": "changeset publish",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc.json --write"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"concurrently": "^8.2.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.0.1",
"prettier": "^2.8.8",
"tsup": "^8.0.2",
"typescript": "^5.1.6",
"vitest": "^3.1.2",
"zod": "^4.0.2"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
}
}