-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 795 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 795 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
{
"name": "@objectstack/driver-sql",
"version": "4.0.3",
"license": "Apache-2.0",
"description": "SQL Driver for ObjectStack - Supports PostgreSQL, MySQL, SQLite via Knex",
"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": {
"@objectstack/core": "workspace:*",
"@objectstack/spec": "workspace:*",
"knex": "^3.2.9",
"nanoid": "^5.1.7"
},
"devDependencies": {
"@types/node": "^25.6.0",
"better-sqlite3": "^12.9.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}