-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.16 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.16 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
{
"name": "kysely-typeorm",
"version": "0.3.0",
"description": "Kysely dialect for TypeORM",
"repository": "https://github.com/kysely-org/kysely-typeorm.git",
"homepage": "https://github.com/kysely-org/kysely-typeorm",
"author": "Igal Klebanov <igalklebanov@gmail.com>",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"keywords": [
"kysely",
"typeorm",
"postgres",
"mysql",
"postgresql",
"mariadb",
"sqlite",
"better-sqlite3",
"mssql",
"dialect"
],
"scripts": {
"build": "tsup",
"check:exports": "attw . --pack",
"check:types": "tsc --noEmit",
"lint": "biome ci",
"prepublishOnly": "pnpm lint && pnpm build && pnpm check:exports",
"release:preview": "pkg-pr-new publish",
"start": "tsup --watch",
"test": "vitest"
},
"peerDependencies": {
"kysely": ">= 0.24.0 < 1",
"typeorm": ">= 0.3.0 < 0.4.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@arktype/attest": "^0.56.0",
"@biomejs/biome": "^1.9.4",
"@tsconfig/node22": "^22.0.5",
"@types/lodash": "^4.17.24",
"@types/node": "^25.3.1",
"@types/pg": "^8.16.0",
"better-sqlite3": "^12.6.2",
"kysely": "^0.28.11",
"lodash": "^4.17.23",
"mssql": "^12.2.0",
"mysql2": "^3.18.1",
"pg": "^8.19.0",
"pg-query-stream": "^4.13.0",
"pkg-pr-new": "^0.0.63",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"tsup": "^8.5.1",
"typeorm": "^0.3.28",
"typeorm-naming-strategies": "^4.1.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"sideEffects": false,
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"sqlite3"
]
}
}