{"id":15066975,"url":"https://github.com/vinhnx/vintage","last_synced_at":"2025-04-10T13:54:11.222Z","repository":{"id":63921221,"uuid":"181867367","full_name":"vinhnx/vintage","owner":"vinhnx","description":"[UNMAINTED] command-line tool to check for outdated Swift Package Manager dependencies","archived":false,"fork":false,"pushed_at":"2021-11-29T04:57:30.000Z","size":811,"stargazers_count":33,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-08T10:01:38.191Z","etag":null,"topics":["cli","command","command-line","command-line-tool","demo","dependency-manager","homebrew","swift","swift-package-manager","swift-packages","swiftpm","terminal","vintage"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vinhnx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-17T10:16:57.000Z","updated_at":"2023-12-07T07:45:42.000Z","dependencies_parsed_at":"2023-01-14T14:15:23.151Z","dependency_job_id":null,"html_url":"https://github.com/vinhnx/vintage","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinhnx%2Fvintage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinhnx%2Fvintage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinhnx%2Fvintage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinhnx%2Fvintage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vinhnx","download_url":"https://codeload.github.com/vinhnx/vintage/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248229315,"owners_count":21068875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","command","command-line","command-line-tool","demo","dependency-manager","homebrew","swift","swift-package-manager","swift-packages","swiftpm","terminal","vintage"],"created_at":"2024-09-25T01:14:40.087Z","updated_at":"2025-04-10T13:54:11.206Z","avatar_url":"https://github.com/vinhnx.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vintage\n\n### UNMAINTAINED\n\n[![Swift 5.0](https://img.shields.io/badge/swift-5.0-orange.svg)](#)\n[![Swift Package Manager](https://img.shields.io/badge/spm-compatible-brightgreen.svg?style=flat)](https://swift.org/package-manager)\n[![@vinhnx](https://img.shields.io/badge/contact-%40vinhnx-blue.svg)](https://twitter.com/vinhnx)\n\n`vintage` is a small command-line tool to check outdated Swift Package Manager dependencies.\n\n📦 pseudo `swift package outdated` command.\n\nThink `pod outdated` or `carthage outdated`, but for Swift Package Manager.\n\n![demo](screenshots/run_demo.png)\n\n## Usage\n\nWithout any specifications (have to be executed in the directory where [Swift Package Manager manifest file (Package.swift)](https://github.com/apple/swift-package-manager/blob/master/Documentation/Usage.md) is located):\n\n```bash\n$ vintage\n```\n\nSpecifies path of Swift Package Manager directory to update:\n\n```bash\n$ vintage -p path/to/dependencies\n```\n\nHelp page:\n\n```bash\n$ vintage --help\nUSAGE: vintage [--path \u003cpath\u003e]\n\nOPTIONS:\n  -p, --path \u003cpath\u003e       Path to the folder contains Swift Package manifest file (Package.swift). (default: .)\n  -h, --help              Show help information.\n```\n\n## Installation\n\n🆕 **[swiftbrew](https://github.com/swiftbrew/Swiftbrew)**\n\n\"A package manager that installs prebuilt Swift command line tool packages, or Homebrew for Swift packages.\"\n\n```\n$ swift brew install vinhnx/vintage\n```\n\n**[homebrew](https://brew.sh)**\n\n```bash\n$ brew tap vinhnx/homebrew-formulae\n$ brew install vinhnx/formulae/vintage\n```\n\nto upgrade existing vintage executable\n\n```bash\n$ brew upgrade vinhnx/formulae/vintage\n```\n\nor\n\n```bash\n$ brew install vinhnx/homebrew-formulae/vintage\n```\n\n**[Mint](https://github.com/yonaskolb/mint)**\n\n```bash\n$ mint install vinhnx/vintage\n```\n\n**[Marathon](https://github.com/JohnSundell/Marathon)**\n\n```bash\n$ marathon install vinhnx/vintage\n```\n\n**Make**\n\n```bash\n$ git clone https://github.com/vinhnx/vintage.git\n$ cd vintage\n$ make\n```\n\n**Swift Package Manager**\n\n```bash\n$ git clone https://github.com/vinhnx/vintage.git\n$ cd vintage\n$ swift build -c release\n$ cp -f .build/release/vintage /usr/local/bin/vintage\n```\n\n## Related projects\n\nIf you like this tool, checkout my [spawn](https://github.com/vinhnx/spawn), it's a tool to generate and/or update Swift packages and open a Xcode project for you.\n\nCombo:\n\n```bash\n$ vintage \u0026\u0026 spawn # vintage: check for any outdated packages, spawn: update packages then open an generated Xcode project for you\n```\n\n![demo](screenshots/vintage_and_spawn.png)\n\nI hope you like it! :)\n\n## Dependencies\n\n-   [Sweep](https://github.com/JohnSundell/Sweep)\n-   [Files](https://github.com/JohnSundell/Files)\n-   [Releases](https://github.com/JohnSundell/Releases)\n-   [Chalk](https://github.com/mxcl/Chalk)\n\n## Reference\n\n-   [Swift Package Manager usage document](https://github.com/apple/swift-package-manager/blob/master/Documentation/Usage.md#create-a-package)\n-   [git ls-remote](https://git-scm.com/docs/git-ls-remote.html)\n-   [carthage outdated](https://github.com/Carthage/Carthage/blob/master/Source/carthage/Outdated.swift)\n-   I was heavily inspired by these awesome talks:\n    -   [Swift Scripting by Ayaka Nonaka](https://academy.realm.io/posts/swift-scripting/)\n    -   [John Sundell: Swift scripting in practice](https://www.youtube.com/watch?v=PFdh5G3BJqM)\n\n## swift-outdated\n\nCheck out https://github.com/kiliankoe/swift-outdated for similiar approach to checking outdated depedencies.\n\n## Help, feedback or suggestions?\n\nFeel free to contact me on [Twitter](https://twitter.com/vinhnx) for discussions, news \u0026 announcements \u0026 other projects. Thank you! :rocket:\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinhnx%2Fvintage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinhnx%2Fvintage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinhnx%2Fvintage/lists"}