-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.19 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
{
"name": "knex-libsql-client",
"version": "0.1.1",
"license": "MIT",
"description": "Knex dialect for @libsql/client — the only maintained asynchronous SQLite driver for Node.js.",
"keywords": [
"knex",
"sqlite",
"libsql",
"async"
],
"repository": {
"type": "git",
"url": "https://github.com/paleo/knex-libsql-client.git"
},
"type": "module",
"packageManager": "npm@11.11.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"peerDependencies": {
"@libsql/client": ">=0.17.0",
"knex": ">=3.0.0"
},
"devDependencies": {
"@biomejs/biome": "~2.4.5",
"@libsql/client": "~0.17.0",
"@types/node": "~25.3.3",
"docfront": "^0.2.1",
"knex": "~3.1.0",
"typescript": "~5.9.3",
"vitest": "~4.0.18"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"check": "npm run lint && npm run build && npm test",
"prepublishOnly": "npm run check",
"docfront": "docfront"
},
"files": [
"dist"
]
}