{
  "name": "@dossierhq/core",
  "version": "0.7.21",
  "description": "The core Dossier library used by clients and server alike, used to interact with schema and entities directly, as well as remotely through a client.",
  "keywords": [
    "dossier",
    "cms",
    "schema",
    "content"
  ],
  "homepage": "https://dossierhq.dev",
  "author": {
    "name": "Jonas Bengtsson"
  },
  "type": "module",
  "sideEffects": false,
  "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/core"
  },
  "dependencies": {
    "tslib": "~2.8.1"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "~3.2.4",
    "eslint": "~9.31.0",
    "typescript": "~5.8.3",
    "vitest": "~3.2.4",
    "@dossierhq/eslint-config": "1.0.2",
    "@dossierhq/typescript-config": "1.0.3"
  },
  "scripts": {
    "build": "tsc && post-process-build deno-esm-only",
    "build:watch": "tsc --watch",
    "lint": "npm run prettier:check && npm run eslint:check",
    "clean": "rm -rf lib/ coverage/",
    "eslint:check": "eslint --max-warnings=0",
    "eslint:fix": "eslint --fix .",
    "prettier:check": "prettier --check .",
    "prettier:fix": "prettier --write .",
    "test": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:update-snapshot": "vitest --update",
    "test:watch": "vitest --watch"
  }
}