-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.12 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
{
"name": "kysely-typeorm",
"version": "0.1.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 <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"kysely",
"typeorm",
"postgres",
"mysql",
"postgresql",
"mariadb",
"sqlite",
"better-sqlite3",
"mssql",
"dialect"
],
"scripts": {
"build": "tsup && node ./scripts/dist-fix.js",
"clean": "rm -rf dist",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "eslint src --ext .ts",
"prepack": "pnpm lint && pnpm build",
"test": "pnpm test:nodejs",
"test:nodejs": "mocha ./tests/nodejs",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"kysely": ">= 0.24.0 < 1",
"typeorm": ">= 0.3.0 < 0.4.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^4.3.14",
"@types/lodash": "^4.17.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.10",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"better-sqlite3": "^9.6.0",
"chai": "^4.3.10",
"esbuild": "^0.24.2",
"esbuild-runner": "^2.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"kysely": "^0.27.5",
"lodash": "^4.17.21",
"mocha": "^11.0.1",
"mssql": "^10.0.4",
"mysql2": "^3.12.0",
"pg": "^8.13.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"tsup": "^8.3.5",
"typeorm": "^0.3.20",
"typeorm-naming-strategies": "^4.1.0",
"typescript": "^5.7.3"
},
"sideEffects": false
}