{
  "name": "meilisearch",
  "version": "0.57.0",
  "description": "The Meilisearch JS client for Node.js and the browser.",
  "keywords": [
    "meilisearch",
    "search",
    "instant",
    "relevant",
    "client",
    "wrapper",
    "meili"
  ],
  "author": "cvermand <charlotte@meilisearch.com>",
  "contributors": [
    "qdequele <quentin@meilisearch.com>"
  ],
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": "./dist/index.js",
    "./token": "./dist/token.js",
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "files": [
    "src",
    "dist",
    "CONTRIBUTING.md"
  ],
  "engines": {
    "node": "^20.19.0 || >=22.12.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/meilisearch/meilisearch-js.git"
  },
  "devDependencies": {
    "@types/node": "24.10.13",
    "@vitest/coverage-v8": "4.1.0",
    "eslint-plugin-tsdoc": "0.5.0",
    "globals": "^16.5.0",
    "husky": "^9.1.7",
    "lint-staged": "16.2.7",
    "oxlint": "1.50.0",
    "oxlint-tsgolint": "0.14.2",
    "prettier": "^3.8.1",
    "prettier-plugin-jsdoc": "^1.8.0",
    "typedoc": "^0.28.14",
    "typescript": "5.9.3",
    "vite": "8.0.0",
    "vitest": "4.1.0"
  },
  "scripts": {
    "playground:javascript": "vite serve playgrounds/javascript --open",
    "build:docs": "typedoc",
    "build": "vite build && tsc -p tsconfig.build.json",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "types": "tsc -p tsconfig.json --noEmit",
    "types:watch": "pnpm types --watch",
    "fmt": "prettier -c .",
    "fmt:fix": "prettier -w .",
    "lint": "oxlint --type-aware",
    "lint:fix": "oxlint --type-aware --fix",
    "style": "pnpm fmt && pnpm lint",
    "style:fix": "pnpm fmt:fix && pnpm lint:fix"
  }
}