Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/akx/autotypes
- Owner: akx
- License: mit
- Created: 2018-08-29T16:14:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-22T12:48:45.000Z (9 months ago)
- Last Synced: 2024-04-22T13:57:06.587Z (9 months ago)
- Topics: javascript, npm, stub, types, typescript, yarn
- Language: JavaScript
- Homepage:
- Size: 12.7 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```