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
|
{
"name": "@gnu-taler/idb-bridge",
"version": "0.11.3",
"description": "IndexedDB implementation that uses SQLite3 as storage",
"main": "./dist/idb-bridge.js",
"module": "./lib/index.js",
"type": "module",
"types": "./lib/index.d.ts",
"author": "Florian Dold",
"license": "AGPL-3.0-or-later",
"private": false,
"scripts": {
"test": "tsc && ava",
"typedoc": "typedoc --out dist/typedoc ./src/",
"compile": "tsc",
"clean": "rm -rf dist lib tsconfig.tsbuildinfo",
"pretty": "prettier --write src"
},
"exports": {
".": {
"default": "./lib/index.js"
},
"./node-sqlite3-bindings": {
"default": "./lib/node-sqlite3-impl.js"
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20.4.1",
"ava": "^6.0.1",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"tslib": "^2.6.2"
},
"ava": {
"failFast": true
},
"optionalDependencies": {
"better-sqlite3": "10.0.0"
}
}
|