{
  "name": "azero-wallet-types",
  "version": "0.3.0",
  "description": "Types for azero-wallet-snap",
  "keywords": [
    "aleph",
    "zero",
    "wallet",
    "metamask",
    "snap"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bide-dev/azero-wallet"
  },
  "license": "GPL-3.0",
  "author": "Piotr Roslaniec <p.roslaniec@gmail.com>",
  "exports": {
    ".": {
      "import": "./dist/es/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/es/index.js",
  "types": "./dist/cjs/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@polkadot/types": "^10.9.1",
    "@polkadot/util": "^10.1.14"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "prebuild": "pnpm clean",
    "build": "pnpm build:es && pnpm build:cjs",
    "build:cjs": "tsc --build ./tsconfig.cjs.json --verbose",
    "build:es": "tsc --build ./tsconfig.es.json --verbose",
    "clean": "rimraf dist",
    "lint": "run-p lint:exports lint:eslint",
    "lint:eslint": "eslint .",
    "lint:exports": "ts-unused-exports tsconfig.json --ignoreFiles src/index.ts",
    "lint:fix": "eslint . --fix && prettier . --write",
    "package-check": "package-check",
    "typecheck": "tsc --noEmit"
  }
}