-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.09 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
90
91
92
93
94
95
{
"name": "kysely-ctl",
"version": "0.21.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": {
"type": "git",
"url": "git+https://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.2.2",
"confbox": "^0.2.4",
"consola": "^3.4.2",
"jiti": "^2.7.0",
"nypm": "^0.6.6",
"ofetch": "^1.5.1",
"pathe": "^2.0.3",
"pkg-types": "^2.3.1",
"std-env": "^4.1.0"
},
"peerDependencies": {
"kysely": ">=0.18.1 <0.30.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.4.14",
"@tsconfig/node24": "24.0.4",
"@types/better-sqlite3": "7.6.13",
"@types/node": "25.6.2",
"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.9",
"publint": "0.3.20",
"tsdown": "0.22.0",
"type-fest": "5.6.0",
"typescript": "catalog:",
"vitest": "4.1.5"
},
"engines": {
"node": ">=22"
},
"keywords": [
"cli",
"ctl",
"kysely",
"migration",
"seeding",
"codegen"
],
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48",
"inlinedDependencies": {
"type-fest": "5.6.0"
}
}