{
  "name": "@cofhe/abi",
  "version": "0.5.2",
  "type": "module",
  "description": "ABI utilities for Fhenix FHE contracts",
  "types": "./dist/index.d.ts",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "sideEffects": false,
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/FhenixProtocol/cofhesdk.git",
    "directory": "packages/abi"
  },
  "files": [
    "dist/**",
    "src/**",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "abitype": "1.2.3",
    "@cofhe/sdk": "0.5.2"
  },
  "devDependencies": {
    "@types/node": "20.19.15",
    "eslint": "8.57.1",
    "tsup": "8.5.0",
    "typescript": "5.5.4",
    "vitest": "3.2.4",
    "@cofhe/tsconfig": "0.1.2",
    "@cofhe/eslint-config": "0.2.1"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "eslint \"**/*.ts*\"",
    "check:types": "tsc --noEmit",
    "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}