-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 949 Bytes
/
package.json
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
{
"name": "cumsocket",
"version": "0.1.0",
"description": "Module based selfbot for Discord",
"main": "build/index.js",
"type": "module",
"scripts": {
"start": "rm -fr build && tsc && clear && npm run run",
"run": "node --no-warnings build/index.js",
"postinstall": "npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/0x7030676e31/cumsocket"
},
"keywords": [
"discord",
"selfbot",
"cumsocket",
"typescript"
],
"author": "0x7030676e31",
"license": "ISC",
"dependencies": {
"chatgpt": "^4.1.1",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"node-fetch": "^3.3.0",
"pg": "^8.8.0",
"ws": "^8.11.0",
"zeromq": "^6.0.0-beta.16"
},
"devDependencies": {
"@types/node-fetch": "^2.6.2",
"@types/pg": "^8.6.5",
"@types/ws": "^8.5.3",
"typescript": "^4.9.4"
},
"engines": {
"node": "19.x"
}
}