forked from surftimer/SurfTimer-Discord-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1007 Bytes
/
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
{
"name": "surftimer-discord-bot",
"version": "1.0.0",
"description": "A Discord bot for the SurfTimer plugin for CS:GO.",
"main": "./dist/main.js",
"scripts": {
"start": "node ./dist/main.js",
"watch": "tsc -b --watch",
"build": "prisma generate && tsc -b",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"npm": ">=8.1.2",
"node": ">=16.13.2"
},
"author": "Sarrus",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@discordjs/opus": "^0.7.0",
"@discordjs/rest": "^0.2.0-canary.0",
"@j4ckofalltrades/steam-webapi-ts": "^1.0.1",
"axios": "^0.25.0",
"discord-api-types": "^0.26.1",
"discord.js": "^13.6.0",
"dotenv": "^14.2.0",
"steamid": "^2.0.0",
"steamid-resolver": "^1.2.2"
},
"devDependencies": {
"prisma": "^3.8.1",
"@prisma/client": "^3.8.1",
"@types/node": "16.11.19",
"ts-loader": "^9.2.6",
"ts-node": "10.4.0",
"typescript": "^4.5.4"
}
}