{
  "name": "@dossierhq/integration-test",
  "version": "0.7.18",
  "description": "Integration test to ensure that different Dossier database adapters work as expected.",
  "keywords": [
    "dossier",
    "cms",
    "schema",
    "integration-test"
  ],
  "homepage": "https://dossierhq.dev",
  "author": {
    "name": "Jonas Bengtsson"
  },
  "type": "module",
  "exports": {
    ".": "./lib/index.js"
  },
  "types": "./lib/index.d.ts",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dossierhq/dossierhq.git",
    "directory": "libraries/integration-test"
  },
  "dependencies": {
    "tslib": "~2.8.1",
    "uuid": "~11.1.0"
  },
  "peerDependencies": {
    "@dossierhq/core": "0.7.18",
    "@dossierhq/server": "0.7.18"
  },
  "devDependencies": {
    "@types/node": "~22.15.3",
    "@types/uuid": "~10.0.0",
    "eslint": "~9.26.0",
    "typescript": "~5.8.3",
    "@dossierhq/core": "0.7.18",
    "@dossierhq/eslint-config": "1.0.2",
    "@dossierhq/server": "0.7.18",
    "@dossierhq/typescript-config": "1.0.2",
    "@dossierhq/typescript-generator": "0.7.18"
  },
  "scripts": {
    "build": "bun ./scripts/generate-typescript.ts && tsc && post-process-build deno-esm-only",
    "build:watch": "tsc --watch",
    "lint": "npm run prettier:check && npm run eslint:check",
    "clean": "rm -rf lib/",
    "eslint:check": "eslint --max-warnings=0",
    "eslint:fix": "eslint --fix .",
    "prettier:check": "prettier --check .",
    "prettier:fix": "prettier --write ."
  }
}