# textlintrc-to-package-list

> listing package name from .textlintrc

Latest version **3.0.3** (published 2025-06-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install textlintrc-to-package-list
pnpm add textlintrc-to-package-list
yarn add textlintrc-to-package-list
bun add textlintrc-to-package-list
```

Provides the command `textlintrc-to-package-list`.

## Health

**Score 30/100 (F)** — status: maintenance-mode.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: stale; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.0.3 |
| Published | 2025-06-14 |
| First published | 2021-12-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 2 |
| Unpacked size | 6.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | azu |
| Maintainers | azu |
| Keywords | textlint, textlint-config |

## Links

- npm: https://www.npmjs.com/package/textlintrc-to-package-list
- Repository: https://github.com/textlint/textlintrc-to-package-list
- Issues: https://github.com/textlint/textlintrc-to-package-list/issues
- npm.io page: https://npm.io/package/textlintrc-to-package-list

## Dependencies (2)

- [concat-stream](https://npm.io/package/concat-stream.md) ^2.0.0
- [strip-json-comments](https://npm.io/package/strip-json-comments.md) ^3.1.1

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 3.0.3 (latest) — 2025-06-14
- 3.0.2 — 2025-06-14
- 3.0.1 — 2025-01-11
- 3.0.0 — 2025-01-11
- 2.0.0 — 2021-12-29

## README

# textlintrc-to-package-list [![Actions Status: test](https://github.com/textlint/textlintrc-to-package-list/workflows/test/badge.svg)](https://github.com/textlint/textlintrc-to-package-list/actions?query=workflow%3A"test")

Listing package name from `.textlintrc`

Main use case is installing npm package from `.textlinrc`

## Installation

    npm install textlintrc-to-package-list -g

## Usage

    $ textlintrc-to-package-list ./path/to/.textlintrc

### Exaple

Input `.textlintrc`

```json
{
  "plugins": [
    "@textlint/html"
  ],
  "filters": {
    "comments": true
  },
  "rules": {
    "@textlint/preset-ja-technical-writing": true,
    "textlint-rule-no-todo": true,
    "sentence-length": {
      "max": 100
    }
  }
}
```

Output

```
@textlint/textlint-plugin-html
textlint-filter-rule-comments
@textlint/textlint-rule-preset-ja-technical-writing
textlint-rule-no-todo
textlint-rule-sentence-length
```

## UseCase

Install npm package from `.textlintrc`

```sh
npm install -g textlintrc-to-package-list
textlintrc-to-package-list .textlintrc | xargs npm install
```

or 

```shell
npx --quiet textlintrc-to-package-list .textlintrc.json | xargs npm install
```

Do Install all package from `.textlintrc`!

## Contributing

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D

## License

MIT

---
_Source: https://npm.io/package/textlintrc-to-package-list · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
