-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.26 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
{
"name": "kysely-knex",
"version": "0.2.0",
"description": "Kysely dialect for Knex.js",
"repository": "https://github.com/kysely-org/kysely-knex.git",
"homepage": "https://github.com/kysely-org/kysely-knex",
"author": "Igal Klebanov <igalklebanov@gmail.com>",
"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",
"knex",
"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 build && pnpm test:nodejs && pnpm test:migrations",
"test:migrations": "knex --knexfile ./knexfile.ts migrate:latest && knex --knexfile ./knexfile.ts migrate:rollback",
"test:nodejs": "mocha ./tests/nodejs",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"knex": ">= 3.0.0 < 4",
"kysely": ">= 0.24.0 < 1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.9",
"@types/chai": "^4.3.14",
"@types/lodash": "^4.17.21",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"better-sqlite3": "^12.8.0",
"chai": "^4.3.10",
"esbuild": "^0.27.4",
"esbuild-runner": "^2.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"knex": "^3.1.0",
"kysely": "^0.27.6",
"lodash": "^4.17.21",
"mocha": "^11.7.5",
"mysql": "^2.18.1",
"mysql2": "^3.15.3",
"pg": "^8.16.3",
"pg-query-stream": "^4.14.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-pkg": "^0.22.1",
"sqlite3": "^5.1.7",
"tedious": "^19.1.3",
"ts-node": "^10.9.2",
"tsd": "^0.33.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"sideEffects": false
}