{
  "name": "@busy-app/busy-lib",
  "private": false,
  "description": "A library for interacting with the BUSY Bar API",
  "version": "0.21.1",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/busy-app/busylib-ts"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "sideEffects": false,
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "imports": {
    "#font-maps": "./dist/Utils/font/font-maps-stub.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./fonts": {
      "types": "./dist/fonts.d.ts",
      "import": "./dist/Utils/font/fonts.js",
      "require": "./dist/Utils/font/fonts.cjs"
    }
  },
  "files": [
    "dist",
    "LICENSE"
  ],
  "dependencies": {
    "openapi-fetch": "^0.14.0",
    "protobufjs": "^8.0.1"
  },
  "devDependencies": {
    "@types/node": "22.15.1",
    "long": "^5.3.2",
    "openapi-typescript": "^7.8.0",
    "prettier": "^3.8.1",
    "protobufjs-cli": "^2.0.1",
    "typedoc": "^0.28.5",
    "typescript": "~5.8.3",
    "vite": "^6.3.5",
    "vite-plugin-dts": "^4.5.4",
    "vite-tsconfig-paths": "^5.1.4"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "vite build",
    "typecheck": "tsc --noEmit",
    "docs:generate": "typedoc",
    "format": "prettier --write '**/*.ts'",
    "fonts:build": "node tools/build-font-maps.mjs",
    "fonts:check": "node tools/build-font-maps.mjs --check"
  }
}