Files
trezor-suite/packages/request-manager/package.json
2022-07-29 17:24:08 +02:00

22 lines
547 B
JSON

{
"name": "@trezor/request-manager",
"version": "1.0.0",
"private": true,
"license": "See LICENSE.md in repo root",
"sideEffects": false,
"main": "lib/index",
"files": [
"lib/",
"!**/*.map"
],
"scripts": {
"lint": "eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest -c ../../jest.config.base.js",
"type-check": "tsc --build tsconfig.json",
"build:lib": "rimraf ./lib && tsc --build tsconfig.lib.json"
},
"dependencies": {
"@trezor/utils": "*"
}
}