{
  "name": "@strapi/client",
  "version": "1.6.1",
  "description": "The official client library to easily interface with Strapi from your JavaScript/TypeScript project",
  "keywords": [
    "strapi",
    "sdk",
    "library",
    "client",
    "js",
    "ts"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/strapi/client.git"
  },
  "license": "SEE LICENSE IN LICENSE",
  "author": {
    "name": "Strapi Solutions SAS",
    "email": "hi@strapi.io",
    "url": "https://strapi.io"
  },
  "maintainers": [
    {
      "name": "Strapi Solutions SAS",
      "email": "hi@strapi.io",
      "url": "https://strapi.io"
    }
  ],
  "browser": "./dist/bundle.browser.iife.min.js",
  "exports": {
    ".": {
      "types": "./dist/exports.d.ts",
      "browser": {
        "import": "./dist/bundle.browser.mjs",
        "require": "./dist/bundle.browser.cjs"
      },
      "node": {
        "require": "./dist/bundle.cjs",
        "import": "./dist/bundle.mjs"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "./package.json",
    "dist/"
  ],
  "devDependencies": {
    "@commitlint/cli": "19.6.1",
    "@commitlint/config-conventional": "19.6.0",
    "@commitlint/types": "19.5.0",
    "@rollup/plugin-commonjs": "28.0.2",
    "@rollup/plugin-node-resolve": "16.0.0",
    "@rollup/plugin-replace": "6.0.2",
    "@rollup/plugin-terser": "0.4.4",
    "@rollup/plugin-typescript": "12.1.2",
    "@strapi/eslint-config": "0.2.1",
    "@types/node": "^20",
    "@types/debug": "4.1.12",
    "@types/qs": "6.9.18",
    "@vitest/coverage-v8": "latest",
    "@typescript-eslint/eslint-plugin": "8.21.0",
    "@typescript-eslint/parser": "8.21.0",
    "eslint": "8.57.1",
    "eslint-plugin-import": "2.31.0",
    "husky": "9.1.7",
    "lint-staged": "15.4.1",
    "prettier": "3.4.2",
    "rimraf": "6.0.1",
    "rollup": "4.31.0",
    "typescript": "5.7.3",
    "vitest": "^4.0.3"
  },
  "engines": {
    "node": ">=20.18.2 <=24.x.x"
  },
  "dependencies": {
    "debug": "4.4.0",
    "qs": "6.14.0"
  },
  "scripts": {
    "build": "rollup --config rollup.config.mjs --failAfterWarnings",
    "build:clean": "pnpm run clean && pnpm run build",
    "clean": "pnpm exec rimraf ./dist",
    "demo": "pnpm exec scripts/demo.sh",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "lint:fix:dry": "eslint . --fix-dry-run",
    "format": "prettier --write .",
    "format:write": "prettier --write .",
    "format:check": "prettier --check .",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "ts:check": "tsc -p tsconfig.build.json --noEmit",
    "watch": "pnpm run build --watch"
  }
}