-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
73 lines (73 loc) · 1.69 KB
/
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
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
{
"name": "YetAnotherFBBot",
"version": "3.1.3 - Lite",
"description": "Lite Version of YAFB",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^18.0.6",
"axios": "^1.6.5",
"bluebird": "^2.11.0",
"body-parser": "^1.20.2",
"chalk": "^4.1.0",
"cheerio": "^0.22.0",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"gradient-string": "^2.0.2",
"https-proxy-agent": "^4.0.0",
"knights-canvas": "^1.3.7-a",
"moment-timezone": "^0.5.45",
"mqtt": "^3.0.0",
"@duyhau/fca-unofficial": "^1.0.10",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"node-fetch": "^3.2.6",
"npmlog": "^1.2.0",
"pastebin-api": "^7.0.0",
"dekuai": "^1.0.5",
"pidusage": "^3.0.2",
"request": "^2.53.0",
"websocket-stream": "^5.5.0",
"yt-search": "^2.10.4",
"ytdl-core": "^4.11.4"
},
"devDependencies": {
"eslint": "^7.5.0",
"mocha": "^7.0.1",
"prettier": "^1.11.1"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 13
},
"rules": {
"no-prototype-builtins": 0,
"no-unused-vars": 1,
"comma-dangle": 1,
"no-redeclare": 0,
"prefer-const": 1,
"no-useless-escape": 0,
"no-mixed-spaces-and-tabs": 0,
"semi": 1,
"no-useless-catch": 0,
"no-empty": 0,
"use-isnan": 0,
"no-extra-semi": 1,
"no-async-promise-executor": 0,
"no-unreachable": 1,
"valid-typeof": 0,
"no-case-declarations": 0
}
}
}