44 lines
1018 B
JSON
44 lines
1018 B
JSON
{
|
|
"name": "@gnu-taler/idb-bridge",
|
|
"version": "0.0.16",
|
|
"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.4",
|
|
"@types/node": "^20.4.1",
|
|
"ava": "^5.3.1",
|
|
"prettier": "^2.8.8",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"tslib": "^2.6.0"
|
|
},
|
|
"ava": {
|
|
"failFast": true
|
|
},
|
|
"optionalDependencies": {
|
|
"better-sqlite3": "^8.4.0"
|
|
}
|
|
}
|