forked from aizintel/AUTO
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.56 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
{
"name": "auto-messenger-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^18.0.6",
"axios": "^1.6.5",
"bluebird": "^2.11.0",
"body-parser": "^1.20.2",
"chalk": "^3.0.0",
"cheerio": "^0.22.0",
"child_process": "^1.0.2",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"hercai": "^12.2.0",
"https-proxy-agent": "^4.0.0",
"mqtt": "^3.0.0",
"node-cron": "^3.0.3",
"node-fetch": "^3.2.6",
"npmlog": "^1.2.0",
"pastebin-api": "^7.0.0",
"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
}
}
}