mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-09 08:48:15 +01:00
45 lines
1.5 KiB
JSON
45 lines
1.5 KiB
JSON
{
|
|
"name": "@trezor/device-authenticity",
|
|
"version": "1.1.0-beta.1",
|
|
"author": "Trezor <info@trezor.io>",
|
|
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/device-authenticity",
|
|
"description": "Utils for authenticity verification of trezor device secure element response.",
|
|
"npmPublishAccess": "public",
|
|
"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,
|
|
"publishConfig": {
|
|
"main": "lib/index.js"
|
|
},
|
|
"main": "src/index",
|
|
"files": [
|
|
"lib/",
|
|
"!**/*.map"
|
|
],
|
|
"scripts": {
|
|
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json && ../../scripts/replace-imports.sh ./lib",
|
|
"depcheck": "yarn g:depcheck",
|
|
"type-check": "yarn g:tsc --build",
|
|
"test:unit": "yarn g:jest",
|
|
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
|
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
|
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
|
},
|
|
"dependencies": {
|
|
"@noble/curves": "^2.0.1",
|
|
"@trezor/crypto-utils": "workspace:*",
|
|
"@trezor/protobuf": "workspace:*",
|
|
"@trezor/schema-utils": "workspace:*",
|
|
"@trezor/utils": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.20.3"
|
|
}
|
|
}
|