wallet-core/packages/idb-bridge/package.json
Sebastian 4845ebddf6
0006728: set up wallet CI pipeline for WebExtension build
This commit split in three main things:
 * added deploy-webext to upload the extension zipfile
 * put scope into the npm packages to be able to deploy them
 * added deploy-npm to deploy related npm packages

Also, fixing bug on `make clean`. Some packages where not
being deleting tsconfig.tsbuildinfo and making subsequent
`make` fail
2021-02-01 17:07:22 -03:00

36 lines
912 B
JSON

{
"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",
"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"
]
}
}