Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/akx/autotypes

Finds non-stub TypeScript @types/ packages for your package.json.
https://github.com/akx/autotypes

javascript npm stub types typescript yarn

Last synced: 3 months ago
JSON representation

Finds non-stub TypeScript @types/ packages for your package.json.

Awesome Lists containing this project

README

        

autotypes
=========

Finds non-stub `@types/` packages for your package.json.

Usage
-----

```
cd my_project
# list all non-devDependencies @types/ packages available
node ~/autotypes
# `yarn add` the same to devDependencies
node ~/autotypes | xargs yarn add --dev
# `npm install --save` the same to devDependencies
node ~/autotypes | xargs npm install --save-dev
```