{ "name": "@trezor/connect-data", "version": "10.0.0-alpha.1", "author": "Trezor ", "homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/connect-data", "keywords": [ "Trezor", "trezor-connect" ], "repository": { "type": "git", "url": "git://github.com/trezor/trezor-suite.git" }, "bugs": { "url": "https://github.com/trezor/trezor-suite/issues" }, "npmPublishAccess": "public", "license": "SEE LICENSE IN LICENSE.md", "description": "Data used by trezor-connect library.", "main": "./src/index.ts", "files": [ "lib/", "libESM/", "files/**/*.json", "files/**/*.txt", "CHANGELOG.md" ], "publishConfig": { "main": "./lib/index.js", "types": "./lib/index.d.ts", "exports": { ".": { "import": "./libESM/index.js", "require": "./lib/index.js", "types": "./lib/index.d.ts" }, "./lib/*": "./lib/*.js", "./files/*": "./files/*", "./libESM/*.js": "./libESM/*.js" } }, "scripts": { "test:unit": "yarn g:jest --passWithNoTests", "build:lib": "yarn build:lib:cjs && yarn build:lib:esm", "build:lib:cjs": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json && ../../scripts/publish/replace-imports.sh ./lib cjs", "build:lib:esm": "yarn g:rimraf ./libESM && yarn g:tsc --build tsconfig.libESM.json && ../../scripts/publish/replace-imports.sh ./libESM esm", "type-check": "yarn g:tsc --build tsconfig.json", "prepublishOnly": "yarn tsx ../../scripts/publish/prepublishNPM.js", "prepublish": "yarn tsx ../../scripts/publish/prepublish.js", "validate-releases.json": "./scripts/check-all-firmware-revisions.sh", "depcheck": "yarn g:depcheck" }, "peerDependencies": { "tslib": "^2.6.2" }, "devDependencies": { "@types/chrome": "^0.0.299", "@types/jest": "29.5.12", "@types/node": "22.13.10", "tsx": "^4.21.0" } }