{
  "name": "@macalinao/zod-solana",
  "version": "0.1.3",
  "description": "Zod schemas for Solana types with @solana/kit integration",
  "type": "module",
  "sideEffects": false,
  "author": "Ian Macalinao <me@ianm.com>",
  "homepage": "https://grill.ianm.com",
  "license": "Apache-2.0",
  "keywords": [
    "solana",
    "zod",
    "validation",
    "address",
    "typescript",
    "schema",
    "ian-macalinao"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist/",
    "src/"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/macalinao/grill.git",
    "directory": "packages/zod-solana"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -fr dist/",
    "lint": "eslint . --cache",
    "test": "bun test"
  },
  "peerDependencies": {
    "@solana/kit": ">=1.0.0",
    "zod": ">=3.0.0 || >=4.0.0"
  },
  "devDependencies": {
    "@macalinao/eslint-config": "^4.2.2",
    "@macalinao/tsconfig": "^3.2.2",
    "@solana/keys": "^2.3.0",
    "@solana/kit": "^2.3.0",
    "@types/bun": "^1.2.20",
    "eslint": "^9.33.0",
    "typescript": "^5.9.2",
    "zod": "^4.1.1"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
      "biome check --write --no-errors-on-unmatched",
      "eslint --fix --cache"
    ],
    "*.{json,jsonc,html}": "biome format --write --no-errors-on-unmatched"
  }
}
