this is the parcel(package) manager for Unix For Minecraft.

commands:
parcel install <package>
parcel remove <package>

parcel can install multiple programs at once.

have a program and want me to add it to the repository for UFM, just send your code to unixforminecraft@gmail.com, and it will be on the repository within 1-2 days.

how to optimize your program for parcel:

parcel uses a few keywords at the top of the code and right now is kind of picky so follow this to the letter

add this to the first line of your program

name = <program name>
version = 'version'
type = <App or Lib>

Example for app

name = 'parcel'
version = '1.0.0'
type = 'App'

Example for library

name = 'parcel library'
version = '1.2.4'
type = 'Lib'

explanation

name is the name of your program or library
version is the current version of your program
type determines whether your program is a app or a library of code

App is a program, stored in /bin
Lib is a file full of functions that can be accessed by other program, stored in '/lib'

pastebin: j0HUbG2G