-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 KB
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
73
74
75
{
"name": "discord-bot",
"version": "1.0.0",
"description": "homebrew discord bot",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:clean": "rm -rf dist/ && npm run build",
"dev": " npm run build && NODE_OPTIONS=--enable-source-maps node dist/index.js",
"dev:debug": "npm run dev debug tty",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"test": "NODE_ENV=test jest",
"cmd:reg": "npm run build && node dist/deploy-commands.js -- noRun",
"cmd:dmp": "node ./scripts/dump-commands.js",
"docs:dev": "npm run cmd:dmp && npm run dev:gen --prefix ./docs",
"docs:build": "npm run build --prefix ./docs",
"docs:deploy": "sh ./scripts/docs-deploy.sh"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/express": "^4.17.13",
"@types/md5": "^2.3.1",
"@types/node": "^17.0.5",
"@types/sharp": "^0.29.0",
"@types/terminal-kit": "^1.28.4",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"prettier": "^2.3.2",
"ts-jest": "^27.1.2",
"typescript": "^4.4.2"
},
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@discordjs/opus": "github:discordjs/opus",
"@discordjs/rest": "^0.4.1",
"@discordjs/voice": "^0.7.4",
"axios": "^0.21.4",
"chalk": "^4.1.2",
"common-tags": "^1.8.2",
"dargs": "^7.0.0",
"discord-api-types": "^0.33.0",
"discord.js": "^13.7.0",
"dotenv": "^10.0.0",
"execa": "^5.1.1",
"express": "^4.17.1",
"fast-average-color-node": "^1.0.3",
"ffmpeg-static": "^4.4.0",
"form-data": "^4.0.0",
"fuse.js": "^6.4.6",
"fuzzy": "^0.1.3",
"libsodium-wrappers": "^0.7.9",
"md5": "^2.3.0",
"mongodb": "^4.1.3",
"music-metadata": "^7.11.4",
"opusscript": "^0.0.8",
"programmatic-repl": "^1.1.4",
"serverline": "^1.5.0",
"sharp": "^0.29.1",
"terminal-kit": "^2.1.6",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"yaml": "2.0.0-9",
"ytdl-core": "^4.9.1",
"ytpl": "^2.2.3",
"ytsr": "^3.5.3"
}
}