{
  "name": "cosmetic",
  "version": "1.5.3",
  "description": "Chainable ANSI color and style encoding for Node.js terminals",
  "keywords": [
    "ansi",
    "chainable",
    "cli",
    "color",
    "console",
    "terminal",
    "styles",
    "xterm"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jayrdeaton/Cosmetic.git"
  },
  "license": "MIT",
  "author": "Jay Deaton",
  "sideEffects": false,
  "type": "commonjs",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "clean": "rm -rf dist coverage",
    "coverage": "jest --coverage",
    "fix": "eslint . --fix",
    "lint": "eslint .",
    "prepare": "npm run build",
    "release": "git push --follow-tags",
    "release:major": "npm version major && npm run release",
    "release:minor": "npm version minor && npm run release",
    "release:patch": "npm version patch && npm run release",
    "test": "jest",
    "typecheck": "tsc --noEmit",
    "verify": "npm run lint && npm test && npm run typecheck && npm run build",
    "preversion": "npm run verify",
    "watch": "jest --watchAll"
  },
  "prettier": "@infinitetoken/eslint-config/prettier",
  "devDependencies": {
    "@infinitetoken/eslint-config": "^0.1.7",
    "@infinitetoken/jest-config": "^0.1.4",
    "@infinitetoken/tsconfig": "^0.3.0",
    "@types/jest": "^30.0.0",
    "eslint": "^10.4.1",
    "jest": "^30.4.2",
    "prettier": "^3.8.3",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3"
  }
}
