-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "sudo",
"version": "1.0.0",
"description": "gooner bot, frfr",
"license": "MIT",
"author": "rokybeast",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"build:tee": "g++ src/lib/tee.cpp -o src/lib/tee",
"build:reboot": "g++ src/lib/reboot.cpp -o src/lib/reboot",
"build:exec": "g++ src/lib/exec.cpp -o src/lib/exec",
"build:lib": "npm run build:tee && npm run build:reboot && npm run build:exec",
"prestart": "npm run build:lib",
"predev": "npm run build:lib",
"build": "tsc",
"start": "FORCE_COLOR=1 node dist/index.js 2>&1 | src/lib/tee",
"dev": "FORCE_COLOR=1 npx tsx watch src/index.ts 2>&1 | src/lib/tee",
"test": "echo No Tests"
},
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.19.0",
"@napi-rs/canvas": "^0.1.90",
"@snazzah/davey": "^0.1.9",
"@types/node-fetch": "^2.6.13",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"colorthief": "^2.6.0",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"get-pixels": "^3.3.3",
"gif-frames": "^1.0.1",
"gifencoder": "^2.0.1",
"node-fetch": "^2.7.0",
"sodium-native": "^5.0.10",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@types/gifencoder": "^2.0.3",
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}