-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "ayaka-tictactoe",
"version": "0.1.0",
"description": "A tictactoe discord bot",
"main": "dist/index.js",
"engines": {
"node": ">=16.6.0"
},
"scripts": {
"start": "node .",
"lint": "eslint --ext .ts src",
"build": "rimraf dist && tsc",
"test": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azusfin/ayaka-tictactoe.git"
},
"author": "Azusfin",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Azusfin/ayaka-tictactoe/issues"
},
"homepage": "https://github.com/Azusfin/ayaka-tictactoe#readme",
"dependencies": {
"@azusfin/eslint-config": "^1.2.1",
"@discordjs/builders": "^0.11.0",
"@sapphire/decorators": "^3.1.4",
"@sapphire/framework": "^3.0.0-next.506fd58.0",
"@sapphire/plugin-logger": "^2.1.1",
"aoi.mongo": "^0.1.1",
"canvas": "^2.8.0",
"canvas-constructor": "^5.0.1",
"discord.js": "^13.5.1",
"dotenv": "^10.0.0",
"humanize-duration": "^3.27.1",
"mongodb": "^4.3.0",
"tic-tac-toe-minimax-engine": "^1.0.8"
},
"devDependencies": {
"@types/humanize-duration": "^3.27.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
}
}