-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.15 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
{
"name": "kysely-sequelize",
"version": "0.2.0",
"description": "Kysely dialect for Sequelize",
"repository": "https://github.com/igalklebanov/kysely-sequelize.git",
"homepage": "https://github.com/igalklebanov/kysely-sequelize",
"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",
"sequelize",
"postgres",
"mysql",
"postgresql",
"mariadb",
"sqlite",
"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 run lint && pnpm run build",
"test": "pnpm build && pnpm test:nodejs && pnpm test:typings",
"test:nodejs": "mocha ./tests/nodejs",
"test:typings": "tsd tests/typings",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"kysely": ">= 0.24.0 < 1",
"sequelize": ">= 6.0.0 < 7"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.9",
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.14",
"@types/pg": "^8.15.4",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"chai": "^4.4.1",
"esbuild": "^0.28.0",
"esbuild-runner": "^2.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.7",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"kysely": "^0.28.17",
"mocha": "^11.7.5",
"mysql2": "^3.22.3",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-pkg": "^0.22.1",
"reflect-metadata": "^0.2.2",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^5.1.7",
"tedious": "^19.2.1",
"tsd": "^0.33.0",
"tsup": "^8.5.1",
"type-fest": "^4.41.0",
"typescript": "^5.8.3"
},
"sideEffects": false
}