-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2 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
{
"name": "kysely-postgres-js",
"version": "2.0.0",
"description": "Kysely dialect for PostgreSQL using the Postgres.js client",
"repository": "https://github.com/igalklebanov/kysely-postgres-js.git",
"homepage": "https://github.com/igalklebanov/kysely-postgres-js",
"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",
"postgres",
"postgres.js",
"postgresql",
"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:nodejs": "mocha ./tests/nodejs",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"kysely": ">= 0.24.0 < 1",
"postgres": ">= 3.4.0 < 4"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/chai": "^4.3.12",
"@types/chai-subset": "^1.3.5",
"@types/mocha": "^10.0.10",
"@types/mocha-each": "^2.0.4",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.10.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"chai": "^4.4.1",
"chai-subset": "^1.6.0",
"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",
"mocha": "^11.0.1",
"mocha-each": "^2.0.1",
"postgres": "^3.4.5",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"sideEffects": false
}