{
  "name": "agentmeter",
  "version": "1.0.0",
  "description": "TypeScript SDK for AgentMeter usage-based billing API",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "type-check": "tsc --noEmit",
    "prepublishOnly": "npm run type-check && npm run test && npm run build",
    "release": "npm run prepublishOnly && npm publish"
  },
  "keywords": [
    "agentmeter",
    "billing",
    "usage-based-billing",
    "metering",
    "typescript",
    "sdk",
    "api",
    "saas",
    "analytics"
  ],
  "author": "AgentMeter Team",
  "license": "MIT",
  "homepage": "https://agentmeter.com",
  "bugs": {
    "url": "https://github.com/agentmeter/agentmeter-sdk-typescript/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/agentmeter/agentmeter-sdk-typescript.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.5.0",
    "ts-jest": "^29.1.0",
    "tsup": "^7.0.0",
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "cross-fetch": "^4.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "engines": {
    "node": ">=16"
  }
}