-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.26 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "kysely-replication",
"version": "0.2.3",
"description": "Replication-aware Kysely query execution",
"repository": {
"type": "git",
"url": "git+https://github.com/kysely-org/kysely-replication.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup && tsx ./scripts/fix-build.mts",
"lint": "biome check",
"check:dts": "attw --pack .",
"check:types": "tsc",
"prepublishOnly": "pnpm lint && vitest run && pnpm build && pnpm check:dts",
"release:preview": "pkg-pr-new publish",
"test": "vitest"
},
"keywords": [
"kysely",
"replication",
"dialect",
"sql",
"database",
"query",
"builder"
],
"author": "Igal Klebanov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@biomejs/biome": "^1.9.4",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.10.2",
"kysely": "^0.27.5",
"pkg-pr-new": "^0.0.39",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"sideEffects": false,
"packageManager": "[email protected]+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./force": {
"import": {
"types": "./dist/force/index.d.ts",
"default": "./dist/force/index.js"
},
"require": {
"types": "./dist/force/index.d.cts",
"default": "./dist/force/index.cjs"
}
},
"./strategy/random": {
"import": {
"types": "./dist/strategy/random.d.ts",
"default": "./dist/strategy/random.js"
},
"require": {
"types": "./dist/strategy/random.d.cts",
"default": "./dist/strategy/random.cjs"
}
},
"./strategy/round-robin": {
"import": {
"types": "./dist/strategy/round-robin.d.ts",
"default": "./dist/strategy/round-robin.js"
},
"require": {
"types": "./dist/strategy/round-robin.d.cts",
"default": "./dist/strategy/round-robin.cjs"
}
}
}
}