Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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",
}
}
```