{
  "name": "mdxld",
  "version": "1.9.1",
  "description": "Lightweight MDX + Linked Data parser and stringifier",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "mdxld": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./types": {
      "types": "./dist/types.d.ts",
      "import": "./dist/types.js",
      "require": "./dist/types.cjs"
    },
    "./typegen": {
      "types": "./dist/typegen.d.ts",
      "import": "./dist/typegen.js",
      "require": "./dist/typegen.cjs"
    },
    "./functions": {
      "types": "./dist/functions.d.ts",
      "import": "./dist/functions.js",
      "require": "./dist/functions.cjs"
    },
    "./database": {
      "types": "./dist/database.d.ts",
      "import": "./dist/database.js",
      "require": "./dist/database.cjs"
    },
    "./workflows": {
      "types": "./dist/workflows.d.ts",
      "import": "./dist/workflows.js",
      "require": "./dist/workflows.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "mdx",
    "mdxld",
    "linked-data",
    "json-ld",
    "parse",
    "stringify"
  ],
  "license": "MIT",
  "dependencies": {
    "arktype": "^2.0.0"
  },
  "peerDependencies": {
    "ai-functions": ">=2.0.0",
    "ai-database": ">=2.0.0",
    "ai-workflows": ">=2.0.0"
  },
  "peerDependenciesMeta": {
    "ai-functions": {
      "optional": true
    },
    "ai-database": {
      "optional": true
    },
    "ai-workflows": {
      "optional": true
    }
  },
  "devDependencies": {
    "tsup": "^8.3.5",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8",
    "ai-functions": "0.4.0",
    "ai-database": "0.2.0",
    "ai-workflows": "2.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ai-primitives/mdx.org.ai",
    "directory": "packages/mdxld"
  },
  "author": "MDX.org.ai",
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:unit": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint src",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist .turbo"
  }
}