-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 KB
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
{
"name": "stackoverbot",
"version": "1.0.0",
"private": false,
"description": "A Node.js automation tool for Stack Overflow that performs automated voting, spell-checking, and post editing with Puppeteer-based web automation and scoring system for content quality improvement.",
"repository": {
"type": "git",
"url": "git://github.com/orassayag/stackoverbot.git"
},
"keywords": [
"nodejs",
"stackoverflow",
"automation",
"bot",
"puppeteer",
"web-scraping",
"voting",
"spell-checker",
"content-quality",
"web-automation",
"scraper",
"stack-overflow-api"
],
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"vote": "node src/scripts/vote.js",
"fix": "node src/scripts/fix.js",
"daily": "node src/scripts/daily.js",
"backup": "node src/scripts/backup.js"
},
"author": "Or Assayag <orassayag@gmail.com>",
"contributors": [
{
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
}
],
"license": "MIT",
"dependencies": {
"puppeteer": "^13.0.0"
},
"devDependencies": {},
"engines": {
"node": ">=14.0.0"
}
}