This repository was archived by the owner on Mar 11, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.42 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
{
"name": "instauto",
"version": "10.0.1",
"description": "Instagram automation library written in Node.js",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "exit 0",
"check": "tsc && yarn lint && yarn test",
"build": "tsc -p tsconfig.build.json",
"prepare": "yarn build"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"author": "Mikael Finstad <finstaden@gmail.com>",
"repository": "mifi/instauto",
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"lodash": "^4.17.23",
"user-agents": "^1.1.669"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/lodash": "^4.17.23",
"@types/node": "22",
"@types/user-agents": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"dotenv": "^17.2.3",
"eslint": "^8.57.1",
"eslint-config-mifi": "^0.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unicorn": "56",
"puppeteer": "^24.36.1",
"typescript": "~5.9.3"
},
"packageManager": "yarn@4.12.0",
"exports": {
".": {
"import": "./dist/index.js"
}
}
}