Files
trezor-suite/suite-common/message-system/package.json
2026-01-27 18:29:02 +01:00

57 lines
1.9 KiB
JSON

{
"name": "@suite-common/message-system",
"version": "1.0.0",
"private": true,
"license": "See LICENSE.md in repo root",
"sideEffects": false,
"main": "src/index",
"scripts": {
"build:lib": "yarn msg-system-types && yarn sign-config",
"msg-system-types": "yarn tsx ./scripts/generate-types.ts",
"validate-config": "yarn tsx ./scripts/validate-config.ts",
"sign-config": "yarn tsx ./scripts/sign-config.ts",
"test:unit": "yarn g:jest",
"depcheck": "yarn g:depcheck",
"type-check": "yarn g:tsc --build"
},
"dependencies": {
"@reduxjs/toolkit": "2.11.0",
"@suite-common/geolocation": "workspace:*",
"@suite-common/redux-utils": "workspace:*",
"@suite-common/suite-types": "workspace:*",
"@suite-common/suite-utils": "workspace:*",
"@suite-common/validators": "workspace:*",
"@suite-common/wallet-config": "workspace:*",
"@trezor/connect": "workspace:*",
"@trezor/device-utils": "workspace:*",
"@trezor/env-utils": "workspace:*",
"@trezor/type-utils": "workspace:*",
"@trezor/utils": "workspace:*",
"@types/semver": "^7.7.0",
"fs-extra": "^11.3.1",
"json-schema-to-typescript": "^15.0.4",
"react": "19.1.0",
"react-redux": "9.2.0",
"semver": "^7.7.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@suite-common/test-utils": "workspace:*",
"@trezor/eslint": "workspace:*",
"@trezor/node-utils": "workspace:*",
"@types/fs-extra": "^11.0.4",
"jws": "^4.0.1",
"tsx": "^4.21.0"
},
"nx": {
"targets": {
"build:lib": {
"outputs": [
"{projectRoot}/files",
"{workspaceRoot}/suite-common/suite-types/src/messageSystem.ts"
]
}
}
}
}