-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
74
{
"name": "snoopbot-v2",
"version": "0.0.1",
"description": "A facebook chatbot made using NodeJS and Unofficial Facebook Chat API",
"main": "src/index.ts",
"bin": {
"@snoopycodex/snoopbot": "build/snoopbot/cli/snoopbot-cli.js",
"snoopbot": "build/snoopbot/cli/snoopbot-cli.js"
},
"os": [
"!android",
"!ios"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint .",
"fix": "npx eslint . --fix",
"build": "npm run lint && npx rimraf ./build && tsc --build --force && npm link",
"start": "npm run build && node build/index.js"
},
"keywords": [
"chatbot",
"facebook-chat-bot",
"nodejs",
"facebook-chat-api"
],
"author": "SnoopyCodeX",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"rimraf": "^5.0.5",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@commander-js/extra-typings": "^11.1.0",
"@shortcm/qr-image": "^9.0.4",
"@types/cli-progress": "^3.11.5",
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.202",
"@types/node-cron": "^3.0.11",
"ansi-colors": "^4.1.3",
"axios": "^1.6.0",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^11.1.0",
"cryptr": "^6.3.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fca-unofficial": "^1.3.10",
"figlet": "^1.7.0",
"googlethis": "^1.8.0",
"got": "^13.0.0",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"module-alias": "^2.2.3",
"node": "^18.13.0",
"node-cron": "^3.0.3",
"npm": "^9.5.1",
"puppeteer": "^21.4.1",
"sharp": "^0.32.6",
"youtubei.js": "^7.0.0"
},
"_moduleAliases": {
"@": "build",
"@commands": "build/commands",
"@events": "build/events",
"@middlewares": "build/middlewares",
"@snoopbot": "build/snoopbot"
}
}