Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacklehamster/package-name-fixer
Goes into package.json and update the name to match the Github repository. Also updates author, description. It's useful when a npm repo is build out of a template.
https://github.com/jacklehamster/package-name-fixer
bun npm package packagejson
Last synced: about 12 hours ago
JSON representation
Goes into package.json and update the name to match the Github repository. Also updates author, description. It's useful when a npm repo is build out of a template.
- Host: GitHub
- URL: https://github.com/jacklehamster/package-name-fixer
- Owner: jacklehamster
- License: mit
- Created: 2024-01-30T12:55:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-19T07:45:54.000Z (23 days ago)
- Last Synced: 2025-01-19T07:46:37.800Z (23 days ago)
- Topics: bun, npm, package, packagejson
- Language: TypeScript
- Homepage:
- Size: 83 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# package-name-fixer
Goes into package.json and update the name to match the Github repository. Also updates author, description. It's useful when a npm repo is build out of a template.Written using bun
# Usage
```bash
$ bun start
```# Usage from another package
Update `package.json`:
```js
{
//...
"scripts": {
//...
"fix-package-name": "npm explore package-name-fixer -- bun start \"$(pwd)\""
},
"devDependencies": {
//...
"package-name-fixer": "^1.0.9",
}
}
```