-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "zod-messages",
"version": "1.0.4",
"description": "Zod error result messages to validation readable object",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"zod",
"validation",
"messages",
"error"
],
"repository": {
"type": "git",
"url": "https://github.com/RbrtDdds/zod-messages.git"
},
"author": "Robert Dudas",
"license": "ISC",
"homepage": "https://github.com/RbrtDdds/zod-messages#readme",
"bugs": {
"url": "https://github.com/RbrtDdds/zod-messages/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"dependencies": {
"ts-node": "^10.9.2",
"zod": "^3.23.8"
}
}