mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-11 09:54:10 +01:00
51 lines
1.6 KiB
JSON
51 lines
1.6 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.8.2",
|
|
"@suite-common/geolocation": "workspace:*",
|
|
"@suite-common/redux-utils": "workspace:*",
|
|
"@suite-common/suite-types": "workspace:*",
|
|
"@suite-common/wallet-config": "workspace:*",
|
|
"@trezor/connect": "workspace:*",
|
|
"@trezor/device-utils": "workspace:*",
|
|
"@trezor/env-utils": "workspace:*",
|
|
"@trezor/utils": "workspace:*",
|
|
"@types/semver": "^7.7.0",
|
|
"fs-extra": "^11.3.0",
|
|
"json-schema-to-typescript": "^15.0.4",
|
|
"jws": "^4.0.0",
|
|
"react": "19.0.0",
|
|
"react-redux": "9.2.0",
|
|
"semver": "^7.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@suite-common/test-utils": "workspace:*",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"tsx": "^4.20.3"
|
|
},
|
|
"nx": {
|
|
"targets": {
|
|
"build:lib": {
|
|
"outputs": [
|
|
"{projectRoot}/files",
|
|
"{workspaceRoot}/suite-common/suite-types/src/messageSystem.ts"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|