{
  "name": "@revmax/agent-sdk",
  "version": "0.0.9",
  "description": "Official Node.js SDK for RevMax - billing, customer management, and usage tracking",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "lint": "eslint 'src/**/*.ts'",
    "format": "prettier --write 'src/**/*.ts'",
    "prepublishOnly": "npm run build",
    "example": "ts-node examples/basic-usage.ts",
    "example:js": "node examples/basic-usage.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/revmax-hub/nodejs-agent-sdk.git"
  },
  "keywords": [
    "revmax",
    "billing",
    "api",
    "sdk",
    "agent-sdk",
    "usage-tracking",
    "customer-management"
  ],
  "author": "RevMax",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/revmax-hub/nodejs-agent-sdk/issues"
  },
  "homepage": "https://github.com/revmax-hub/nodejs-agent-sdk#readme",
  "dependencies": {
    "axios": "^1.5.0",
    "uuid": "^9.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.3",
    "@types/node": "^20.4.9",
    "@types/uuid": "^9.0.2",
    "@typescript-eslint/eslint-plugin": "^6.3.0",
    "@typescript-eslint/parser": "^6.3.0",
    "eslint": "^8.46.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.0",
    "jest": "^29.6.2",
    "prettier": "^3.0.1",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.1.6"
  },
  "files": [
    "dist/**/*",
    "docs/**/*",
    "examples/**/*",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "engines": {
    "node": ">=14.0.0"
  },
  "prettier": {
    "singleQuote": true,
    "trailingComma": "es5",
    "tabWidth": 2,
    "semi": true,
    "printWidth": 100
  },
  "publishConfig": {
    "access": "public"
  },
  "directories": {
    "doc": "docs",
    "example": "examples",
    "test": "tests"
  }
}
