-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.4 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.4 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
{
"name": "@aman179102/insta-bot",
"version": "1.0.0",
"description": "Automated Instagram meme posting bot that scrapes copyright-safe memes from Pinterest and posts them with intelligent scheduling",
"main": "src/index.js",
"bin": {
"insta-bot": "./bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js run",
"test": "jest",
"lint": "eslint src/ bin/",
"lint:fix": "eslint src/ bin/ --fix",
"format": "prettier --write src/ bin/",
"prepublishOnly": "npm run lint && npm test"
},
"keywords": [
"instagram",
"memes",
"automation",
"bot",
"social-media",
"pinterest",
"scraping",
"cli",
"nodejs",
"puppeteer"
],
"author": "Aman Kumar <amankk179102@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aman179102/Instagram-Automation.git"
},
"bugs": {
"url": "https://github.com/aman179102/Instagram-Automation/issues"
},
"homepage": "https://github.com/aman179102/Instagram-Automation#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.11.0",
"commander": "^12.1.0",
"dotenv": "^17.2.1",
"instagram-private-api": "^1.46.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"eslint": "^9.15.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"prettier": "^3.3.3"
}
}