{
  "name": "@sodax/dapp-kit",
  "license": "MIT",
  "version": "2.0.0-rc.1",
  "description": "dapp-kit of New World",
  "type": "module",
  "main": "dist/index.cjs",
  "types": "dist/index.d.ts",
  "module": "dist/index.mjs",
  "files": [
    "dist",
    "src",
    "ai-exported"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/icon-project/sodax-sdks"
  },
  "dependencies": {
    "viem": "2.29.2",
    "@sodax/sdk": "2.0.0-rc.1"
  },
  "devDependencies": {
    "@tanstack/react-query": "5.87.4",
    "@types/react": "19.0.8",
    "knip": "5.30.5",
    "tsup": "8.5.0",
    "typescript": "5.5.4",
    "vitest": "2.1.9"
  },
  "peerDependencies": {
    "@tanstack/react-query": "5.x",
    "react": ">=18"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch ./src",
    "test": "vitest run",
    "clean": "rm -rf dist && rm -rf node_modules && rm -rf .turbo",
    "pretty": "biome format . --write",
    "checkTs": "tsc --noEmit",
    "knip": "knip",
    "lint": "biome lint . --write",
    "check:ai-exported": "bash ./scripts/check-ai-exported.sh",
    "check:ai-scope": "bash ./scripts/check-ai-scope.sh",
    "check:ai-links": "bash ./scripts/check-ai-links.sh",
    "check:ai-imports": "bash ./scripts/check-ai-imports.sh",
    "check:ai-snippets": "bash ./scripts/check-ai-snippets.sh",
    "check:ai-keys": "bash ./scripts/check-ai-keys.sh",
    "check:ai-consistency": "bash ./scripts/check-ai-consistency.sh"
  }
}