mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-20 06:08:39 +01:00
22 lines
547 B
JSON
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": "*"
|
|
}
|
|
}
|