@vicociv/instaloader 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1664 -0
- package/dist/index.d.ts +1664 -0
- package/dist/index.js +3726 -0
- package/dist/index.mjs +3641 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vicociv/instaloader",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "TypeScript port of instaloader - Download pictures (or videos) along with their captions and other metadata from Instagram.",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:watch": "vitest",
|
|
25
|
+
"lint": "eslint src --ext .ts",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"instagram",
|
|
31
|
+
"instagram-scraper",
|
|
32
|
+
"instagram-client",
|
|
33
|
+
"instagram-feed",
|
|
34
|
+
"downloader",
|
|
35
|
+
"videos",
|
|
36
|
+
"photos",
|
|
37
|
+
"pictures",
|
|
38
|
+
"instagram-user-photos",
|
|
39
|
+
"instagram-photos",
|
|
40
|
+
"instagram-metadata",
|
|
41
|
+
"instagram-downloader",
|
|
42
|
+
"instagram-stories",
|
|
43
|
+
"typescript"
|
|
44
|
+
],
|
|
45
|
+
"author": "",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": ""
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=18.0.0"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "^20.10.0",
|
|
56
|
+
"@types/tough-cookie": "^4.0.5",
|
|
57
|
+
"@types/uuid": "^10.0.0",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^6.13.0",
|
|
59
|
+
"@typescript-eslint/parser": "^6.13.0",
|
|
60
|
+
"eslint": "^8.55.0",
|
|
61
|
+
"tsup": "^8.0.1",
|
|
62
|
+
"typescript": "^5.3.2",
|
|
63
|
+
"vitest": "^1.0.4"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"tough-cookie": "^4.1.3",
|
|
67
|
+
"uuid": "^13.0.0"
|
|
68
|
+
}
|
|
69
|
+
}
|