From 7a41cfb1116f2ec7646f08ebefcdf51ea057e160 Mon Sep 17 00:00:00 2001 From: Nato Boram Date: Thu, 10 Mar 2022 16:06:35 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Add=20more=20info=20in=20`packag?= =?UTF-8?q?e.json`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/FUNDING.yml | 12 ++++++++++++ CHANGELOG.md | 2 ++ package.json | 26 ++++++++++++++++++++++++-- 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..05ddbf2 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: NatoBoram # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: ["https://paypal.me/NatoBoram/5"] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/CHANGELOG.md b/CHANGELOG.md index 43ffb01..7806916 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this ### Added +* More information in the `package.json`. + ### Changed * Upgraded to Angular 12 diff --git a/package.json b/package.json index bc5ac58..b0e5103 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,28 @@ { "name": "public-gateway-cacher", "version": "2.1.1", + "description": "Cache a specific hash on a bunch of public gateways.", + "keywords": [ + "IPFS" + ], + "homepage": "https://natoboram.gitlab.io/public-gateway-cacher", + "bugs": { + "url": "https://gitlab.com/NatoBoram/public-gateway-cacher/-/issues", + "email": "contact-project+natoboram-public-gateway-cacher-11685619-issue-@incoming.gitlab.com" + }, + "license": "GPL-3.0-or-later", + "author": { + "name": "Nato Boram", + "url": "https://gitlab.com/NatoBoram" + }, + "funding": [ + { + "type": "patreon", + "url": "https://www.patreon.com/NatoBoram" + }, + "https://paypal.me/NatoBoram/5" + ], + "repository": "gitlab:NatoBoram/public-gateway-cacher", "scripts": { "ng": "ng", "start": "ng serve --ssl", @@ -14,7 +36,6 @@ "publish:ipfs": "yarn run build:ipfs && ipfs add --recursive --chunker=buzhash --cid-version=1 dist/angular", "postinstall": "ngcc" }, - "private": false, "dependencies": { "@angular/animations": "~12.2.16", "@angular/cdk": "~12.2.13", @@ -57,5 +78,6 @@ "tslint-origin-ordered-imports-rule": "^2.0.0", "tslint-rxjs-subject-restrictions-rule": "^1.0.4", "typescript": "~4.3.5" - } + }, + "private": true }