-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 729 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
{
"name": "libsqlx",
"description": "A lightweight wrapper around @libsql/client that adds developer-friendly features like job scheduling, migrations, error handling, query logging, SQL utilities, and more",
"version": "1.1.3",
"main": "lib/src/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"libsql",
"sqlite",
"database",
"libsqlx"
],
"author": "JS00001",
"license": "ISC",
"dependencies": {
"@libsql/client": "^0.15.15",
"chrono-node": "^2.8.4",
"commander": "^14.0.1",
"cron-parser": "^5.4.0"
},
"devDependencies": {
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"publishConfig": {
"access": "public"
}
}