Fix package.json metadata (description, license, repo links) - #74
Open
phwizard wants to merge 1 commit into
Open
Fix package.json metadata (description, license, repo links)#74phwizard wants to merge 1 commit into
phwizard wants to merge 1 commit into
Conversation
- description: was a garbled install snippet; now a proper one-line summary - license: was "AGPL" (invalid SPDX, and contradicts the MIT LICENSE file in the repo) → corrected to "MIT" - add homepage, repository, and bugs fields (were missing — npm showed no repo link) - keywords: align with the GitHub repo topics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cleanup of
package.jsonfields that were either wrong or missing — these surface on the npm package page and are read by directory/listing crawlers.Changes
descriptionnpm create vite...install snippetlicense"AGPL""MIT"homepagehttps://playground.chat.ethora.comrepositorybugskeywordsmessenger,web3Note on the license change
This is a metadata correction, not a relicensing. The repo's
LICENSEfile is the standard MIT License (Copyright (c) 2025 Dappros Ltd), and the GitHub repo is detected as MIT.package.jsonsaid"AGPL", which both contradicts that file and isn't a valid SPDX identifier. This change makespackage.jsonagree with the existingLICENSEfile.Why now
The npm page currently shows no repository link and a nonsense description, which weakens the package on npm and blocks clean submission to component directories. No code changes — metadata only.