{
  "name": "ahmed-discord-tictactoe",
  "version": "3.1.1",
  "description": "A modern Discord Bot for playing Tic-Tac-Toe",
  "author": "Utarwyn <maximemalgorn@gmail.com>",
  "license": "Apache-2.0",
  "main": "dist/src/index.js",
  "bin": {
    "tictactoe": "dist/bin/tictactoe.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/utarwyn/discord-tictactoe"
  },
  "keywords": [
    "discord",
    "bot",
    "tictactoe",
    "game",
    "nodejs",
    "typescript"
  ],
  "dependencies": {
    "discord.js": "^13.10.2"
  },
  "devDependencies": {
    "@types/jest": "^28.1.7",
    "@types/node": "^16.11.52",
    "@typescript-eslint/eslint-plugin": "^5.33.1",
    "@typescript-eslint/parser": "^5.33.1",
    "eslint": "^8.22.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-jest": "^26.8.7",
    "jest": "^28.1.3",
    "prettier": "^2.3.0",
    "replace-in-file": "^6.3.2",
    "rimraf": "^3.0.2",
    "ts-jest": "^28.0.8",
    "typescript": "^4.5.5"
  },
  "engines": {
    "node": ">= 16.6.0"
  },
  "scripts": {
    "clean": "rimraf coverage dist tmp",
    "build": "tsc -p tsconfig.release.json && node lib/replacePaths.js",
    "build:watch": "tsc -w -p tsconfig.release.json",
    "format:check": "prettier --config .prettierrc --list-different \"**/**.ts\"",
    "format": "prettier --config .prettierrc --write \"**/**.ts\"",
    "lint": "eslint . --ext .ts",
    "serve": "node dist/bin/tictactoe.js",
    "start": "yarn build && yarn serve",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "release": "yarn clean && yarn lint && yarn test && yarn format && yarn build"
  }
}
