The Peel Package Manager (pepm)¶
pepm (pronounced pep-um) is the official package manager and build system for the Peel programming language. It handles dependency resolution and project management.
Creating a New Project¶
To start a new project, navigate to your desired directory and run:
This will create a peel.toml manifest in the root of your project with your project name.
The Manifest file: peel.toml¶
The peel.toml file contains configuration for your project and dependencies.
Installing Dependencies¶
To install all dependencies listed in your peel.toml, simply run:
This will download the required modules into the .peel/modules directory.
Adding a Dependency¶
To quickly add a new dependency and install it simultaneously:
Registries¶
pepm fetches packages from the default official registry hosted on GitHub.
Building and Running¶
You can compile your project using the peel compiler (separate tool):