{
  "name": "@japa/errors-printer",
  "version": "3.0.4",
  "description": "Reusable package to pretty print test runner summary errors",
  "main": "build/index.js",
  "type": "module",
  "files": [
    "build"
  ],
  "exports": {
    ".": "./build/index.js"
  },
  "engines": {
    "node": ">=18.16.0"
  },
  "scripts": {
    "pretest": "npm run lint",
    "test": "echo 'no tests'",
    "clean": "del build",
    "typecheck": "tsc --noEmit",
    "precompile": "npm run lint && npm run clean",
    "compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
    "build": "npm run compile",
    "release": "np",
    "version": "npm run build",
    "prepublishOnly": "npm run build",
    "lint": "eslint . --ext=.ts",
    "format": "prettier --write .",
    "sync-labels": "github-label-sync --labels .github/labels.json japa/errors-printer"
  },
  "keywords": [
    "japa",
    "test",
    "printer"
  ],
  "author": "virk,japa",
  "license": "MIT",
  "devDependencies": {
    "@adonisjs/eslint-config": "^1.3.0",
    "@adonisjs/prettier-config": "^1.3.0",
    "@adonisjs/tsconfig": "^1.3.0",
    "@commitlint/cli": "^19.2.1",
    "@commitlint/config-conventional": "^19.1.0",
    "@swc/core": "^1.4.11",
    "@types/node": "^20.11.30",
    "del-cli": "^5.1.0",
    "eslint": "^8.57.0",
    "github-label-sync": "^2.3.1",
    "husky": "^9.0.11",
    "np": "^10.0.2",
    "prettier": "^3.2.5",
    "tsup": "^8.0.2",
    "typescript": "^5.4.3"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/japa/errors-printer.git"
  },
  "bugs": {
    "url": "https://github.com/japa/errors-printer/issues"
  },
  "homepage": "https://github.com/japa/errors-printer#readme",
  "dependencies": {
    "@poppinss/colors": "^4.1.3",
    "jest-diff": "^29.7.0",
    "supports-color": "^9.4.0",
    "youch": "^3.3.3",
    "youch-terminal": "^2.2.3"
  },
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "np": {
    "message": "chore(release): %s",
    "tag": "latest",
    "branch": "main",
    "anyBranch": false
  },
  "eslintConfig": {
    "extends": "@adonisjs/eslint-config/package"
  },
  "prettier": "@adonisjs/prettier-config",
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "tsup": {
    "entry": [
      "./index.ts"
    ],
    "outDir": "./build",
    "clean": true,
    "format": "esm",
    "dts": false,
    "sourcemap": true,
    "target": "esnext"
  }
}
