-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.1 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
{
"name": "kysely-ctl",
"version": "0.9.0",
"type": "module",
"bin": {
"kysely": "./dist/bin.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"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",
"scripts": {
"biome": "biome",
"build": "tsup",
"check:dts": "attw --pack .",
"prepublishOnly": "biome check && pnpm build && pnpm check:dts",
"start": "pnpm build --watch",
"test": "vitest"
},
"dependencies": {
"c12": "^1.8.0",
"citty": "^0.1.4",
"consola": "^3.2.0",
"nypm": "^0.3.1",
"ofetch": "^1.3.4",
"pathe": "^1.1.2",
"pkg-types": "^1.1.0",
"std-env": "^3.4.0",
"tsx": "^4.9.0"
},
"peerDependencies": {
"kysely": ">=0.18.1 <0.28.0",
"kysely-postgres-js": "^2"
},
"peerDependenciesMeta": {
"kysely-postgres-js": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.0",
"@arktype/attest": "^0.9.1",
"@biomejs/biome": "1.8.3",
"@tsconfig/node20": "^20.1.4",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.2.0",
"better-sqlite3": "^11.1.2",
"kysely": "^0.27.4",
"kysely-postgres-js": "^2.0.0",
"postgres": "^3.4.4",
"tsup": "^8.2.1",
"type-fest": "^4.22.1",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
},
"engines": {
"node": ">=18"
},
"keywords": [
"cli",
"ctl",
"kysely",
"migration",
"seeding",
"codegen"
],
"packageManager": "pnpm@9.2.0+sha512.98a80fd11c2e7096747762304106432b3ddc67dcf54b5a8c01c93f68a2cd5e05e6821849522a06fb76284d41a2660d5e334f2ee3bbf29183bf2e739b1dafa771"
}