Files
trezor-suite/packages/protocol/package.json
2024-09-23 12:24:13 +02:00

38 lines
1.1 KiB
JSON

{
"name": "@trezor/protocol",
"version": "1.2.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": {
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"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.16.3"
}
}