UNPKG

twdl

Version:

Downloads image and video tweets from Twitter

77 lines (76 loc) 1.81 kB
{ "name": "twdl", "description": "Downloads image and video tweets from Twitter", "version": "2.12.1", "license": "MIT", "repository": "github:dogancelik/twdl", "author": { "name": "Doğan Çelik", "email": "dogancelik93@gmail.com" }, "homepage": "https://github.com/dogancelik/twdl", "keywords": [ "twitter", "tweet", "image", "video", "downloader" ], "engines": { "node": ">=18" }, "type": "module", "main": "out/index.js", "bin": { "twdl": "out/bin/twdl.js" }, "scripts": { "build": "tsc", "prepare": "npm run build", "prepublishOnly": "npx rimraf out", "test": "mocha", "watch": "npm run prepublishOnly && tsc --watch" }, "dependencies": { "bluebird": "^3.7.2", "chalk": "^5.0.1", "cheerio": "^1.0.0-rc.12", "debug": "^4.3.4", "exiftool-vendored": "^23.0.0", "got": "^12.6.1", "log-symbols": "^5.1.0", "lru-cache": "^7.14.0", "merge-options": "^3.0.4", "mkdirp": "^1.0.4", "puppeteer": "^22.7.1", "replace-ext": "^2.0.0", "tough-cookie": "^5.1.0", "update-notifier": "^7.3.1", "yargs": "^17.5.1" }, "mocha": { "timeout": 10000, "extension": [ "ts" ], "require": "ts-node/register" }, "devDependencies": { "@types/bluebird": "^3.5.36", "@types/chai": "^4.3.3", "@types/cheerio": "^0.22.31", "@types/debug": "^4.1.7", "@types/mocha": "^10.0.6", "@types/node": "^18.7.18", "@types/puppeteer": "^5.4.6", "@types/tough-cookie": "^4.0.2", "@types/yargs": "^17.0.12", "@typescript-eslint/eslint-plugin": "^5.37.0", "@typescript-eslint/parser": "^5.37.0", "chai": "^4.3.6", "eslint": "^8.23.1", "mocha": "^10.0.0", "ts-node": "^10.9.1", "typescript": "^4.8.3" } }