{
  "name": "ordapi",
  "version": "0.0.8",
  "license": "CC0-1.0",
  "homepage": "https://raphjaph.github.io/ordapi",
  "docs": "https://raphjaph.github.io/ordapi",
  "keywords": [
    "ordinals",
    "bitcoin",
    "inscriptions",
    "runes",
    "typescript"
  ],
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": ["dist"],
  "scripts": {
    "build": "tsc --emitDeclarationOnly && bun build ./src/index.ts --outdir ./dist --target node",
    "test": "bun test ./src/test/**/*.test.ts",
    "format": "prettier --write 'src/**/*.ts'",
    "lint": "eslint . && tsc -b",
    "docs:generate": "bun run docs/generate.ts",
    "docs:html": "bun run docs/generateHtml.ts",
    "docs:serve": "bun run docs/serveDocs.ts",
    "docs": "bun run docs:generate && bun run docs:html && bun run docs:serve"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "dependencies": {
    "zod": "^3.24.4"
  },
  "devDependencies": {
    "@types/bun": "^1.2.13",
    "@types/react": "^19.1.4",
    "@types/react-dom": "^19.1.4",
    "react": "^19.1.0",
    "react-dom": "^19.1.0",
    "typescript-eslint": "^8.32.1"
  }
}
