Files
trezor-suite/packages/utils/package.json
2024-12-13 09:26:24 +01:00

46 lines
1.4 KiB
JSON

{
"name": "@trezor/utils",
"version": "9.2.6",
"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.",
"npmPublishAccess": "public",
"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,
"publishConfig": {
"main": "lib/index"
},
"main": "src/index.ts",
"files": [
"lib/",
"!**/*.map"
],
"scripts": {
"test:unit": "yarn g:jest --verbose -c ./jest.config.js",
"type-check": "yarn g:tsc --build tsconfig.json",
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json && ../../scripts/replace-imports.sh ./lib",
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
"prepublish": "yarn tsx ../../scripts/prepublish.js"
},
"peerDependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@trezor/eslint": "workspace:*",
"tsx": "^4.16.3"
},
"dependencies": {
"bignumber.js": "^9.1.2"
},
"browser": {
"crypto": false
}
}