{
  "name": "@dbs-portal/core-api",
  "version": "1.0.0",
  "description": "HTTP client and API utilities for DBS Portal",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./client": {
      "import": "./dist/client.js",
      "types": "./dist/client.d.ts"
    },
    "./interceptors": {
      "import": "./dist/interceptors.js",
      "types": "./dist/interceptors.d.ts"
    },
    "./cache": {
      "import": "./dist/cache.js",
      "types": "./dist/cache.d.ts"
    },
    "./retry": {
      "import": "./dist/retry.js",
      "types": "./dist/retry.d.ts"
    },
    "./query": {
      "import": "./dist/query.js",
      "types": "./dist/query.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc && vite build",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "biome lint src",
    "format": "biome format src --write",
    "type-check": "tsc --noEmit",
    "clean": "rm -rf dist",
    "validate-boundaries": "node ../../../scripts/validate-package-boundaries.js",
    "msw:init": "msw init public --save",
    "msw:browser": "node -e \"console.log('MSW browser setup completed')\"",
    "msw:server": "node -e \"console.log('MSW server setup completed')\"",
    "migrate-build-config": "node ../../tools/build/scripts/migrate-package.mjs",
    "verify-build-config": "node ../../tools/build/scripts/verify-build-config.mjs"
  },
  "dependencies": {
    "@abp/ng.core": "^9.2.3",
    "@dbs-portal/core-config": "1.0.0",
    "@dbs-portal/core-shared": "1.0.0",
    "@tanstack/react-query": "^5.83.0",
    "@tanstack/react-query-devtools": "^5.83.0",
    "axios": "^1.11.0",
    "date-fns": "^4.1.0",
    "lodash-es": "^4.17.21",
    "nanoid": "^5.1.5",
    "uuid": "^11.1.0",
    "zod": "^4.0.11"
  },
  "peerDependencies": {
    "react": "^19.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@dbs-portal/tool-build": "1.0.0",
    "@dbs-portal/tool-testing": "1.0.0",
    "@dbs-portal/tool-tsconfig": "1.0.0",
    "@types/lodash-es": "^4.17.12",
    "@types/node": "^22.10.2",
    "@types/path-browserify": "^1.0.3",
    "@types/react": "^19.0.8",
    "@types/uuid": "^10.0.0",
    "msw": "^2.10.4",
    "path-browserify": "^1.0.1",
    "react": "^19.0.0",
    "typescript": "^5.7.2",
    "vite": "^6.1.0",
    "vitest": "^3.0.5"
  },
  "keywords": [
    "http",
    "api",
    "client",
    "fetch",
    "rest",
    "dbs-portal"
  ],
  "author": "DBS Portal Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/your-org/dbs-portal.git",
    "directory": "packages/core/api"
  },
  "bugs": {
    "url": "https://github.com/your-org/dbs-portal/issues"
  },
  "homepage": "https://github.com/your-org/dbs-portal#readme",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
