{
  "name": "@leather-wallet/types",
  "description": "Types package for Leather",
  "version": "0.2.1",
  "license": "MIT",
  "author": "leather-wallet",
  "devDependencies": {
    "tsup": "8.0.1"
  },
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/types/index.js",
      "require": "./dist/types/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "prepublish": "pnpm ts:build",
    "test": "echo \"Error: no test specified\" && exit 1",
    "ts:build": "tsup src/index.ts && npm run types",
    "ts:build:watch": "tsc --build --watch --preserveWatchOutput",
    "typecheck": "tsc --noEmit -p ./tsconfig.json",
    "types": "tsc --declaration --emitDeclarationOnly"
  }
}