-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 940 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 940 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
37
{
"name": "edgedb-zod",
"author": "Sikarii",
"license": "MIT",
"version": "0.0.0",
"description": "Creates Zod schemas for your EdgeDB types",
"bin": "dist/cli.js",
"main": "dist/index.js",
"files": ["dist"],
"keywords": ["edgedb", "zod", "schema", "generator"],
"repository": {
"type": "git",
"url": "https://github.com/Sikarii/edgedb-zod.git"
},
"scripts": {
"gen": "tsx src/cli.ts",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"test": "vitest --run --coverage"
},
"dependencies": {
"edgedb": "^1.0.0",
"yargs": "^17.6.0",
"zod": "^3.19.0"
},
"devDependencies": {
"@types/node": "^18.11.7",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vitest/coverage-c8": "^0.24.3",
"eslint": "^8.14.0",
"tsx": "^3.10.4",
"typescript": "^4.8.4",
"vitest": "^0.24.3"
}
}