-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
{
"name": "@tailor-platform/function-kysely-tailordb-codegen",
"version": "0.1.0",
"description": "Generate Kysely code for TailorDB",
"repository": {
"type": "git",
"url": "https://github.com/tailor-platform/function",
"directory": "packages/kysely-tailordb-codegen"
},
"type": "module",
"bin": {
"kysely-tailordb-codegen": "./dist/cli.js"
},
"files": ["dist"],
"scripts": {
"build": "node ./build.js",
"check": "biome check .",
"check-write": "biome check --write .",
"type-check": "tsc"
},
"dependencies": {
"commander": "^14.0.0",
"zx": "^8.5.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tailor-platform/function-kysely-tailordb": "^0.1.2",
"@tailor-platform/function-types": "^0.2.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.24",
"esbuild": "^0.25.5",
"kysely": "^0.27.5",
"kysely-codegen": "^0.18.5",
"typescript": "^5.8.3",
"unenv": "^1.10.0"
},
"engines": {
"node": "22.x"
},
"packageManager": "pnpm@10.11.0",
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild"]
}
}