forked from owncoral/pgzod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "pgzod",
"version": "3.3.0",
"description": "Convert a database schema into a Zod schema",
"author": "Guzmán Monné <[email protected]>",
"repository": "https://github.com/guzmonne/pgzod",
"license": "MIT",
"keywords": [
"typescript",
"postgresql",
"zod",
"schema"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"pgzod": "./dist/index.js"
},
"files": [
"dist",
"dist/lib"
],
"scripts": {
"cli": "ts-node src/index.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/index.ts",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/dedent": "^0.7.0",
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@types/yargs": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"esbuild": "^0.11.11",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.3"
},
"dependencies": {
"change-case": "^4.1.2",
"cli-progress": "^3.9.1",
"cli-spinners": "^2.6.1",
"dedent": "^0.7.0",
"ora": "^6.1.0",
"slonik": "^28.1.0",
"yargs": "^17.2.1",
"zod": "^3.11.4"
}
}