{
  "name": "metalsmith-prism",
  "version": "5.0.7",
  "description": "Syntax highlighting for Metalsmith HTML templates using Prism.js",
  "type": "module",
  "main": "./lib/index.cjs",
  "module": "./lib/index.js",
  "exports": {
    "import": "./lib/index.js",
    "require": "./lib/index.cjs",
    "default": "./lib/index.js"
  },
  "engines": {
    "node": ">= 18.0.0"
  },
  "scripts": {
    "build": "microbundle --entry src/index.js --output lib/index.js --target node -f esm,cjs --strict --generateTypes=false",
    "changelog": "auto-changelog -u --commit-limit false --ignore-commit-pattern '^((dev|chore|ci):|Release)'",
    "coverage": "c8 --include=src/**/*.js --reporter=lcov --reporter=text-summary mocha 'test/index.js' 'test/cjs.test.cjs' 'test/comprehensive.mjs' 'test/additional.mjs' -t 15000",
    "format": "prettier --write \"**/*.{yml,md,js,json}\"",
    "format:check": "prettier --list-different \"**/*.{yml,md,js,json}\"",
    "lint": "eslint --fix .",
    "lint:check": "eslint --fix-dry-run .",
    "prepublishOnly": "npm run build",
    "release:patch": "./scripts/release.sh patch --ci",
    "release:minor": "./scripts/release.sh minor --ci",
    "release:major": "./scripts/release.sh major --ci",
    "release:check": "npm run lint:check && npm run build && release-it --dry-run",
    "test": "c8 --include=src/**/*.js mocha 'test/index.js' 'test/cjs.test.cjs' 'test/comprehensive.mjs' 'test/additional.mjs' -t 15000",
    "test:coverage": "c8 npm test",
    "test:unit": "mocha 'test/unit/**/*.js' -t 5000",
    "test:esm": "c8 --include=src/**/*.js mocha 'test/index.js' 'test/comprehensive.mjs' 'test/additional.mjs' -t 15000",
    "test:cjs": "c8 --include=src/**/*.js mocha test/cjs.test.cjs -t 15000",
    "depcheck": "depcheck"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wernerglinka/metalsmith-prism"
  },
  "keywords": [
    "metalsmith",
    "metalsmith-plugin",
    "prismjs",
    "syntax",
    "highlighting"
  ],
  "files": [
    "lib",
    "README.md",
    "LICENSE"
  ],
  "author": "Werner Glinka <werner@glinka.co>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/wernerglinka/metalsmith-prism/issues"
  },
  "homepage": "https://github.com/wernerglinka/metalsmith-prism",
  "dependencies": {
    "cheerio": "1.1.2",
    "he": "^1.2.0",
    "metalsmith": "^2.5.0",
    "prismjs": "^1.30.0"
  },
  "devDependencies": {
    "auto-changelog": "^2.5.0",
    "c8": "^10.1.3",
    "eslint": "9.39.2",
    "eslint-config-prettier": "10.1.8",
    "eslint-plugin-prettier": "5.5.5",
    "globals": "17.0.0",
    "microbundle": "^0.15.1",
    "mocha": "11.7.5",
    "prettier": "3.8.0",
    "release-it": "19.2.3"
  },
  "peerDependencies": {
    "metalsmith": "^2.5.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
