UNPKG

itch-dl

Version:

Bulk download games from itch.io - TypeScript implementation

76 lines (75 loc) 2.31 kB
{ "name": "itch-dl", "version": "0.6.6", "description": "Bulk download games from itch.io - TypeScript implementation", "main": "build/src/index.js", "scripts": { "build": "tsc", "start": "node build/src/index.js", "test": "npm run build && node --test build/tests/test-config.js build/tests/test-downloader.js build/tests/test-handlers.js build/tests/test-infobox.js build/tests/test-keys.js build/tests/test-utils.js", "itch-dl": "node build/src/index.js", "clean": "rm -rf build", "prepare": "npm run build", "lint": "eslint . --ext .ts --fix", "lint:check": "eslint . --ext .ts", "format": "prettier --write .", "format:check": "prettier --check .", "type-check": "tsc --noEmit", "pre-commit": "npm run format && npm run lint && npm run type-check", "ci": "npm run format:check && npm run lint:check && npm run type-check && npm run build && npm test" }, "keywords": [ "itch", "itch.io", "downloader", "games", "bulk-download", "gaming", "typescript", "cli", "backup", "archive" ], "author": "Wal33D", "license": "MIT", "type": "commonjs", "engines": { "node": ">=18.0.0" }, "files": [ "build/", "README.md", "LICENSE" ], "dependencies": { "axios": "^1.10.0", "axios-retry": "^3.7.0", "cheerio": "^1.0.0-rc.12", "cli-progress": "^3.12.0", "commander": "^12.1.0", "minimatch": "^9.0.1", "adm-zip": "^0.5.16", "tar": "^7.4.3" }, "devDependencies": { "@types/node": "^24.0.13", "typescript": "^5.8.3", "@types/adm-zip": "^0.5.7", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "prettier": "^3.2.5", "audit-ci": "^7.0.1" }, "repository": { "type": "git", "url": "git+https://github.com/Wal33D/itch-dl.git" }, "homepage": "https://github.com/Wal33D/itch-dl", "bugs": { "url": "https://github.com/Wal33D/itch-dl/issues" }, "bin": { "itch-dl": "build/src/index.js" } }