mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-20 22:28:30 +01:00
29 lines
767 B
JSON
29 lines
767 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:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
|
"test:e2e": "jest --runInBand -c ../../jest.config.base.js",
|
|
"type-check": "tsc --build tsconfig.json",
|
|
"build:lib": "rimraf ./lib && yarn tsc --build tsconfig.lib.json"
|
|
},
|
|
"dependencies": {
|
|
"@trezor/utils": "*",
|
|
"@types/node-fetch": "^2.6.2",
|
|
"socks-proxy-agent": "6.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^26.6.3",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|