-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 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
{
"name": "zod-csv",
"version": "0.2.1",
"type": "module",
"exports": {
".": {
"import": "./dist/zcsv.mjs",
"require": "./dist/zcsv.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/zcsv.cjs",
"module": "./dist/zcsv.mjs",
"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": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest",
"watch": "vitest --watch",
"test:imports": "npm run test:esm && npm run test:cjs",
"test:esm": "node --test test-imports/node-esm-import.test.js",
"test:cjs": "node --test test-imports/node-cjs-require.test.cjs"
},
"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",
"vite-plugin-node-polyfills": "^0.23.0",
"vitest": "^0.32.2",
"zod": "^3.21.4"
},
"dependencies": {
"csv-string": "^4.1.1"
}
}