{
  "name": "@bjornharrtell/json-api",
  "version": "6.2.0",
  "type": "module",
  "main": "./dist/lib.js",
  "module": "./dist/lib.js",
  "types": "./dist/lib.d.ts",
  "exports": {
    ".": "./dist/lib.js",
    "./*": "./src/*"
  },
  "files": [
    "README.md",
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bjornharrtell/json-api.git"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.4",
    "@types/node": "^25.3.0",
    "@vitest/coverage-v8": "^4.0.18",
    "coveralls": "^3.1.1",
    "typedoc": "^0.28.17",
    "typescript": "~5.9.3",
    "vite": "^7.3.1",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.0.18"
  },
  "scripts": {
    "dev": "vite",
    "test": "vitest",
    "test:integration": "vitest run tests/integration/jsonapi-dotnetcore.spec.ts",
    "test:coverage": "vitest run --coverage",
    "test:integration:coverage": "vitest run --coverage tests/integration/jsonapi-dotnetcore.spec.ts",
    "coverage": "vitest run --coverage",
    "coveralls": "pnpm run coverage && cat ./coverage/lcov.info | coveralls",
    "build": "vite build",
    "preview": "vite preview",
    "type-check": "tsc --noEmit",
    "typedoc": "typedoc"
  }
}