-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
63 lines (63 loc) · 1.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "discord-tictactoe",
"version": "4.2.0",
"description": "A modern Discord Bot for playing Tic-Tac-Toe",
"author": "Utarwyn <[email protected]>",
"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.16.2"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^16.18.108",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"replace-in-file": "^8.2.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.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": "[email protected]"
}