A package manager for the Luau programming language, supporting multiple runtimes including Roblox and Lune
Find a file
daimond113 f4050abec8
feat: add engines
Squashed commit of the following:

commit 5767042964
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Thu Jan 16 18:28:52 2025 +0100

    fix(engines): correct engine detection on unix

    The `current_exe` function doesn't return the
    symlinked path on Unix, so the engine detection
    was failing there. This commit fixes that by
    using the 0th argument of the program to get
    the path of the executable on Unix.

commit b51c9d9571
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Wed Jan 15 22:43:50 2025 +0100

    refactor: print deprecated warning on CLI side

    Prints the deprecated warning on the CLI side
    which means it'll have a more consistent look
    with the rest of the CLI output.

commit 5ace844035
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Wed Jan 15 22:21:36 2025 +0100

    feat: add alias validation

    Ensures aliases don't contain characters which could
    cause issues. They are now also forbidden from being
    the same as an engine name to avoid issues.

commit a33302aff9
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Wed Jan 15 21:23:40 2025 +0100

    refactor: apply clippy lints

commit 2d534a534d
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Wed Jan 15 21:22:14 2025 +0100

    feat(engines): print incompatibility warning for dependencies

    Adds a warning message when a dependency depends
    on an incompatible engine.

commit 4946a19f8b
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Wed Jan 15 18:33:38 2025 +0100

    feat(engines): create linkers at install time

    Additionally fixes engines being executed as scripts,
    and fixes downloading pesde from GitHub.

commit e3177eeb75
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Tue Jan 14 14:33:26 2025 +0100

    fix(engines): store & link engines correctly

    Fixes issues with how engines were stored
    which resulted in errors. Also makes outdated
    linkers get updated.

commit 037ead66bb
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Mon Jan 13 12:26:19 2025 +0100

    docs: remove prerequisites

commit ddb496ff7d
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Mon Jan 13 12:25:53 2025 +0100

    ci: remove tar builds

commit e9f0c25554
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Mon Jan 13 12:25:11 2025 +0100

    chore(docs): update astro and starlight

commit fc349e6f21
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Sun Jan 12 23:12:27 2025 +0100

    feat: add engines

    Adds the initial implementation of the engines feature.
    Not tested yet. Requires documentation and
    more work for non-pesde engines to be usable.
2025-01-16 19:11:16 +01:00
.github feat: add engines 2025-01-16 19:11:16 +01:00
assets feat: website 2024-10-29 20:06:00 +01:00
docs feat: add engines 2025-01-16 19:11:16 +01:00
registry feat: add engines 2025-01-16 19:11:16 +01:00
src feat: add engines 2025-01-16 19:11:16 +01:00
website feat: switch lib & cli to v1 api 2025-01-13 13:21:22 +01:00
.dockerignore chore(release): prepare for v0.5.0-rc.1 2024-10-06 22:15:22 +02:00
.env.example feat: switch lib & cli to v1 api 2025-01-13 13:21:22 +01:00
.git-blame-ignore-revs chore: add git blame ignore file 2025-01-02 22:38:29 +01:00
.gitattributes chore: add gitattributes 2024-10-20 13:37:39 +02:00
.gitignore feat: add name.scope and name.name apis 2025-01-10 00:01:02 +01:00
Cargo.lock feat(registry): add individual job endpoints for package data 2025-01-10 00:00:24 +01:00
Cargo.toml feat: add engines 2025-01-16 19:11:16 +01:00
CHANGELOG.md feat: use url encoding crate to ensure validity of urls 2025-01-09 23:04:06 +01:00
Dockerfile refactor(registry): update sentry api usage 2024-10-25 12:07:07 +02:00
fly.toml chore: update urls to use pesde org 2024-11-27 21:08:33 +01:00
LICENSE chore: 🚀 setup crates.io publishing 2024-03-06 22:45:39 +01:00
README.md chore: update urls to use pesde org 2024-11-27 21:08:33 +01:00
rust-toolchain.toml feat: 🎉 initial commit 2024-03-04 21:18:49 +01:00
rustfmt.toml style: enable hard_tabs rustfmt option 2025-01-02 22:37:27 +01:00
SECURITY.md docs: add SECURITY.md 2024-12-20 19:06:35 +01:00


pesde logo

pesde is a package manager for the Luau programming language, supporting multiple runtimes including Roblox and Lune. pesde has its own registry, however it can also use Wally, and Git repositories as package sources. It has been designed with multiple targets in mind, namely Roblox, Lune, and Luau.

Installation

pesde can be installed from GitHub Releases. You can find the latest release here. Once you have downloaded the binary, run the following command to install it:

pesde self-install

Note that pesde manages its own versions, so you can update it by running the following command:

pesde self-upgrade

Documentation

For more information about its usage, you can check the documentation.

Registry

The main pesde registry is hosted on fly.io. You can find it at https://registry.pesde.daimond113.com.

Self-hosting

The registry tries to require no modifications to be self-hosted. Please refer to the documentation for more information.

Previous art

pesde is heavily inspired by npm, pnpm, Wally, and Cargo.