-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.5 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "extcord",
"version": "0.0.1",
"description": "Discord bot",
"main": "dist/index.js",
"scripts": {
"start": "node dist/extcord.js",
"prepare": "npm run build",
"build": "tsc -b src_modules",
"build:bot": "tsc -b src",
"typedoc": "cd src && typedoc",
"test": "mocha",
"lint": "tslint -p .",
"clear:languages": "rimraf ./languages/en.hjson",
"clear:privileges": "rimraf ./privileges/admin.hjson ./privileges/everyone.hjson ./privileges/host.hjson",
"clear": "npm run clear:languages && npm run clear:privileges"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lasa01/ExtCord.git"
},
"author": "lasa01",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lasa01/ExtCord/issues"
},
"homepage": "https://github.com/lasa01/ExtCord#readme",
"engines": {
"node": ">=16.0.0"
},
"bin": {
"extcord": "./bin/extcord"
},
"files": [
"dist",
"modules",
"bin"
],
"mocha": {
"extension": [
"ts"
],
"spec": "tests/**/*.spec.ts",
"require": "ts-node/register"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.18.0",
"bufferutil": "^4.0.7",
"discord.js": "^14.17.3",
"erlpack": "^0.1.4",
"fs-extra": "^11.2.0",
"hjson": "^3.2.1",
"mysql": "^2.18.1",
"node-fetch": "^2.7.0",
"prism-media": "^1.3.5",
"reflect-metadata": "^0.1.13",
"sodium-native": "^4.0.1",
"sqlite3": "^5.0.2",
"string-format": "^2.0.0",
"tweetnacl": "^1.0.3",
"typeorm": "^0.3.20",
"utf-8-validate": "^6.0.3",
"winston": "^3.3.3",
"yargs": "^17.1.1",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@distube/ytdl-core": "https://codeload.github.com/ToddyTheNoobDud/ytdl-core-stuff/tar.gz/refs/heads/master",
"@distube/ytpl": "^1.2.1",
"@distube/ytsr": "^2.0.4",
"@types/chai": "^4.2.14",
"@types/fs-extra": "^11.0.4",
"@types/hjson": "^2.4.2",
"@types/mocha": "^9.1.0",
"@types/node": "^18.19.70",
"@types/node-fetch": "^2.6.12",
"@types/string-format": "^2.0.0",
"@types/ws": "^8.2.3",
"@types/yargs": "^17.0.2",
"chai": "^4.2.0",
"fastest-levenshtein": "^1.0.16",
"ffmpeg-static": "^5.2.0",
"lru-cache": "^11.0.2",
"mocha": "^9.2.1",
"opusscript": "^0.0.8",
"rimraf": "^3.0.2",
"spotify-uri": "^4.1.0",
"spotify-url-info": "^3.2.18",
"ts-node": "^10.9.2",
"tslint": "^5.20.1",
"typedoc": "^0.27.6",
"typescript": "~5.5.4"
}
}