{
  "name": "@guardian/prettier",
  "version": "11.0.0",
  "description": "Prettier config for Guardian JavaScript & TypeScript projects",
  "repository": {
    "url": "https://github.com/guardian/csnx",
    "directory": "libs/@guardian/prettier"
  },
  "main": "index.js",
  "files": [
    "index.d.ts"
  ],
  "devDependencies": {
    "eslint": "9.39.1",
    "prettier": "3.8.0",
    "tslib": "2.8.1",
    "wireit": "0.14.12",
    "@guardian/eslint-config": "16.0.0"
  },
  "peerDependencies": {
    "prettier": "^3.7.4",
    "tslib": "^2.8.1"
  },
  "wireit": {
    "fix": {
      "command": "eslint --cache --color . --fix",
      "files": [
        "**",
        "../../../.eslint*",
        "!.eslintcache"
      ],
      "clean": false,
      "output": [
        "."
      ]
    },
    "lint": {
      "command": "eslint --cache --color .",
      "files": [
        "**",
        "../../../.eslint*",
        "!.eslintcache"
      ],
      "output": []
    },
    "tsc": {
      "command": "tsc --pretty",
      "files": [
        "**",
        "tsconfig.json",
        "../tsconfig/tsconfig.json",
        "../../../@types/**",
        "../../../tsconfig.base.json",
        "!(dist)/**",
        "!.eslintcache"
      ],
      "output": []
    }
  },
  "scripts": {
    "fix": "wireit",
    "lint": "wireit",
    "tsc": "wireit"
  }
}