ultra-igdl 1.0.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/package.json ADDED
@@ -0,0 +1,90 @@
1
+ {
2
+ "name": "ultra-igdl",
3
+ "version": "1.0.0",
4
+ "description": "Production-grade Instagram media extractor for Node.js 20+ — reels, posts, carousels, stories, highlights. Multi-layer parsing, session API, CLI, ESM+CJS.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "sideEffects": false,
10
+ "exports": {
11
+ ".": {
12
+ "import": {
13
+ "types": "./dist/index.d.ts",
14
+ "default": "./dist/index.js"
15
+ },
16
+ "require": {
17
+ "types": "./dist/index.d.cts",
18
+ "default": "./dist/index.cjs"
19
+ }
20
+ },
21
+ "./package.json": "./package.json"
22
+ },
23
+ "bin": {
24
+ "ultra-igdl": "dist/cli/index.cjs"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md",
29
+ "LICENSE"
30
+ ],
31
+ "scripts": {
32
+ "prebuild": "node scripts/sync-version.mjs",
33
+ "build": "tsup",
34
+ "dev": "tsup --watch",
35
+ "test": "vitest run",
36
+ "test:watch": "vitest",
37
+ "test:coverage": "vitest run --coverage",
38
+ "test:stress": "vitest run --config vitest.stress.config.ts",
39
+ "lint": "tsc --noEmit",
40
+ "cli": "node ./dist/cli/index.cjs",
41
+ "prepack": "npm run build",
42
+ "prepublishOnly": "npm run build && npm run test"
43
+ },
44
+ "keywords": [
45
+ "instagram",
46
+ "instagram-downloader",
47
+ "instagram-media",
48
+ "reels",
49
+ "reel-downloader",
50
+ "stories",
51
+ "carousel",
52
+ "sidecar",
53
+ "highlights",
54
+ "media-extractor",
55
+ "undici",
56
+ "typescript",
57
+ "cli"
58
+ ],
59
+ "author": "WH173 5P1D3R",
60
+ "license": "MIT",
61
+ "engines": {
62
+ "node": ">=20.18.1"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public"
66
+ },
67
+ "repository": {
68
+ "type": "git",
69
+ "url": "git+https://github.com/WH173-5P1D3R/ultra-igdl.git"
70
+ },
71
+ "bugs": {
72
+ "url": "https://github.com/WH173-5P1D3R/ultra-igdl/issues"
73
+ },
74
+ "homepage": "https://github.com/WH173-5P1D3R/ultra-igdl#readme",
75
+ "dependencies": {
76
+ "cheerio": "^1.0.0",
77
+ "lru-cache": "^11.0.2",
78
+ "undici": "^7.2.0"
79
+ },
80
+ "devDependencies": {
81
+ "@types/node": "^22.10.5",
82
+ "@vitest/coverage-v8": "^3.0.5",
83
+ "tsup": "^8.3.5",
84
+ "typescript": "^5.7.3",
85
+ "vitest": "^3.0.5"
86
+ },
87
+ "optionalDependencies": {
88
+ "ioredis": "^5.4.2"
89
+ }
90
+ }