├── .github └── workflows │ ├── add-artifacts-to-current-release.yml │ └── ci.yml ├── .gitignore ├── LICENSE ├── Nifty_UserGuide.md ├── README.md ├── description ├── nifty.nimble └── src ├── nifty.nim ├── nifty.nim.cfg └── niftypkg ├── config.nim ├── help.json ├── messaging.nim ├── minimline.nim ├── nifty.json ├── niftylogger.nim └── project.nim /.github/workflows/add-artifacts-to-current-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/.github/workflows/add-artifacts-to-current-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/LICENSE -------------------------------------------------------------------------------- /Nifty_UserGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/Nifty_UserGuide.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/README.md -------------------------------------------------------------------------------- /description: -------------------------------------------------------------------------------- 1 | A tiny (pseudo) package manager and script runner. 2 | -------------------------------------------------------------------------------- /nifty.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/nifty.nimble -------------------------------------------------------------------------------- /src/nifty.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/src/nifty.nim -------------------------------------------------------------------------------- /src/nifty.nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/src/nifty.nim.cfg -------------------------------------------------------------------------------- /src/niftypkg/config.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/src/niftypkg/config.nim -------------------------------------------------------------------------------- /src/niftypkg/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/src/niftypkg/help.json -------------------------------------------------------------------------------- /src/niftypkg/messaging.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/src/niftypkg/messaging.nim -------------------------------------------------------------------------------- /src/niftypkg/minimline.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/src/niftypkg/minimline.nim -------------------------------------------------------------------------------- /src/niftypkg/nifty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/src/niftypkg/nifty.json -------------------------------------------------------------------------------- /src/niftypkg/niftylogger.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/src/niftypkg/niftylogger.nim -------------------------------------------------------------------------------- /src/niftypkg/project.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3rald/nifty/HEAD/src/niftypkg/project.nim --------------------------------------------------------------------------------