-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 860 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 860 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
{
"name": "z0k",
"version": "0.1.9",
"description": "zok library for zod to snarkyjs struct transformation",
"type": "module",
"bin": {
"z0k": "build/src/index.js"
},
"main": "build/src/index.js",
"types": "build/src/typings/index.d.ts",
"scripts": {
"test": "mocha",
"build": "tsc -p .",
"start": "rm -rf src/structs.ts && npm run build && ts-node --esm --require ts-node/register build/src/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"mocha": "^10.2.0",
"snarkyjs": "0.11.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.21.4"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.1.1",
"chai": "^4.3.7",
"commander": "^11.0.0",
"ts-creator": "^1.2.5"
}
}