{
  "name": "bitbucket-data-center-client",
  "version": "1.4.42",
  "publish": true,
  "description": "TypeScript client library for Bitbucket Server/Data Center REST API",
  "keywords": [
    "bitbucket",
    "bitbucket-server",
    "bitbucket-data-center",
    "rest-api",
    "client",
    "typescript"
  ],
  "author": "Evrim Alacan <evrimalacan@gmail.com>",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "axios": "^1.7.7",
    "form-data": "^4.0.5"
  },
  "devDependencies": {
    "@types/node": "24.10.4",
    "eslint": "^9.39.0",
    "typescript": "^5.7.2",
    "vitest": "^4.0.16",
    "config-eslint": "0.0.0",
    "config-typescript": "0.0.0"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "check-types": "tsc --noEmit -p tsconfig.json",
    "clean": "rm -rf dist",
    "lint": "eslint src tests",
    "lint:fix": "eslint src tests --fix",
    "test": "vitest run",
    "test:integration": "vitest run --config vitest.integration.config.ts"
  }
}