wallet-core/packages/idb-bridge/package.json
2020-08-10 14:37:20 +05:30

36 lines
888 B
JSON

{
"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": "./dist/idb-bridge.d.ts",
"author": "Florian Dold",
"license": "AGPL-3.0-or-later",
"private": false,
"scripts": {
"test": "tsc && ava",
"compile": "tsc && rollup -c && api-extractor run",
"clean": "rimraf dist lib tsconfig.tsbuildinfo",
"pretty": "prettier --config ../../.prettierrc --write src"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.9.3",
"@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"
]
}
}