-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "@libsql/kysely-libsql",
"version": "0.5.0",
"keywords": [
"hrana",
"libsql",
"sqld",
"database",
"kysely"
],
"description": "Kysely dialect for libSQL",
"repository": {
"type": "git",
"url": "github:libsql/kysely-libsql"
},
"homepage": "https://github.com/libsql/kysely-libsql",
"authors": [
"Jan Špaček <[email protected]>"
],
"license": "MIT",
"type": "module",
"main": "lib-cjs/index.js",
"types": "lib-esm/index.d.ts",
"exports": {
".": {
"types": "./lib-esm/index.d.ts",
"import": "./lib-esm/index.js",
"require": "./lib-cjs/index.js"
}
},
"files": [
"lib-cjs/**",
"lib-esm/**"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rm -rf ./lib-cjs ./lib-esm",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.build-cjs.json",
"build:esm": "tsc -p tsconfig.build-esm.json",
"postbuild": "cp package-cjs.json ./lib-cjs/package.json",
"test": "jest --runInBand"
},
"dependencies": {
"@libsql/client": "^0.9.0"
},
"peerDependencies": {
"kysely": "*"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.0",
"ts-jest": "^29.0.5",
"typescript": "^5.5.4"
}
}