{
  "name": "@kaiord/core",
  "version": "10.1.2",
  "description": "Core library for the Kaiord health & fitness data framework",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./test-utils": {
      "import": "./dist/test-utils/index.js",
      "types": "./dist/test-utils/index.d.ts"
    }
  },
  "files": [
    "dist",
    "schema"
  ],
  "dependencies": {
    "@noble/hashes": "^2.3.0",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@faker-js/faker": "^10.6.0",
    "@types/node": "^26.2.0",
    "@types/rosie": "^0.0.45",
    "@vitest/coverage-v8": "^4.1.10",
    "rosie": "^2.1.1",
    "tsdown": "^0.22.14",
    "tsx": "^4.23.12",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/pablo-albaladejo/kaiord.git",
    "directory": "packages/core"
  },
  "homepage": "https://kaiord.com/docs/",
  "bugs": {
    "url": "https://github.com/pablo-albaladejo/kaiord/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "kaiord",
    "fit",
    "tcx",
    "zwo",
    "workout",
    "garmin",
    "zwift",
    "converter",
    "fitness",
    "fit-parser",
    "tcx-parser",
    "zwift-workout",
    "workout-converter",
    "training"
  ],
  "author": "Kaiord Contributors",
  "license": "MIT",
  "engines": {
    "node": ">=22.12.0"
  },
  "scripts": {
    "generate:schema": "tsx scripts/generate-schema.ts",
    "generate:krd-fixtures": "tsx scripts/generate-krd-fixtures.ts",
    "prebuild": "pnpm run generate:schema",
    "build": "pnpm run generate:schema && tsdown --concurrency 1",
    "test": "vitest --run",
    "test:watch": "vitest",
    "test:coverage": "vitest --run --coverage",
    "lint": "tsc --noEmit && eslint . && prettier --check src scripts",
    "lint:fix": "eslint . --fix && prettier --write src scripts",
    "clean": "rm -rf dist"
  }
}