{
  "name": "barva",
  "version": "1.3.2",
  "description": "A lightweight, tree-shakable library for terminal colors using tagged template literals",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    "types": "./dist/index.d.ts",
    "import": "./dist/index.mjs",
    "require": "./dist/index.js"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "benchmark": "node scripts/performance.mjs",
    "benchmark:all": "yarn benchmark:simple && yarn benchmark:complex && yarn benchmark:recursion && yarn benchmark:size",
    "benchmark:complex": "node scripts/complex-benchmark.mjs",
    "benchmark:recursion": "node scripts/recursion-benchmark.mjs",
    "benchmark:simple": "node --prof scripts/simple-benchmark.mjs",
    "benchmark:size": "node scripts/size-benchmark.mjs",
    "build": "yarn clean && tsup src/index.ts --format cjs,esm --dts --minify",
    "bundle-size": "node scripts/bundle-size.mjs",
    "clean": "rimraf dist",
    "clean:logs": "rimraf isolate-*.log",
    "lint": "eslint src/**/*.ts",
    "major": "yarn preversion && yarn version major && yarn postversion",
    "minor": "yarn preversion && yarn version minor && yarn postversion",
    "patch": "yarn preversion && yarn version patch && yarn postversion",
    "postversion": "git push --tags && yarn npm publish --tag $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
    "pre-commit": "yarn lint && yarn test",
    "prebuild": "yarn lint && yarn test",
    "prepublishOnly": "yarn lint && yarn test && yarn build",
    "preversion": "yarn lint && yarn test",
    "profile": "yarn build && yarn profile:generate && yarn profile:process && yarn clean:logs",
    "profile:generate": "node --prof scripts/profile-barva.mjs",
    "profile:process": "node --prof-process isolate-*.log > profile-output.txt",
    "release": "node ./scripts/release-github.mjs",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch"
  },
  "keywords": [
    "256",
    "ansi",
    "ansi256",
    "barva",
    "chalk",
    "cli",
    "color",
    "colors",
    "colour",
    "colours",
    "command-line",
    "console",
    "formatting",
    "hex",
    "kleur",
    "literal",
    "log",
    "logging",
    "rgb",
    "shell",
    "string",
    "style",
    "styles",
    "tagged",
    "template",
    "terminal",
    "text",
    "truecolor",
    "tty",
    "xterm"
  ],
  "author": "magikMaker",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/magikMaker/barva.git"
  },
  "bugs": {
    "url": "https://github.com/magikMaker/barva/issues"
  },
  "homepage": "https://github.com/magikMaker/barva#readme",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@octokit/rest": "^22.0.1",
    "@types/cli-color": "^2.0.6",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.6.0",
    "chalk5": "npm:chalk@^5.6.2",
    "cli-color": "^2.0.4",
    "esbuild": "^0.28.0",
    "eslint": "^10.2.1",
    "globals": "^17.5.0",
    "jest": "^30.3.0",
    "mitata": "^1.0.34",
    "nanocolors": "^0.2.13",
    "octokit": "^5.0.5",
    "picocolors": "^1.1.1",
    "rimraf": "^6.1.3",
    "ts-jest": "^29.4.9",
    "tsup": "^8.5.1",
    "typescript": "^5.9.2",
    "typescript-eslint": "^8.59.0",
    "yoctocolors": "^2.1.2"
  },
  "engines": {
    "node": ">=12"
  },
  "packageManager": "yarn@4.8.1",
  "sideEffects": false
}
