{
  "name": "flair-sdk",
  "version": "1.14.0",
  "description": "Typing and utility library for flair.build EVM indexer custom scripts",
  "main": "./dist/cjs/index.js",
  "type": "module",
  "types": "./dist/types/index.d.ts",
  "typings": "./dist/types/index.d.ts",
  "scripts": {
    "format": "rome format . --write",
    "lint": "rome check .",
    "lint:fix": "pnpm lint --apply-unsafe",
    "build": "rm -rf dist && pnpm build:cjs && pnpm build:esm",
    "build:cjs": "tsc --project tsconfig.json --module commonjs --outDir ./dist/cjs --removeComments --verbatimModuleSyntax false && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
    "build:esm": "tsc --project tsconfig.json --module esnext --outDir ./dist/esm --removeComments --verbatimModuleSyntax false && echo '{\"type\": \"module\"}' > dist/esm/package.json"
  },
  "keywords": [],
  "author": "gm@flair.build",
  "files": [
    "dist",
    "!dist/**/*.tsbuildinfo",
    ".npmrc",
    "src/**/*.ts"
  ],
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "default": "./dist/cjs/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "peerDependencies": {
    "@ethersproject/providers": "^5.7.2",
    "axios": "0.26.1",
    "ethers": "^5.7.2",
    "typescript": ">=5.0.4"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    },
    "axios": {
      "optional": true
    },
    "ethers": {
      "optional": true
    },
    "@ethersproject/providers": {
      "optional": true
    }
  },
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^20.11.30",
    "redis": "^4.6.7",
    "rome": "^12.1.3",
    "tslib": "^2.6.1",
    "typescript": "^5.1.6"
  }
}
