typm
v1.3.0
Published
Typescript Package Manager
Readme
TYPM - Typescript Package Manager 🗄
About
Typescript Package Manager automatically checks if a type package exists for a specific package and installs it as a development dependency. That means that instead of running
$ yarn add react
$ yarn add -D @types/reactyou would only have to run
$ typm add reactThis also means that you don't have to check if a type packages exists for a specific package. TYPM automatically checks this and only install the type packages that are necessary.
Usage
$ npm install -g typm
$ typm COMMAND
running command...
$ typm (-v|--version|version)
typm/1.3.0 linux-x64 node-v12.22.5
$ typm --help [COMMAND]
USAGE
$ typm COMMAND
...Commands
typm config
show preferred package manager
USAGE
$ typm configSee code: src/commands/config.ts
typm help [COMMAND]
display help for typm
USAGE
$ typm help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLISee code: @oclif/plugin-help
typm init
initialize typm with your package manager
USAGE
$ typm init
OPTIONS
-g, --global
-h, --help show CLI help
ALIASES
$ typm initializeSee code: src/commands/init.ts
typm install
install npm package[s]
USAGE
$ typm install
OPTIONS
-h, --help show CLI help
ALIASES
$ typm i
$ typm add
EXAMPLE
$ typm add react react-domSee code: src/commands/install.ts
