-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.16 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
{
"name": "instauto",
"version": "10.0.2",
"description": "Instagram automation library written in Node.js",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "exit 0",
"check": "tsc && yarn test",
"watch": "yarn build -w",
"build": "tsc -p tsconfig.build.json",
"prepare": "yarn build",
"version": "mkdir -p .git && npm version --workspaces-update=false --tag-version-prefix='instauto/v'"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "Mikael Finstad",
"email": "mikael@mifi.no",
"url": "https://mifi.no/"
},
"repository": "mifi/SimpleInstaBot",
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"lodash": "^4.18.1",
"user-agents": "^1.1.669"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/lodash": "^4.17.23",
"@types/node": "22",
"@types/user-agents": "^1.0.4",
"dotenv": "^17.2.3",
"puppeteer": "^24.36.1",
"typescript": "~5.9.3"
},
"exports": {
".": {
"import": "./dist/index.js"
}
}
}