{"id":35195882,"url":"https://github.com/liamvnastoria/lpm","last_synced_at":"2026-05-17T20:35:07.793Z","repository":{"id":301312835,"uuid":"1008845869","full_name":"liamvnastoria/lpm","owner":"liamvnastoria","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-26T07:25:17.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-26T08:31:28.684Z","etag":null,"topics":["language","network","packet-manager","rust"],"latest_commit_sha":null,"homepage":"https://liamvonastoria.net","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/liamvnastoria.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-26T07:21:30.000Z","updated_at":"2025-06-26T07:25:20.000Z","dependencies_parsed_at":"2025-06-26T08:33:30.031Z","dependency_job_id":"d61c20cd-0e83-4cdd-a092-6b214cdee7a7","html_url":"https://github.com/liamvnastoria/lpm","commit_stats":null,"previous_names":["liamvnastoria/lpm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/liamvnastoria/lpm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liamvnastoria%2Flpm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liamvnastoria%2Flpm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liamvnastoria%2Flpm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liamvnastoria%2Flpm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liamvnastoria","download_url":"https://codeload.github.com/liamvnastoria/lpm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liamvnastoria%2Flpm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33153892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["language","network","packet-manager","rust"],"created_at":"2025-12-29T07:16:04.624Z","updated_at":"2026-05-17T20:35:07.787Z","avatar_url":"https://github.com/liamvnastoria.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Luma Packet Manager (LPM)\n\n**LPM** (Luma Packet Manager) is the unified package and project management tool for the **Luma Language Ecosystem**, including:\n\n- [Luma](https://luma-lang.org) – A modern systems programming language inspired by Rust and Python  \n- **Lumo** – A lightweight scripting companion to Luma  \n- **Wave** – A WebAssembly-oriented language for safe, portable modules  \n\nLPM handles everything from dependency resolution, building, running, formatting, and eventually publishing Luma ecosystem packages.\n\n---\n\n## ✨ Features\n\n- 🔧 `init` – Create a new project with a unified `Luma.toml`\n- 📦 `install` – Manage dependencies for Luma, Lumo, and Wave\n- ▶️ `run` – Automatically detect and execute `.lu`, `.luo`, or `.wv` files\n- 🛠️ `build` – Compile Luma or Wave projects\n- 🧪 `test` – Run test suites (coming soon)\n- 🎨 `fmt` – Format source code (planned)\n- 🚀 `publish` – Publish your package to the future Luma registry\n\n---\n\n## 📂 Example Project Structure\n\n```\n\nmy-project/\n├── src/\n│   └── main.lu        # Luma source file\n├── scripts/\n│   └── setup.luo      # Lumo script\n├── wasm/\n│   └── frontend.wv    # Wave module (compiled to WASM)\n├── Luma.toml          # Unified manifest\n└── trial.lock         # Dependency lock file\n\n````\n\n---\n\n## 🚀 Getting Started\n\n### Install LPM (coming soon)\n\n```bash\ncargo install lpm\n````\n\n### Create a new project\n\n```bash\nlpm init my-app --lang luma\ncd my-app\nlpm run\n```\n\n### Add dependencies\n\n```bash\nlpm add wave-ui\nlpm install\n```\n\n---\n\n## 📖 Manifest Format: `Luma.toml`\n\n```toml\n[package]\nname = \"my-app\"\nversion = \"0.1.0\"\nlanguage = \"luma\"\n\n[dependencies]\nlumo-utils = \"0.1\"\nwave-ui = { git = \"https://github.com/usr/wave-ui\" }\n\n[build]\ntarget = \"native\"\n\n[scripts]\nsetup = \"scripts/setup.luo\"\n```\n\n---\n\n## 🛤 Roadmap\n\n* [x] Project initialization (`lpm init`)\n* [x] Unified runner (`lpm run`)\n* [ ] Package registry support\n* [ ] Plugin system for extensions\n* [ ] REPL / Playground integration\n* [ ] Testing \u0026 coverage tools\n* [ ] LSP / editor toolchain integration\n\n---\n\n## 🧑‍💻 About\n\nLPM is part of the **Luma Language Ecosystem**, a personal and open-source initiative to explore new frontiers in language design and software tooling.\n\nFollow progress and contribute via:\n\n* GitHub: [Liam Von Astoria](https://github.com/liamvnastoria)\n* Website: [luma-lang.org](https://luma-lang.org)\n\n---\n\n## License\n\nMIT © \\[Liam Von Astoria] — Open for contribution.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliamvnastoria%2Flpm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliamvnastoria%2Flpm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliamvnastoria%2Flpm/lists"}