-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (48 loc) · 1.21 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
{
"name": "@libsql/sqlite3",
"version": "0.3.2-pre",
"keywords": [
"libsql",
"database",
"sqlite",
"serverless",
"vercel",
"netlify",
"lambda"
],
"description": "node-sqlite3-compatible API for libSQL",
"repository": {
"type": "git",
"url": "github:libsql/libsql-node-sqlite3"
},
"authors": [
"Jan Špaček <[email protected]>",
"Pekka Enberg <[email protected]>"
],
"license": "MIT",
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**"
],
"scripts": {
"clean": "rm -rf ./lib ./*.tsbuildinfo",
"prepublishOnly": "npm run clean-build",
"build": "tsc && cp src/index.d.ts lib/index.d.ts",
"clean-build": "npm run clean && npm run build",
"typecheck": "tsc --noEmit",
"test": "jest --runInBand"
},
"dependencies": {
"@libsql/hrana-client": "^0.4.1"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"knex": "^2.4.2",
"sqlite3": "^5.1.5",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}