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
- Host: GitHub
- URL: https://github.com/neoapps-dev/uni-packages
- Owner: neoapps-dev
- Created: 2024-12-31T10:48:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-05T19:44:57.000Z (over 1 year ago)
- Last Synced: 2025-06-07T03:03:48.232Z (about 1 year ago)
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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