An open API service indexing awesome lists of open source software.

https://github.com/neoapps-dev/uni-packages

The official package repo for uni
https://github.com/neoapps-dev/uni-packages

Last synced: 4 months ago
JSON representation

The official package repo for uni

Awesome Lists containing this project

README

          

# uni-packages
The official packages repo for The `uni` Package Manager

## Adding to `uni`
If it's not already there, use:
```bash
uni add-repo https://github.com/neoapps-dev/uni-packages.git
```
or,
```bash
uni init-repo
```

and thats it!

## Submitting packages to `uni-packages`
Simple Fork this repo, and add a JSON file with this structure:
```json
{
"repo": "https://github.com/user/package.git",
"name": "package-name",
"version": "1.0.0",
"maintainer": "You",
"description": "Package description",
"license": "MIT",
"dependencies": [],
"tags": []
}
```
Valid inputs for "license" are:
- MIT
- Apache-(v1,v2)
- GPL (v1,v2,v3)
- LGPL (v1,v2,v3)
- AGPL (v1,v2,v3)
- NONE