{
  "name": "ts-syntax-highlighter",
  "type": "module",
  "version": "0.2.1",
  "description": "Performant & minimal syntax highlighter.",
  "author": "Chris Breuer <chris@stacksjs.org>",
  "license": "MIT",
  "homepage": "https://github.com/stacksjs/ts-syntax-highlighter#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stacksjs/ts-syntax-highlighter.git"
  },
  "bugs": {
    "url": "https://github.com/stacksjs/ts-syntax-highlighter/issues"
  },
  "keywords": [
    "syntax-highlighter",
    "torchlight",
    "shiki",
    "typescript",
    "javascript",
    "cli",
    "library",
    "ts-syntax-highlighter",
    "code-blocks"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./*": {
      "import": "./dist/*"
    }
  },
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "ts-syntax-highlighter": "./dist/bin/cli.js"
  },
  "files": [
    "README.md",
    "dist"
  ],
  "scripts": {
    "build": "bun --bun build.ts && bun run compile",
    "compile": "bun build ./bin/cli.ts --compile --minify --outfile bin/syntax",
    "compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64",
    "compile:linux-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-x64 --outfile bin/syntax-linux-x64",
    "compile:linux-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-arm64 --outfile bin/syntax-linux-arm64",
    "compile:windows-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile bin/syntax-windows-x64.exe",
    "compile:darwin-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile bin/syntax-darwin-x64",
    "compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile bin/syntax-darwin-arm64",
    "zip": "bun run zip:all",
    "zip:all": "bun run zip:linux-x64 && bun run zip:linux-arm64 && bun run zip:windows-x64 && bun run zip:darwin-x64 && bun run zip:darwin-arm64",
    "zip:linux-x64": "zip -j bin/syntax-linux-x64.zip bin/syntax-linux-x64",
    "zip:linux-arm64": "zip -j bin/syntax-linux-arm64.zip bin/syntax-linux-arm64",
    "zip:windows-x64": "zip -j bin/syntax-windows-x64.zip bin/syntax-windows-x64.exe",
    "zip:darwin-x64": "zip -j bin/syntax-darwin-x64.zip bin/syntax-darwin-x64",
    "zip:darwin-arm64": "zip -j bin/syntax-darwin-arm64.zip bin/syntax-darwin-arm64",
    "lint": "bunx --bun eslint .",
    "lint:fix": "bunx --bun eslint . --fix",
    "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
    "changelog": "bunx changelogen --output CHANGELOG.md",
    "prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip",
    "release": "bun run changelog && bunx bumpp package.json --all",
    "test": "bun test"
  },
  "devDependencies": {
    "@stacksjs/clapp": "^0.2.0",
    "bunfig": "^0.15.0"
  },
  "lint-staged": {
    "*.{js,ts}": "bunx --bun eslint . --fix"
  },
  "workspaces": [
    "packages/*"
  ]
}
