forked from RobinBlomberg/kysely-codegen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 2.96 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@maktouch/kysely-zod-codegen",
"version": "0.5.0",
"author": "Makara Sok",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"kysely-zod-codegen": "./dist/cli/bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maktouch/kysely-zod-codegen.git"
},
"bugs": {
"url": "https://github.com/maktouch/kysely-zod-codegensues"
},
"homepage": "https://github.com/maktouch/kysely-zod-codegen",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --quiet --respawn ./src/cli/bin.ts",
"docker:up": "docker-compose up -d",
"prepublishOnly": "pnpm build",
"start": "node ./dist/bin/index.js",
"test": "ts-node-dev ./src/tests/index.test.ts",
"test:watch": "ts-node-dev --quiet --respawn ./src/tests/index.test.ts"
},
"dependencies": {
"chalk": "4.1.2",
"dotenv": "^16.3.1",
"git-diff": "^2.0.6",
"micromatch": "^4.0.5",
"minimist": "^1.2.8"
},
"devDependencies": {
"@clickhouse/client": "^1.4.1",
"@founderpath/kysely-clickhouse": "^1.4.0",
"@google-cloud/bigquery": "^7.3.0",
"@maktouch/kysely-bigquery": "^1.0.3",
"@robinblomberg/eslint-config-prettier": "^0.1.4",
"@robinblomberg/eslint-config-robinblomberg": "0.20.0",
"@robinblomberg/prettier-config": "^0.1.2",
"@types/better-sqlite3": "^7.6.8",
"@types/git-diff": "^2.0.7",
"@types/micromatch": "^4.0.6",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.0",
"@types/pg": "^8.10.9",
"@typescript-eslint/parser": "^6.13.1",
"better-sqlite3": "^9.2.0",
"eslint": "^8.55.0",
"kysely": "^0.27.3",
"mysql2": "^3.7.0",
"npm-run-all": "^4.1.5",
"pg": "^8.11.3",
"pnpm": "^8.14.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@clickhouse/client": "^1.4.1",
"@founderpath/kysely-clickhouse": "^1.4.0",
"@google-cloud/bigquery": "^7.3.0",
"@libsql/kysely-libsql": "^0.3.0",
"@maktouch/kysely-bigquery": "^1.0.3",
"better-sqlite3": ">=7.6.2",
"kysely": ">=0.27.3",
"kysely-bun-worker": "^0.5.3",
"mysql2": "^2.3.3 || ^3.0.0",
"pg": "^8.8.0",
"zod": ">=3.22.4"
},
"peerDependenciesMeta": {
"@maktouch/kysely-bigquery": {
"optional": true
},
"@founderpath/kysely-clickhouse": {
"optional": true
},
"@clickhouse/client": {
"optional": true
},
"@google-cloud/bigquery": {
"optional": true
},
"@libsql/kysely-libsql": {
"optional": true
},
"better-sqlite3": {
"optional": true
},
"kysely": {
"optional": false
},
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"zod": {
"optional": false
}
},
"eslintConfig": {
"extends": [
"@robinblomberg/robinblomberg",
"@robinblomberg/prettier"
],
"ignorePatterns": "**/src/core/outputs/*.ts"
},
"prettier": "@robinblomberg/prettier-config"
}