-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "slippistatsbot",
"version": "0.1.0",
"description": "Discord bot that analyses Slippi replay files and returns game stats.",
"main": "build/client.js",
"scripts": {
"build": "tsc",
"begin": "node build/client.js",
"dev": "ts-node src/client.ts",
"start": "npm run build && npm run begin",
"clean": "rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shrianshChari/SlippiStatsBot.git"
},
"keywords": [
"discordx",
"discord.ts",
"discord.js",
"bot",
"discord",
"typescript"
],
"author": "Shriansh Chari",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/shrianshChari/SlippiStatsBot/issues"
},
"homepage": "https://github.com/shrianshChari/SlippiStatsBot#readme",
"devDependencies": {
"prettier": "^2.7.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@discordx/importer": "^1.1.10",
"@discordx/utilities": "^5.0.0",
"@slippi/slippi-js": "^6.3.0",
"@types/node": "^18.7.16",
"axios": "^0.27.2",
"discord.js": "^14.3.0",
"discordx": "^11.1.12",
"reflect-metadata": "^0.1.13",
"table": "^6.8.0",
"ts-dotenv": "^0.8.3"
}
}