{"id":16347570,"url":"https://github.com/oscarotero/gpm","last_synced_at":"2025-09-23T16:16:48.326Z","repository":{"id":66292597,"uuid":"393678341","full_name":"oscarotero/gpm","owner":"oscarotero","description":"Git-based package manager for Deno","archived":false,"fork":false,"pushed_at":"2022-04-09T15:56:48.000Z","size":27,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-26T05:19:26.575Z","etag":null,"topics":["asset-management","deno","package-manager"],"latest_commit_sha":null,"homepage":"https://deno.land/x/gpm","language":"TypeScript","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/oscarotero.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2021-08-07T12:31:14.000Z","updated_at":"2024-10-27T14:08:49.000Z","dependencies_parsed_at":"2023-07-07T16:01:11.100Z","dependency_job_id":null,"html_url":"https://github.com/oscarotero/gpm","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/oscarotero/gpm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarotero%2Fgpm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarotero%2Fgpm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarotero%2Fgpm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarotero%2Fgpm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oscarotero","download_url":"https://codeload.github.com/oscarotero/gpm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarotero%2Fgpm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276605985,"owners_count":25672145,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-23T02:00:09.130Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["asset-management","deno","package-manager"],"created_at":"2024-10-11T00:43:41.775Z","updated_at":"2025-09-23T16:16:48.319Z","avatar_url":"https://github.com/oscarotero.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GPM\n\nGit Package Manager: Simple Deno library to download git packages.\n\n## Motivation\n\nI just want to download assets from git repositories without depending on any\npackage registry like npm. For example,\n[css packages](https://github.com/necolas/normalize.css),\n[javascript polyfills](https://github.com/GoogleChrome/dialog-polyfill), etc.\nBut, at the same time, I want semantic versioning using the git tags.\n\n## Usage\n\nThis is a Deno package, written in typescript:\n\n```ts\nimport gpm from \"https://deno.land/x/gpm/mod.ts\";\n\nconst packages = [\n  // Use the github repository name (it download the latest tag)\n  \"necolas/normalize.css\",\n\n  // Or you can specify a version (tags)\n  {\n    name: \"GoogleChrome/dialog-polyfill\",\n    version: \"0.5\",\n  },\n\n  // And also configure the files/folders to copy\n  // (it uses package.json as fallback)\n  {\n    name: \"oom-components/page-loader\",\n    files: [\"src\"],\n    filter: (path) =\u003e path.endsWith(\".js\"),\n  },\n\n  // Use full urls to download files directly\n  \"https://unpkg.com/react@17.0.2/umd/react.production.min.js\",\n\n  // Custom destination folder\n  {\n    name: \"oom-components/carousel\",\n    dest: \"./vendors/components/carousel\",\n  },\n];\n\nconst destination = \"./vendors\";\n\ngpm(packages, destination);\n```\n\n## Cli\n\n```bash\n# Install\ndeno install --unstable -A https://deno.land/x/gpm/mod.ts\n\n# Download necolas/normalize.css\ngpm necolas/normalize.css\n\n# Use the latest 7.x version\ngpm necolas/normalize.css@7\n\n# Set a different destination path\ngpm necolas/normalize.css@7 --dest=./packages\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foscarotero%2Fgpm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foscarotero%2Fgpm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foscarotero%2Fgpm/lists"}