Files
trezor-suite/packages/request-manager/package.json
2022-09-09 16:08:11 +02:00

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"
}
}