{
  "name": "cli-alerts",
  "version": "2.0.0",
  "description": "Cross platform CLI Alerts with colors & colored symbols for success, info, warning, error. Works on macOS, Linux, and Windows.",
  "license": "MIT",
  "repository": "ahmadawais/cli-alerts",
  "author": {
    "name": "Ahmad Awais",
    "email": "me@AhmadAwais.com",
    "url": "https://twitter.com/MrAhmadAwais"
  },
  "main": "dist/index.cjs",
  "files": [
    "dist",
    "*.d.ts"
  ],
  "keywords": [
    "cli-alerts",
    "Ahmad Awais",
    "ahmadawais"
  ],
  "devDependencies": {
    "prettier": "^2.0.5",
    "@types/node": "^22.2.0",
    "tsup": "^8.2.4",
    "typescript": "^5.5.4"
  },
  "dependencies": {
    "chalk": "^4.1.0",
    "log-symbols": "^4.0.0"
  },
  "scripts": {
    "test": "node test.js",
    "format": "prettier --write \"./**/*.{js,json}\"",
    "dev": "npm run build -- --watch",
    "build": "tsup index.js --format cjs,esm --dts --sourcemap --clean --minify --shims",
    "prepublishOnly": "npm run build"
  },
  "type": "module",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  }
}
