{
  "name": "@agenite/tool",
  "version": "0.4.0",
  "description": "Tool interface for Agenite",
  "private": false,
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "dependencies": {
    "@n8n/json-schema-to-zod": "^1.1.0",
    "zod": "^3.24.2",
    "zod-to-json-schema": "^3.24.5",
    "@agenite/llm": "0.4.0"
  },
  "devDependencies": {
    "@types/node": "^20.17.25",
    "tsup": "^8.4.0",
    "typescript": "^5.8.2",
    "@repo/eslint-config": "0.1.0",
    "@repo/tsup-config": "0.0.3",
    "@repo/typescript-config": "0.1.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "files": [
    "dist",
    "package.json",
    "README.md",
    "CHANGELOG.md"
  ],
  "keywords": [
    "ai",
    "generative-ai",
    "tool",
    "function-calling",
    "typescript",
    "schema-validation",
    "type-safe",
    "agent-tools",
    "llm-tools",
    "api-integration",
    "json-schema"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/subeshb1/agenite.git",
    "directory": "packages/tool"
  },
  "homepage": "https://github.com/subeshb1/agenite/tree/main/packages/tool#readme",
  "bugs": {
    "url": "https://github.com/subeshb1/agenite/issues"
  },
  "license": "MIT",
  "scripts": {
    "lint": "eslint . --max-warnings 0",
    "check-types": "tsc --noEmit",
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "jest"
  }
}