-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "zod-csv",
"version": "0.0.8",
"type": "module",
"main": "./dist/zcsv.umd.cjs",
"module": "./dist/zcsv.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/zcsv.js",
"require": "./dist/zcsv.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"zod",
"csv",
"validation",
"schema",
"typescript"
],
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bartoszgolebiowski/zod-csv"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"test": "vitest",
"watch": "vitest --watch"
},
"peerDependencies": {
"zod": "^3.11.x"
},
"devDependencies": {
"@types/node": "^20.3.1",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.32.2",
"zod": "^3.21.4"
},
"dependencies": {
"csv-string": "^4.1.1"
}
}