{"id":15051187,"url":"https://github.com/pieroproietti/perrisbrewery","last_synced_at":"2025-04-10T02:41:28.473Z","repository":{"id":51025817,"uuid":"491009714","full_name":"pieroproietti/perrisbrewery","owner":"pieroproietti","description":"Come on Perri's Brewery and add control, manpages, preinst, postinst, prerm and postrm scripts to oclif Debian packages","archived":false,"fork":false,"pushed_at":"2025-04-07T12:38:51.000Z","size":1389,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-09T14:11:20.032Z","etag":null,"topics":["cli","debian","oclif","packages"],"latest_commit_sha":null,"homepage":"https://penguins-eggs.net","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pieroproietti.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-05-11T07:51:02.000Z","updated_at":"2025-04-07T12:38:55.000Z","dependencies_parsed_at":"2023-01-31T04:01:59.506Z","dependency_job_id":null,"html_url":"https://github.com/pieroproietti/perrisbrewery","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pieroproietti%2Fperrisbrewery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pieroproietti%2Fperrisbrewery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pieroproietti%2Fperrisbrewery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pieroproietti%2Fperrisbrewery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pieroproietti","download_url":"https://codeload.github.com/pieroproietti/perrisbrewery/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248144932,"owners_count":21055009,"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","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":["cli","debian","oclif","packages"],"created_at":"2024-09-24T21:31:32.163Z","updated_at":"2025-04-10T02:41:28.464Z","avatar_url":"https://github.com/pieroproietti.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Perri's Brewery\nCompatible with oclif 4.x, build debian packages from dist, create manpage from README.md and include prerm, postrm, preinst and postinst scripts for Debian package.\n\n# Usage\n\nAdd the package to your package.json as devDependencies\n```\n  \"perrisbrewery\": \"^9.7.12*,\n```\n\nand create a script deb:\n\n```\n  \"deb\": \"tsc -p . \u0026\u0026 pb deb\",\n```\n\nCreate a config dir `perrisbrewery` inside the project followind the sample, \nthen use the script deb with your favourite package manager, mine is pnpm:\n\n```\npnpm deb\n```\n\u003c!-- usagestop --\u003e\n\n# Commands\n\u003c!-- commands --\u003e\n* [`pb deb [PATHSOURCE]`](#pb-deb-pathsource)\n* [`pb help [COMMAND]`](#pb-help-command)\n* [`pb tarballs [TARBALLS]`](#pb-tarballs-tarballs)\n* [`pb version`](#pb-version)\n\n## `pb deb [PATHSOURCE]`\n\nPack CLI into debian package.\n\n```\nUSAGE\n  $ pb deb [PATHSOURCE] [-h] [-a] [-c \u003cvalue\u003e] [-m] [-r \u003cvalue\u003e] [-M] [-v]\n\nARGUMENTS\n  PATHSOURCE  pathSource\n\nFLAGS\n  -M, --manpages          refresh manpages on the sources\n  -a, --all               all architectures\n  -c, --codename=\u003cvalue\u003e  codename\n  -h, --help              Show CLI help.\n  -m, --mantain\n  -r, --release=\u003cvalue\u003e   release\n  -v, --verbose           verbose\n\nDESCRIPTION\n  Pack CLI into debian package.\n\n  Create a deb package from your npm package\n```\n\n_See code: [src/commands/deb.ts](https://github.com/pieroproietti/perrisbrewery/blob/v10.1.0/src/commands/deb.ts)_\n\n## `pb help [COMMAND]`\n\nDisplay help for pb.\n\n```\nUSAGE\n  $ pb help [COMMAND...] [-n]\n\nARGUMENTS\n  COMMAND...  Command to show help for.\n\nFLAGS\n  -n, --nested-commands  Include all nested commands in the output.\n\nDESCRIPTION\n  Display help for pb.\n```\n\n_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.27/src/commands/help.ts)_\n\n## `pb tarballs [TARBALLS]`\n\nrename tarballs with release.\n\n```\nUSAGE\n  $ pb tarballs [TARBALLS] [-h] [-r \u003cvalue\u003e] [-v]\n\nARGUMENTS\n  TARBALLS  pathTarballs\n\nFLAGS\n  -h, --help             Show CLI help.\n  -r, --release=\u003cvalue\u003e  release\n  -v, --verbose          verbose\n\nDESCRIPTION\n  rename tarballs with release.\n\n  Tarballs\n```\n\n_See code: [src/commands/tarballs.ts](https://github.com/pieroproietti/perrisbrewery/blob/v10.1.0/src/commands/tarballs.ts)_\n\n## `pb version`\n\n```\nUSAGE\n  $ pb version [--json] [--verbose]\n\nFLAGS\n  --verbose  Show additional information about the CLI.\n\nGLOBAL FLAGS\n  --json  Format output as json.\n\nFLAG DESCRIPTIONS\n  --verbose  Show additional information about the CLI.\n\n    Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.\n```\n\n_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.27/src/commands/version.ts)_\n\u003c!-- commandsstop --\u003e\n\n# More informations\nYou can contact me by [mail](mailto://pieroproietti@gmail.com) or follow me on \n[blog](https://penguins-eggs.net), \n[facebook](https://www.facebook.com/groups/128861437762355/), \n[github](https://github.com/pieroproietti/penguins-krill), \n[jtsi](https://meet.jit.si/PenguinsEggsMeeting), \n[reddit](https://www.reddit.com/user/Artisan61), \n[telegram](https://t.me/penguins_eggs), \n[twitter](https://twitter.com/pieroproietti).\n\n# Copyright and licenses\nCopyright (c) 2017, 2023 [Piero Proietti](https://penguins-eggs.net/about-me.html), dual licensed under the MIT or GPL Version 2 licenses.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpieroproietti%2Fperrisbrewery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpieroproietti%2Fperrisbrewery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpieroproietti%2Fperrisbrewery/lists"}