reelflow
Version:
Elegant and powerful Instagram video downloader for seamless content extraction
81 lines • 1.94 kB
JSON
{
"name": "reelflow",
"version": "5.6.5",
"description": "Elegant and powerful Instagram video downloader for seamless content extraction",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.cjs"
},
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
}
}
},
"typesVersions": {
"*": {
"*": [
"./dist/types/index.d.ts"
]
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "npm run build:all",
"build:all": "npm run build:types && npm run build:cjs && npm run build:esm",
"build:types": "tsc -p tsconfig.types.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node scripts/fix-cjs-imports.js",
"build:esm": "tsc -p tsconfig.json",
"test": "jest",
"prepare": "npm run build"
},
"sideEffects": false,
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code3-dev/reelflow.git"
},
"homepage": "https://github.com/code3-dev/reelflow#readme",
"bugs": {
"url": "https://github.com/code3-dev/reelflow/issues"
},
"keywords": [
"instagram",
"downloader",
"video",
"reels",
"typescript",
"social-media",
"media-download",
"content-extraction"
],
"author": "Hossein Pira",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3",
"jest": "^29.7.0",
"@types/jest": "^29.5.12",
"ts-jest": "^29.1.2",
"rimraf": "^5.0.5"
}
}