-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.86 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
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
75
76
{
"name": "stackoverbot",
"version": "1.0.0",
"private": false,
"description": "StackOverBot is a Node.js automation tool for Stack Overflow using Puppeteer. Built for educational purposes, it automates voting, spell-checking, and post editing. It includes tag-based question selection, mistake detection, scoring, structured logging, and rate-limited workflows and include logs",
"keywords": [
"nodejs",
"stackoverbot",
"automation",
"bot",
"puppeteer",
"web-scraping",
"voting",
"spell-checker",
"content-quality",
"web-automation",
"scraper",
"stack-overflow-api"
],
"homepage": "https://github.com/orassayag/stackoverbot#readme",
"bugs": {
"url": "https://github.com/orassayag/stackoverbot/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/orassayag/stackoverbot.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/orassayag"
},
"license": "MIT",
"author": {
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
},
"contributors": [
{
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
}
],
"type": "commonjs",
"main": "src/index.js",
"files": [
".github",
".vscode",
"misc",
"src",
".eslintrc",
".gitignore",
".prettierrc",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"INSTRUCTIONS.md",
"LICENSE",
"package.json",
"README.md",
"SECURITY.md"
],
"scripts": {
"backup": "node src/scripts/backup.js",
"daily": "node src/scripts/daily.js",
"fix": "node src/scripts/fix.js",
"start": "node src/index.js",
"vote": "node src/scripts/vote.js"
},
"dependencies": {},
"devDependencies": {},
"engines": {
"node": ">=14.0.0"
}
}