discord-tictactoe
Version:
A modern Discord Bot for playing Tic-Tac-Toe
63 lines (62 loc) • 1.66 kB
JSON
{
"name": "discord-tictactoe",
"version": "4.2.0",
"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"
},
"files": [
"config/locales",
"dist/bin",
"dist/src"
],
"repository": {
"type": "git",
"url": "https://github.com/utarwyn/discord-tictactoe"
},
"keywords": [
"discord",
"bot",
"tictactoe",
"game",
"nodejs",
"typescript"
],
"dependencies": {
"discord.js": "^14.12.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^16.11.57",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"replace-in-file": "^7.0.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">= 16.9.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 --check \"**/**.ts\"",
"format": "prettier --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"
}
}