{
  "name": "@lessonkit/core",
  "version": "1.7.4",
  "private": false,
  "description": "Shared types and telemetry primitives for LessonKit.",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/eddiethedean/lessonkit.git",
    "directory": "packages/core"
  },
  "homepage": "https://lessonkit.readthedocs.io/en/latest/reference/core.html",
  "bugs": {
    "url": "https://github.com/eddiethedean/lessonkit/issues"
  },
  "keywords": [
    "lessonkit",
    "telemetry",
    "analytics",
    "learning",
    "training"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "import": "./dist/testing.js",
      "require": "./dist/testing.cjs"
    },
    "./telemetry-catalog.v1.json": "./telemetry-catalog.v1.json",
    "./telemetry-catalog.v2.json": "./telemetry-catalog.v2.json",
    "./telemetry-catalog.v3.json": "./telemetry-catalog.v3.json",
    "./identity-contract.v1.json": "./identity-contract.v1.json"
  },
  "files": [
    "dist",
    "telemetry-catalog.v1.json",
    "telemetry-catalog.v2.json",
    "telemetry-catalog.v3.json",
    "identity-contract.v1.json"
  ],
  "scripts": {
    "build": "tsup src/index.ts src/testing.ts --format esm,cjs --dts --tsconfig tsconfig.build.json",
    "dev": "tsup src/index.ts src/testing.ts --format esm,cjs --dts --watch --tsconfig tsconfig.build.json",
    "prepublishOnly": "npm run build",
    "typecheck": "tsc -p tsconfig.json",
    "test": "vitest run --passWithNoTests",
    "test:coverage": "vitest run --coverage --passWithNoTests=false",
    "lint": "eslint --max-warnings 0 \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\""
  },
  "devDependencies": {
    "@types/node": "^25.9.2",
    "tsup": "^8.5.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.8"
  }
}
