{
  "name": "markdansi",
  "version": "0.3.1",
  "description": "Tiny dependency-light markdown to ANSI converter.",
  "keywords": [
    "ansi",
    "cli",
    "markdown",
    "terminal"
  ],
  "homepage": "https://github.com/steipete/Markdansi#readme",
  "bugs": {
    "url": "https://github.com/steipete/Markdansi/issues"
  },
  "license": "MIT",
  "author": "Peter Steinberger",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/steipete/Markdansi.git"
  },
  "bin": {
    "markdansi": "dist/cli.js"
  },
  "files": [
    "dist",
    "README.md",
    "docs/spec.md",
    "package.json",
    "tsconfig.json"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./cli": "./dist/cli.js"
  },
  "scripts": {
    "build": "pnpm lint && pnpm typecheck && pnpm test && pnpm compile",
    "clean": "rm -rf dist",
    "format": "oxfmt --write .",
    "format:check": "oxfmt --check .",
    "lint": "rm -rf dist coverage && pnpm format:check && oxlint --deny-warnings src test",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "types": "tsc -p tsconfig.json --emitDeclarationOnly",
    "compile": "tsc -p tsconfig.json",
    "prepare": "pnpm compile",
    "markdansi": "tsx src/cli.ts"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "decode-named-character-reference": "^1.3.0",
    "marked": "^18.0.5",
    "slice-ansi": "^9.0.0",
    "string-width": "^8.2.1",
    "strip-ansi": "^7.2.0",
    "supports-hyperlinks": "^4.4.0"
  },
  "devDependencies": {
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^4.1.5",
    "oxfmt": "^0.47.0",
    "oxlint": "^1.62.0",
    "tsx": "^4.21.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  },
  "engines": {
    "node": ">=22"
  }
}
