{
  "name": "@trezor/connect-plugin-stellar",
  "version": "9.2.6",
  "author": "Trezor <info@trezor.io>",
  "homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/connect-plugin-stellar",
  "description": "@trezor/connect plugin for Stellar",
  "license": "SEE LICENSE IN LICENSE.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/trezor/trezor-suite.git"
  },
  "bugs": {
    "url": "https://github.com/trezor/trezor-suite/issues"
  },
  "keywords": [
    "Trezor",
    "trezor-connect",
    "stellar"
  ],
  "sideEffects": false,
  "main": "lib/index.js",
  "publishConfig": {
    "main": "lib/index.js",
    "types": "lib/index.d.ts",
    "exports": {
      ".": {
        "import": "./libESM/index.js",
        "require": "./lib/index.js"
      }
    }
  },
  "files": [
    "lib/",
    "libESM/",
    "!**/*.map"
  ],
  "peerDependencies": {
    "@stellar/stellar-sdk": "^13.3.0",
    "@trezor/connect": "9.x.x",
    "tslib": "^2.6.2"
  },
  "devDependencies": {
    "@stellar/stellar-sdk": "14.2.0",
    "@trezor/eslint": "1.0.0"
  },
  "dependencies": {
    "@trezor/utils": "9.5.0"
  },
  "scripts": {
    "test:unit": "jest -c ../../jest.config.base.js",
    "type-check": "yarn g:tsc --build tsconfig.json",
    "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",
    "depcheck": "yarn g:depcheck"
  },
  "exports": {
    ".": {
      "import": "./libESM/index.js",
      "require": "./lib/index.js"
    }
  },
  "types": "lib/index.d.ts"
}