{
  "name": "@discordjs/formatters",
  "version": "0.2.0",
  "description": "A set of functions to format strings for Discord.",
  "scripts": {
    "test": "vitest run",
    "build": "tsup",
    "build:docs": "tsc -p tsconfig.docs.json",
    "lint": "prettier --check . && cross-env TIMING=1 eslint src __tests__ --ext .mjs,.js,.ts --format=pretty",
    "format": "prettier --write . && cross-env TIMING=1 eslint src __tests__ --ext .mjs,.js,.ts --fix --format=pretty",
    "docs": "yarn build:docs && api-extractor run --local",
    "prepack": "yarn build && yarn lint",
    "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/formatters/*'",
    "release": "cliff-jumper"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "typings": "./dist/index.d.ts",
  "exports": {
    "import": "./dist/index.mjs",
    "require": "./dist/index.js",
    "types": "./dist/index.d.ts"
  },
  "directories": {
    "lib": "src",
    "test": "__tests__"
  },
  "files": [
    "dist"
  ],
  "contributors": [
    "Crawl <icrawltogo@gmail.com>",
    "SpaceEEC <spaceeec@yahoo.com>",
    "Vlad Frangu <kingdgrizzle@gmail.com>",
    "Aura Román <kyradiscord@gmail.com>"
  ],
  "license": "Apache-2.0",
  "keywords": [],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/discordjs/discord.js.git"
  },
  "bugs": {
    "url": "https://github.com/discordjs/discord.js/issues"
  },
  "homepage": "https://discord.js.org",
  "dependencies": {
    "discord-api-types": "^0.37.35"
  },
  "devDependencies": {
    "@favware/cliff-jumper": "^1.10.0",
    "@microsoft/api-extractor": "^7.34.4",
    "@types/node": "16.18.13",
    "@vitest/coverage-c8": "^0.29.1",
    "cross-env": "^7.0.3",
    "eslint": "^8.35.0",
    "eslint-config-neon": "^0.1.40",
    "eslint-formatter-pretty": "^4.1.0",
    "prettier": "^2.8.4",
    "tsup": "^6.6.3",
    "typescript": "^4.9.5",
    "vitest": "^0.29.1"
  },
  "engines": {
    "node": ">=16.9.0"
  },
  "publishConfig": {
    "access": "public"
  }
}