mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-18 05:08:00 +01:00
* chore(ci): Nx for github validations * chore: tune config * chore: eslint scripts faster and unified settings * chore: check formatting using nx * chore: read-only NX token
33 lines
1.0 KiB
JSON
33 lines
1.0 KiB
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:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
|
"test:unit": "jest --verbose -c ../../jest.config.base.js",
|
|
"type-check": "tsc --build tsconfig.json",
|
|
"build:lib": "rimraf ./lib && yarn tsc --build tsconfig.lib.json"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^26.6.3",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|