summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/package.json
blob: b93ca9f0d8b6d0ab98fb3217381e4972dce79ae7 (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
{
  "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",
    "prepare": "tsc",
    "compile": "tsc",
    "clean": "rimraf dist lib tsconfig.tsbuildinfo",
    "pretty": "prettier --write src"
  },
  "exports": {
    ".": {
      "default": "./lib/index.js"
    }
  },
  "devDependencies": {
    "@types/node": "^18.8.5",
    "ava": "^4.3.3",
    "esm": "^3.2.25",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "tslib": "^2.4.0"
  },
  "ava": {
    "require": [
      "esm"
    ]
  }
}