-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.06 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "insta-spider",
"version": "1.0.2",
"description": "",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc --outDir dist/esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"instagram",
"reels",
"scraper",
"downloader",
"node.js",
"typescript",
"npm",
"library",
"instagram-api",
"instagram-scraper"
],
"files": [
"dist",
"README.md"
],
"author": "Shobhit Gupta (@shobhitexe)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/shobhitexe/insta-spider"
},
"dependencies": {
"@types/node": "^20.3.2",
"axios": "^1.4.0",
"https-proxy-agent": "^7.0.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}