-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 958 Bytes
/
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
{
"name": "instagramautofollower",
"version": "1.0.0",
"description": "Allows users to search a hashtag on their feed, grab the posters primary key which is used to identify their profile uniquely, check their following status and automatically follow them if they are not currently following them.",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeltgray/InstagramAutofollower.git"
},
"keywords": [
"instagram",
"autofollow",
"hashtag",
"follow",
"insta"
],
"author": "Joel Gray",
"license": "MIT",
"bugs": {
"url": "https://github.com/joeltgray/InstagramAutofollower/issues"
},
"homepage": "https://github.com/joeltgray/InstagramAutofollower#readme",
"dependencies": {
"dotenv": "^16.0.3",
"instagram-private-api": "^1.45.3"
},
"engines" : {
"npm" : "9.4.0",
"node" : "19.6.1"
}
}