-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 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
{
"name": "astrospy",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"discord",
"moderation",
"voice",
"monitoring"
],
"author": "nyzxor",
"license": "MIT",
"description": "Discord voice channel monitoring tool for server moderation",
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.18.0",
"audio-mixer": "^2.1.4",
"discord-rpc": "^4.0.1",
"discord.js": "^14.18.0",
"discord.js-selfbot-v13": "^3.6.0",
"dotenv": "^16.4.7",
"ffmpeg-static": "^5.2.0",
"node-opus": "^0.3.3",
"opusscript": "^0.0.8",
"prism-media": "^1.3.5",
"readline-sync": "^1.4.10",
"sodium-native": "^4.3.2",
"waveheader": "^0.0.2",
"ws": "^8.18.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"pkg": "^5.3.1"
},
"bin": "index.js",
"pkg": {
"scripts": [
"index.js",
"node_modules/discord.js-selfbot-v13/**/*.js"
],
"assets": [
".env"
],
"targets": [
"node16-linux-x64",
"node16-win-x64",
"node16-macos-x64"
],
"outputPath": "dist"
}
}