{
  "name": "regex-colorizer",
  "version": "1.0.2",
  "description": "Highlight regex syntax",
  "homepage": "https://slevithan.github.io/regex-colorizer/demo/",
  "author": "Steven Levithan",
  "license": "MIT",
  "type": "module",
  "exports": "./src/index.js",
  "browser": "./dist/regex-colorizer.min.js",
  "files": [
    "dist",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/slevithan/regex-colorizer.git"
  },
  "keywords": [
    "regex",
    "regexp",
    "syntax-highlighting"
  ],
  "devDependencies": {
    "esbuild": "^0.25.4",
    "rimraf": "^6.0.1"
  },
  "scripts": {
    "prebuild": "rimraf --glob dist/*",
    "build": "esbuild src/index.js --bundle --minify --outfile=dist/regex-colorizer.min.js --global-name=RegexColorizer",
    "test": "echo \"Error: no test specified\" && exit 1"
  }
}