discord-tictactoe
Version:
A modern Discord Bot for playing Tic-Tac-Toe
65 lines (64 loc) • 1.85 kB
JSON
{
"name": "discord-tictactoe",
"version": "4.2.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"
},
"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.21.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/jest": "^30.0.0",
"@types/node": "^18.19.120",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"globals": "^16.3.0",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"replace-in-file": "^8.3.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rimraf coverage dist tmp",
"build": "tsc -p tsconfig.release.json && node lib/replacePaths.mjs",
"build:watch": "tsc -w -p tsconfig.release.json",
"format:check": "prettier --check \"**/**.ts\"",
"format": "prettier --write \"**/**.ts\"",
"lint": "eslint src",
"serve": "node dist/bin/tictactoe.js",
"start": "pnpm run build && pnpm run serve",
"test": "jest --coverage",
"test:watch": "jest --watch",
"release": "pnpm run clean && pnpm run lint && pnpm run test && pnpm run format && pnpm run build"
},
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af"
}