mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +00:00
f0d04fc87c
* feat(website): init * feat(website): home page * feat(website): make page more responsive * feat(website): layout * feat(website): package page * feat(website): update PackageResponse type * feat(website): display package readme * feat(website): use new /latest/any endpoint * feat(website): make website lg instead of xl * fix(website): use NodeJS.Timeout * feat(website): versions page * feat(website): add latest version indicator * feat(website): add target select menu * feat(website): indicate current version * feat(website): add package metadata * feat(website): add hamburger * fix(website): header responsiveness * feat(website): better package layout * feat(website): display authors on package page * fix(website): only display relative dates on client * feat(docs): init docs site * chore(website): read .env from project root * feat(website): add gemoji support * fix(website): overflow on code blocks * chore(docs): read .env from project root * feat(docs): config changes * fix: authors not displaying * fix(website): use fallback language * refactor(website): use predefined target names * refactor(website): change Github to GitHub * chore: remove starter readmes * chore(docs): remove .vscode * chore(docs): remove unused assets folder * fix(website): fix missing datetime attribute * feat(website): switch to universal loaders * feat(docs): search * fix(website): type errors * fix(website): use provided fetch instead of global * feat(website): remove isr * chore(website): add .env.example * feat(website): add icons and metadata * chore(website): add debug logs * chore(website): remove shiki temporarily * fix(website): rehype shiki lazy load * fix(website): use custom highlighter * fix(website): move highlighter creation into load * docs: write docs * feat(website): add og image * feat(website): fix accessibility issues * fix(website): no target selector on mobile * fix(website): close dialog on navigation * fix(website): logo is not a link in hamburger menu * feat(website): dependencies tab * fix(website): use correct dependency target * fix(website): navigation links * feat(website): support wally dependencies * feat(website): metadata + case insensitivity * fix(website): manually implement groupBy `Object.groupBy` isn't supported on Vercel right now. * fix(website): code block with an unknown language * docs(policies): explain & cover more cases * docs: update cli reference * docs: add self hosting registries guide * docs: update README * docs: add more configs to registry guide * fix: favicon and logomark * feat(website): package documentation * fix(website): missing $derive for toc * docs: change SENTRY_URL to SENTRY_DSN * chore(website): remove unused file * chore: remove favicon.zip * fix(website): strip wally# prefix * chore: add changelog entry --------- Co-authored-by: daimond113 <72147841+daimond113@users.noreply.github.com>
52 lines
1.5 KiB
Markdown
52 lines
1.5 KiB
Markdown
<br>
|
|
|
|
<div align="center">
|
|
<img src="https://raw.githubusercontent.com/daimond113/pesde/0.5/assets/logotype.svg" alt="pesde logo" width="200" />
|
|
</div>
|
|
|
|
<br>
|
|
|
|
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](https://github.com/daimond113/pesde/releases). Once you have downloaded
|
|
the binary, run the following command to install it:
|
|
|
|
```sh
|
|
pesde self-install
|
|
```
|
|
|
|
Note that pesde manages its own versions, so you can update it by running the
|
|
following command:
|
|
|
|
```sh
|
|
pesde self-upgrade
|
|
```
|
|
|
|
## Documentation
|
|
|
|
For more information about its usage, you can check the
|
|
[documentation](https://docs.pesde.daimond113.com).
|
|
|
|
## Registry
|
|
|
|
The main pesde registry is hosted on [fly.io](https://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](http://docs.pesde.daimond113.com/guides/self-hosting-registries)
|
|
for more information.
|
|
|
|
## Previous art
|
|
|
|
pesde is heavily inspired by [npm](https://www.npmjs.com/),
|
|
[pnpm](https://pnpm.io/), [Wally](https://wally.run), and
|
|
[Cargo](https://doc.rust-lang.org/cargo/).
|