-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.02 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.02 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
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
{
"name": "kysely-ctl",
"version": "0.20.0",
"type": "module",
"bin": {
"kysely": "./dist/bin.mjs"
},
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"files": [
"dist",
"assets"
],
"description": "Command-line tool for Kysely",
"author": "Igal Klebanov <igalklebanov@gmail.com> (https://github.com/igalklebanov)",
"license": "MIT",
"repository": "git://github.com/kysely-org/kysely-ctl.git",
"homepage": "https://kysely.dev",
"scripts": {
"biome": "biome",
"build": "tsdown",
"prepublishOnly": "biome check && pnpm build",
"start": "pnpm build --watch",
"test": "vitest"
},
"dependencies": {
"c12": "^3.3.3",
"citty": "^0.1.6",
"confbox": "^0.2.2",
"consola": "^3.4.2",
"jiti": "^2.6.1",
"nypm": "^0.6.2",
"ofetch": "^1.5.1",
"pathe": "^2.0.3",
"pkg-types": "^2.3.0",
"std-env": "^3.10.0",
"tsconfck": "^3.1.6"
},
"peerDependencies": {
"kysely": ">=0.18.1 <0.29.0",
"kysely-neon": "^2",
"kysely-postgres-js": "^2 || ^3",
"kysely-prisma-postgres": "^0.1"
},
"peerDependenciesMeta": {
"kysely-neon": {
"optional": true
},
"kysely-postgres-js": {
"optional": true
},
"kysely-prisma-postgres": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@arktype/attest": "^0.56.0",
"@biomejs/biome": "2.3.11",
"@tsconfig/node24": "^24.0.3",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.1",
"better-sqlite3": "catalog:",
"kysely": "catalog:",
"kysely-neon": "^2.0.2",
"kysely-postgres-js": "^3.0.0",
"kysely-prisma-postgres": "^0.1.0",
"postgres": "^3.4.8",
"tsdown": "^0.19.0",
"type-fest": "^5.3.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20"
},
"keywords": [
"cli",
"ctl",
"kysely",
"migration",
"seeding",
"codegen"
],
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}