{
  "name": "@commonpub/learning",
  "version": "0.5.2",
  "type": "module",
  "description": "Learning path engine — curriculum, progress, and certificates for CommonPub",
  "license": "AGPL-3.0-or-later",
  "repository": {
    "type": "git",
    "url": "https://github.com/commonpub/commonpub",
    "directory": "packages/learning"
  },
  "keywords": [
    "commonpub",
    "activitypub",
    "federation",
    "typescript",
    "learning",
    "curriculum",
    "certificates"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22"
  },
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist/",
    "!dist/__tests__/",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@commonpub/explainer": "^0.7.11",
    "@commonpub/schema": "^0.14.3",
    "zod": "^4.3.6",
    "@commonpub/editor": "0.7.9",
    "@commonpub/config": "0.11.0"
  },
  "devDependencies": {
    "typescript": "^5.7.0",
    "vitest": "^3.0.0"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "vitest run",
    "lint": "eslint src/",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}