-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 2.06 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
{
"name": "flowabot",
"description": "Modular Discord bot with fun features including twitch commands and advanced osu! commands.",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "git pull; npm i && [ ! -f ./config.json ] && npm run config; node index",
"test": "echo \"Error: no test specified\" && exit 1",
"webui": "node renderer/webui.js",
"commands": "node generate-commands-md",
"config": "node generate-config",
"emojis": "node upload-emojis"
},
"author": "LeaPhant",
"repository": {
"type": "git",
"url": "https://github.com/LeaPhant/flowabot.git"
},
"license": "MIT",
"dependencies": {
"@dmzoneill/urban-dictionary": "^3.0.3",
"@twurple/api": "^7.2.1",
"@twurple/auth": "^7.2.1",
"axios": "^0.21.1",
"booba": "^0.0.16",
"bparser-js": "^1.0.2",
"canvas": "^2.11.2",
"chalk": "^4.1.0",
"chart.js": "^2.9.4",
"chartjs-node-canvas": "^3.1.0",
"cheerio": "^1.0.0-rc.6",
"discord.js": "^12.5.3",
"diskusage": "^1.2.0",
"ffmpeg-static": "^4.3.0",
"form-data": "^4.0.0",
"jimp": "^0.16.1",
"lodash": "^4.17.21",
"luxon": "^1.26.0",
"lzma-native": "^7.0.1",
"mathjs": "^9.3.0",
"mysql": "^2.18.1",
"node-emoji": "^1.10.0",
"node-fetch": "^2.6.6",
"node-localstorage": "^2.1.6",
"node-osr": "github:LeaPhant/node-osr",
"object-path": "^0.11.5",
"ojsama": "^2.2.0",
"openweather-apis": "^4.4.2",
"osu-parser": "git+https://github.com/LeaPhant/osu-parser.git",
"readline-sync": "^1.4.10",
"rosu-pp-js": "^2.0.0",
"semver": "^7.3.5",
"table": "^6.7.5",
"tcp-ping": "^0.1.1",
"tz-lookup": "^6.1.25",
"unzipper": "^0.10.11",
"vm2": "^3.9.3"
},
"devDependencies": {
"finalhandler": "^1.3.1",
"polka": "^0.5.2",
"serve-static": "^1.16.2",
"ws": "^8.18.0"
}
}