-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 934 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
{
"name": "zod-mind",
"license": "MIT",
"version": "1.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/pyronaur/zod-mind.git"
},
"scripts": {
"build": "tsup index.ts --format esm --dts",
"dev": "tsup index.ts --format esm --dts --watch --ignore-watch dist",
"lint": "tsc",
"publish": "changeset && changeset version",
"gh-action-release": "npm run build && changeset version && changeset publish",
"examples/self-healing-process": "LOGTHING_UNMUTE=* node examples/self-healing-process.js"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.8.7",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"dirty-json": "^0.9.2",
"logthing": "^1.1.4",
"p-retry": "^6.1.0",
"zod": "^3.22.2",
"zod-to-json-schema": "^3.21.4"
}
}