-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 789 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 789 Bytes
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
{
"name": "mysql-dialect-with-deadlock",
"version": "1.1.1",
"description": "",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "pkgroll",
"test:integration": "vitest run --reporter verbose src/index.integration.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@harisk/retryx": "^1.0.2",
"kysely": "^0.28.0",
"mysql2": "^3.14.0"
},
"devDependencies": {
"pkgroll": "^2.12.1",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}