{
  "name": "parserator-sdk",
  "version": "1.0.0",
  "description": "Official Node.js SDK for Parserator - Intelligent data parsing using the Architect-Extractor pattern",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc && npm run build:types",
    "build:types": "tsc --emitDeclarationOnly",
    "dev": "tsc --watch",
    "test": "jest --passWithNoTests",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "prepublishOnly": "npm run build && npm test",
    "example:basic": "node examples/basic-parsing.js",
    "example:advanced": "node examples/advanced-schemas.js",
    "example:batch": "node examples/batch-processing.js",
    "benchmark": "node benchmarks/performance.js",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "parsing",
    "data",
    "llm",
    "ai",
    "architect-extractor",
    "gemini",
    "structured-data",
    "json",
    "extraction",
    "automation",
    "parserator",
    "data-parsing",
    "api",
    "sdk",
    "typescript",
    "unstructured-data"
  ],
  "author": "Paul Phillips <phillips.paul.email@gmail.com>",
  "license": "PROPRIETARY",
  "homepage": "https://parserator.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/domusgpt/parserator.git",
    "directory": "packages/sdk-node"
  },
  "bugs": {
    "url": "https://github.com/domusgpt/parserator/issues"
  },
  "dependencies": {
    "@types/joi": "^17.2.2",
    "axios": "^1.6.2",
    "dotenv": "^16.3.1",
    "joi": "^17.11.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.8",
    "@types/node": "^20.8.10",
    "@typescript-eslint/eslint-plugin": "^6.9.0",
    "@typescript-eslint/parser": "^6.9.0",
    "eslint": "^8.52.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.2.2"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
