-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "@objectstack/driver-turso",
"version": "4.0.3",
"license": "Apache-2.0",
"description": "Turso/libSQL Driver for ObjectStack — Edge-first SQLite with embedded replicas and multi-tenancy",
"keywords": [
"objectstack",
"driver",
"turso",
"libsql",
"sqlite",
"edge",
"serverless",
"embedded-replica",
"multi-tenant"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup --config ../../../tsup.config.ts",
"dev": "tsc -w",
"test": "vitest run"
},
"dependencies": {
"@libsql/client": "^0.17.2",
"@objectstack/core": "workspace:*",
"@objectstack/driver-sql": "workspace:*",
"@objectstack/spec": "workspace:*",
"nanoid": "^5.1.7"
},
"peerDependencies": {
"better-sqlite3": "^12.9.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.6.0",
"better-sqlite3": "^12.9.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}