-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 921 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
{
"name": "resume-schema-zod",
"type": "module",
"description": "Zod Schema for JSON Resume",
"version": "0.2.1",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": {
"name": "Niko Heikkilä",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": ""
},
"packageManager": "[email protected]",
"scripts": {
"generate": "npx json-schema-to-zod -s schema.json -t lib/schema.ts",
"clean": "rimraf dist",
"build": "yarn clean && yarn generate && tsc",
"format": "rome format --write .",
"test": "vitest run --config ./vitest.config.ts",
"test:watch": "vitest watch ."
},
"dependencies": {
"zod": "^3.20.6"
},
"devDependencies": {
"rimraf": "^4.1.2",
"rome": "^11.0.0",
"tsc": "^2.0.4",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vitest": "^0.28.4"
}
}