UNPKG

@ledgerhq/ledger-cal-service

Version:
86 lines 2.19 kB
{ "name": "@ledgerhq/ledger-cal-service", "version": "1.2.2", "description": "Ledger CAL service client", "keywords": [ "Ledger", "Services", "CAL", "cal" ], "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/cal", "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", "./*": { "require": "./lib/*.js", "default": "./lib-es/*.js" }, "./*.js": { "require": "./lib/*.js", "default": "./lib-es/*.js" }, ".": { "require": "./lib/index.js", "default": "./lib-es/index.js" }, "./package.json": "./package.json" }, "license": "Apache-2.0", "dependencies": { "@ledgerhq/live-env": "2.13.0", "@ledgerhq/live-network": "2.0.14" }, "devDependencies": { "@types/jest": "^29.5.10", "@types/node": "^22.10.10", "dotenv": "^16.4.5", "expect": "^27.5.1", "jest": "^29.7.0", "msw": "^2.2.13", "ts-jest": "^29.1.1", "ts-node": "^10.9.2" }, "scripts": { "clean": "rimraf lib lib-es", "build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es", "coverage": "jest --coverage --passWithNoTests", "prewatch": "pnpm build", "watch": "tsc --watch", "watch:es": "tsc --watch -m esnext --moduleResolution bundler --outDir lib-es", "lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts --cache", "lint:fix": "pnpm lint --fix", "typecheck": "tsc --noEmit", "test": "jest", "test-integ": "DOTENV_CONFIG_PATH=.env.integ.test jest --config=jest.integ.config.js", "unimported": "unimported" } }