├── .gitignore ├── Assets.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ └── unpkg.icns └── Contents.json ├── COPYING ├── End-user Read Me.rtf ├── Info.plist ├── Makefile ├── Package.swift ├── README.md └── unpkg.swift /.gitignore: -------------------------------------------------------------------------------- 1 | unpkg.app 2 | .DS_Store 3 | VERSION 4 | *.zip -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/unpkg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/Assets.xcassets/AppIcon.appiconset/unpkg.icns -------------------------------------------------------------------------------- /Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/COPYING -------------------------------------------------------------------------------- /End-user Read Me.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/End-user Read Me.rtf -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/Info.plist -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/README.md -------------------------------------------------------------------------------- /unpkg.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdoug/unpkg/HEAD/unpkg.swift --------------------------------------------------------------------------------