-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.67 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
{
"name": "kysely-replication",
"version": "0.4.0",
"description": "Replication-aware Kysely query execution",
"repository": {
"type": "git",
"url": "git+https://github.com/kysely-org/kysely-replication.git"
},
"homepage": "https://kysely.dev",
"type": "module",
"types": "./dist/index.d.mts",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsdown",
"check:types": "tsc",
"prepublishOnly": "biome check && pnpm build",
"script:align-versions": "node --experimental-strip-types scripts/align-versions.ts",
"test": "vitest",
"version": "pnpm script:align-versions && git add ."
},
"keywords": [
"kysely",
"replication",
"dialect",
"sql",
"database",
"query",
"builder"
],
"author": "Igal Klebanov <igalklebanov@gmail.com>",
"license": "MIT",
"peerDependencies": {
"kysely": "^0.29"
},
"devDependencies": {
"@arethetypeswrong/core": "0.18.4",
"@biomejs/biome": "2.5.2",
"@tsconfig/node24": "24.0.4",
"@types/node": "26.1.0",
"esbuild": "0.28.1",
"jsr": "0.14.3",
"kysely": "0.29.3",
"pathe": "2.0.3",
"publint": "0.3.21",
"std-env": "4.1.0",
"tsdown": "0.22.3",
"typescript": "6.0.3",
"vitest": "4.1.10"
},
"sideEffects": [
"./src/force/module-augmentation.ts",
"./dist/force/index.mjs"
],
"exports": {
".": "./dist/index.mjs",
"./force": "./dist/force/index.mjs",
"./strategy/random": "./dist/strategy/random.mjs",
"./strategy/round-robin": "./dist/strategy/round-robin.mjs",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"packageManager": "pnpm@11.10.0+sha512.0b7f8b98060031904c017e3a41eb187a16d40eeb829b95c4f8cb03681761fc4ab53dd219115b9b447f4dce1a05a214764461e7d3703392a9f32f9511ce8c86c8"
}