summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/package.json
blob: b2c22921fec52419571b308c08512ebe6212fca5 (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
{
  "name": "idb-bridge",
  "version": "0.0.15",
  "description": "IndexedDB implementation that uses SQLite3 as storage",
  "main": "./dist/idb-bridge.js",
  "module": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "author": "Florian Dold",
  "license": "AGPL-3.0-or-later",
  "private": false,
  "scripts": {
    "test": "tsc && ava",
    "compile": "tsc && rollup -c",
    "clean": "rimraf dist lib",
    "pretty": "prettier --config ../../.prettierrc --write src"
  },
  "devDependencies": {
    "@rollup/plugin-typescript": "^5.0.2",
    "ava": "^3.10.1",
    "esm": "^3.2.25",
    "rimraf": "^3.0.2",
    "rollup": "^2.23.0",
    "typescript": "^3.7.0"
  },
  "dependencies": {
    "@types/node": "^14.0.27",
    "tslib": "^2.0.0"
  },
  "ava": {
    "require": ["esm"]
  }
}