-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 949 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 949 Bytes
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
{
"name": "@akiroz/typesafe-csv",
"version": "0.1.0",
"description": "Typesafe CSV (de)serialization for arbitarary objects",
"license": "MIT",
"homepage": "https://github.com/akiroz/typesafe-csv",
"files": [
"/dist"
],
"main": "/dist/index.js",
"scripts": {
"prepublish": "tsc",
"lint": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"test": "node -r ts-node/register --test test/*"
},
"dependencies": {
"dlv": "^1.1.3",
"dset": "^3.1.4",
"papaparse": "^5.5.3",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/dlv": "^1.1.5",
"@types/papaparse": "^5.5.0",
"lefthook": "^2.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 24"
},
"volta": {
"node": "24.2.0"
}
}