-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 996 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
{
"name": "spsse-discord-bot",
"version": "0.3.0",
"description": "SPŠSE Discord bot pro školní server",
"main": "index.js",
"repository": "https://github.com/Mapetr/SPSSE-discord-bot.git",
"author": "Petr Mácha <info@mapetr.moe>",
"license": "GPL-3.0-only",
"private": false,
"type": "module",
"dependencies": {
"@discordjs/voice": "^0.13.0",
"@sentry/node": "^7.16.0",
"@sentry/tracing": "^7.16.0",
"bufferutil": "^4.0.7",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"erlpack": "discord/erlpack",
"mongoose": "^6.6.7",
"utf-8-validate": "^5.0.10",
"zlib-sync": "^0.1.7"
},
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"build": "tsc -p ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"discord-api-types": "^0.37.14",
"eslint": "^8.25.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}