{
  "name": "@thermal-label/contracts",
  "version": "0.6.3",
  "description": "Shared types and interfaces for thermal-label printer drivers",
  "keywords": [
    "thermal-label",
    "printer",
    "driver",
    "types",
    "interfaces"
  ],
  "type": "module",
  "author": "Mannes Brak",
  "license": "MIT",
  "homepage": "https://thermal-label.github.io/contracts/",
  "repository": {
    "type": "git",
    "url": "https://github.com/thermal-label/contracts.git"
  },
  "bugs": {
    "url": "https://github.com/thermal-label/contracts/issues"
  },
  "funding": [
    {
      "type": "github",
      "url": "https://github.com/sponsors/mannes"
    },
    {
      "type": "ko-fi",
      "url": "https://ko-fi.com/mannes"
    }
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "prettier": "@mbtech-nl/prettier-config",
  "engines": {
    "node": ">=20.9.0"
  },
  "dependencies": {
    "@mbtech-nl/bitmap": "^1.3.0"
  },
  "devDependencies": {
    "@mbtech-nl/eslint-config": "^1.1.0",
    "@mbtech-nl/prettier-config": "^1.1.0",
    "@mbtech-nl/tsconfig": "^1.1.0",
    "@vitest/coverage-v8": "^2.0.0",
    "eslint": "^9.0.0",
    "prettier": "^3.0.0",
    "typedoc": "^0.28.0",
    "typedoc-plugin-markdown": "^4.0.0",
    "typescript": "~5.5.0",
    "vitest": "^2.0.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src",
    "format": "prettier --write src",
    "docs:api": "typedoc"
  }
}