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

28 lines
899 B
JSON

{
"name": "@trezor/utils",
"version": "9.0.2",
"author": "Trezor <info@trezor.io>",
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/utils",
"description": "A collection of typescript utils that are intended to be used across trezor-suite monorepo.",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-suite.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor-suite/issues"
},
"sideEffects": false,
"main": "lib/index",
"files": [
"lib/",
"!**/*.map"
],
"scripts": {
"lint": "eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest --verbose -c ../../jest.config.base.js",
"type-check": "tsc --build tsconfig.json",
"build:lib": "rimraf ./lib && tsc --build tsconfig.lib.json"
}
}