UNPKG

@ledgerhq/ledger-trust-service

Version:
93 lines 2.7 kB
{ "name": "@ledgerhq/ledger-trust-service", "version": "0.8.3", "description": "Ledger Trust service client", "keywords": [ "Ledger", "Services", "Trust" ], "repository": { "type": "git", "url": "https://github.com/LedgerHQ/ledger-live.git" }, "bugs": { "url": "https://github.com/LedgerHQ/ledger-live/issues" }, "homepage": "https://github.com/LedgerHQ/ledger-live/tree/develop/libs/ledger-service/trust", "main": "lib/index.js", "module": "lib-es/index.js", "types": "lib/index.d.ts", "typesVersions": { "*": { "*.json": [ "*.json" ], "*": [ "lib/*" ], "lib/*": [ "lib/*" ], "lib-es/*": [ "lib-es/*" ] } }, "exports": { "./lib/*": "./lib/*.js", "./lib/*.js": "./lib/*.js", "./lib-es/*": "./lib-es/*.js", "./lib-es/*.js": "./lib-es/*.js", "./*": { "@ledgerhq/source": "./src/*.ts", "require": "./lib/*.js", "default": "./lib-es/*.js" }, "./*.js": { "@ledgerhq/source": "./src/*.ts", "require": "./lib/*.js", "default": "./lib-es/*.js" }, ".": { "@ledgerhq/source": "./src/index.ts", "require": "./lib/index.js", "default": "./lib-es/index.js" }, "./package.json": "./package.json" }, "license": "Apache-2.0", "dependencies": { "@ledgerhq/live-env": "2.36.0", "@ledgerhq/live-network": "2.6.2" }, "devDependencies": { "@types/jest": "30.0.0", "@types/node": "24.12.0", "dotenv": "^16.4.5", "expect": "30.2.0", "jest": "30.2.0", "msw": "^2.7.3", "oxfmt": "0.36.0", "oxlint": "1.51.0", "@swc/jest": "0.2.39", "@swc/core": "1.15.11", "ts-node": "^10.9.2" }, "scripts": { "clean": "rimraf lib lib-es", "build": "tsc --project tsconfig.build.json && tsc --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es", "coverage": "jest --coverage --passWithNoTests", "prewatch": "pnpm build", "watch": "tsc --watch --project tsconfig.build.json", "watch:es": "tsc --watch --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es", "lint": "oxlint -c ../.oxlintrc.json ./src", "lint:fix": "pnpm exec oxfmt -c ../.oxfmtrc.json ./src && oxlint -c ../.oxlintrc.json ./src --fix --quiet", "format": "pnpm exec oxfmt -c ../.oxfmtrc.json ./src", "format:check": "pnpm exec oxfmt -c ../.oxfmtrc.json ./src --check", "typecheck": "tsc --noEmit --customConditions node", "test": "jest", "test-integ": "DOTENV_CONFIG_PATH=.env.integ.test jest --config=jest.integ.config.js", "unimported": "unimported" } }