Files
trezor-suite/packages/protocol/package.json
2025-11-25 13:16:18 +01:00

37 lines
1.0 KiB
JSON

{
"name": "@trezor/protocol",
"version": "1.3.0-beta.1",
"license": "See LICENSE.md in repo root",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-suite.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor-suite/issues"
},
"sideEffects": false,
"main": "src/index.ts",
"publishConfig": {
"main": "lib/index.js"
},
"npmPublishAccess": "public",
"files": [
"lib/",
"!**/*.map"
],
"scripts": {
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
"depcheck": "yarn g:depcheck",
"type-check": "yarn g:tsc --build",
"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": {
"tsx": "^4.20.3"
}
}