UNPKG

@ledgerhq/domain-service

Version:
90 lines 2.36 kB
{ "name": "@ledgerhq/domain-service", "description": "Ledger service responsible for domain handling", "version": "1.2.30", "license": "Apache-2.0", "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/domain-service", "publishConfig": { "access": "public" }, "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" }, "./package.json": "./package.json" }, "files": [ "lib", "lib-es", "src" ], "dependencies": { "axios": "1.7.7", "eip55": "^2.1.1", "react": "^18.2.0", "react-dom": "^18.2.0", "@ledgerhq/errors": "^6.21.0", "@ledgerhq/logs": "^6.12.0", "@ledgerhq/types-live": "^6.71.0" }, "devDependencies": { "@testing-library/jest-dom": "^6.1.5", "@testing-library/react": "^14.1.2", "@types/jest": "^29.5.10", "@types/node": "^22.10.10", "@types/testing-library__jest-dom": "^5.14.5", "cross-env": "^7.0.3", "eslint-plugin-jest": "^27.4.2", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "react-test-renderer": "^18.2.0", "ts-jest": "^29.1.1", "@ledgerhq/types-cryptoassets": "^7.23.0" }, "scripts": { "clean": "rm -rf lib lib-es", "build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es", "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,.tsx --cache", "lint:fix": "pnpm lint --fix", "test": "cross-env TZ=America/New_York jest", "unimported": "unimported" } }