-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.7 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
64
65
66
67
68
69
{
"name": "megabot",
"version": "0.1.0",
"type": "module",
"description": "Modular bot for discord server.",
"main": "./build/main.js",
"types": "./build/main.d.ts",
"scripts": {
"lint": "eslint .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsc --build src/tsconfig.build.json",
"watch": "tsc --watch --project src/tsconfig.build.json",
"start": "node -r source-map-support/register build/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/irbyk/megabot.git"
},
"engines": {
"node": ">=16.9.0"
},
"moduleDirectories": [
"node_modules",
"src"
],
"keywords": [
"Discord",
"Discord.js",
"Bot",
"Modular"
],
"author": "irbyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/irbyk/megabot/issues"
},
"homepage": "https://github.com/irbyk/megabot#readme",
"devDependencies": {
"@types/jest": "*",
"@types/node": "*",
"@types/uuid": "*",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"jasmine": "^4.2.1",
"jest": "*",
"source-map-support": "*",
"ts-jest": "^28.0.5",
"ts-node": "*",
"typescript": "*"
},
"dependencies": {
"@discordjs/builders": "*",
"@discordjs/opus": "^0.8.0",
"@discordjs/rest": "*",
"@discordjs/voice": "*",
"bufferutil": "^4.0.6",
"discord-api-types": "*",
"discord.js": "^14.3.0",
"erlpack": "github:discord/erlpack",
"fast-xml-parser": "*",
"ffmpeg-static": "*",
"libsodium-wrappers": "*",
"node-fetch": "*",
"utf-8-validate": "^5.0.9",
"uuid": "*",
"zlib-sync": "^0.1.7"
}
}