summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/package.json
blob: 2677c302f957ccd2d19843971d3d239d76d68e64 (plain)
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.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",
    "compile": "tsc --build",
    "clean": "rimraf 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",
    "rimraf": "^5.0.1",
    "typescript": "^5.1.6"
  },
  "dependencies": {
    "tslib": "^2.6.0"
  },
  "ava": {
    "failFast": true
  },
  "optionalDependencies": {
    "better-sqlite3": "^8.4.0"
  }
}