summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/package.json
blob: ee250110568f4c6927312ca19363072f4620d91a (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
{
  "name": "idb-bridge",
  "version": "0.0.16",
  "description": "IndexedDB implementation that uses SQLite3 as storage",
  "main": "./dist/idb-bridge.js",
  "module": "./lib/index.js",
  "types": "./dist/idb-bridge.d.ts",
  "author": "Florian Dold",
  "license": "AGPL-3.0-or-later",
  "private": false,
  "scripts": {
    "test": "tsc && ava",
    "prepare": "tsc && rollup -c && api-extractor run",
    "compile": "tsc && rollup -c && api-extractor run",
    "clean": "rimraf dist lib tsconfig.tsbuildinfo",
    "pretty": "prettier --write src"
  },
  "devDependencies": {
    "@microsoft/api-extractor": "^7.13.0",
    "ava": "^3.15.0",
    "esm": "^3.2.25",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.37.1",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "@types/node": "^14.14.22",
    "tslib": "^2.1.0"
  },
  "ava": {
    "require": [
      "esm"
    ]
  }
}