-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 775 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 775 Bytes
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
{
"name": "orbiscast",
"version": "1.2.0",
"description": "Orbiscast project",
"main": "index.js",
"module": "index.ts",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start:prod": "node dist/index.js"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/xml2js": "^0.4.14",
"tsx": "^4.19.2",
"typescript": "^5.8.2"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@dank074/discord-video-stream": "^5.0.2",
"@discordjs/voice": "^0.18.0",
"axios": "^1.13.2",
"discord.js": "^14.25.1",
"discord.js-selfbot-v13": "^3.7.1",
"dotenv": "^16.6.1",
"lowdb": "^7.0.1",
"winston": "^3.19.0",
"xml2js": "^0.6.2"
}
}