-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 2.01 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
70
71
72
{
"name": "aethebot",
"version": "1.0.0",
"description": "A Discord chatbot",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit && eslint . --ext .js,.jsx,.ts,.tsx",
"start": "node dist/index.js",
"debug-bot": "nodemon --watch ./dist --inspect=0.0.0.0:9222 --nolazy dist/index.js --bot",
"debug-web": "nodemon --watch ./dist --inspect=0.0.0.0:9223 --nolazy dist/index.js --website",
"build": "tsc"
},
"engines": {
"node": "18.14.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tyrone-sudeium/aethebot.git"
},
"keywords": [
"discord",
"chat",
"bot",
"timezone"
],
"author": "Tyrone Trevorrow",
"license": "MIT",
"bugs": {
"url": "https://github.com/tyrone-sudeium/aethebot/issues"
},
"homepage": "https://github.com/tyrone-sudeium/aethebot#readme",
"dependencies": {
"@discordjs/opus": "^0.9",
"@discordjs/voice": "^0.15.0",
"@napi-rs/canvas": "^0.1",
"@types/ws": "^7.2.1",
"@tyrone-sudeium/napi-gif-encoder": "^0.0.1",
"@xivapi/nodestone": "^0.2.6",
"anchorme": "^1.1.2",
"array-flatten": "^3.0.0",
"chrono-node": "^2.3.1",
"discord.js": "^14",
"emoji-regex": "^9.2.2",
"minimist": "^1.2.6",
"moment-precise-range-plugin": "^1.2.3",
"moment-timezone": "^0.5.11",
"random-number-csprng": "^1.0.2",
"redis": "^3.1.2",
"strict-event-emitter-types": "^2.0.0",
"tweetnacl": "^1.0.3",
"uuid": "^3.3.3",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/moment-timezone": "^0.5.9",
"@types/node": "^18",
"@types/redis": "^2.8.31",
"@types/uuid": "^3.4.5",
"@types/xml2js": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "=2.20.0",
"nodemon": "1.19.3",
"typescript": "^4.9"
},
"resolutions": {
"**/needle": "^2.6.0"
}
}