@laabroms/alias-cli 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -30
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,9 +14,9 @@
14
14
  [![npm version](https://img.shields.io/npm/v/@laabroms/alias-cli.svg)](https://www.npmjs.com/package/@laabroms/alias-cli)
15
15
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
16
16
 
17
- Built with [Ink](https://github.com/vadimdemedes/ink) — React for CLIs.
17
+ ## Demo
18
18
 
19
- <!-- ![Demo](demo.gif) -->
19
+ ![Demo](assets/demo.gif)
20
20
 
21
21
  ## Features
22
22
 
@@ -128,26 +128,6 @@ After making changes, the CLI automatically copies the `source` command to your
128
128
  - Node.js >= 18.0.0
129
129
  - Terminal with ANSI color support
130
130
 
131
- ## Development
132
-
133
- ```bash
134
- # Clone the repo
135
- git clone https://github.com/laabroms/alias-cli.git
136
- cd alias-cli
137
-
138
- # Install dependencies
139
- npm install
140
-
141
- # Run in dev mode
142
- npm run dev
143
-
144
- # Build for production
145
- npm run build
146
-
147
- # Type check
148
- npm run typecheck
149
- ```
150
-
151
131
  ## Tech Stack
152
132
 
153
133
  - **Ink** — React renderer for CLIs
@@ -156,14 +136,6 @@ npm run typecheck
156
136
  - **tsup** — Fast bundler
157
137
  - **tsx** — TypeScript execution
158
138
 
159
- ## Future Ideas
160
-
161
- - [ ] Import/export alias sets
162
- - [ ] Syntax highlighting for commands
163
- - [ ] Multi-select delete
164
- - [ ] Alias categories/tags
165
- - [ ] Support for `.bash_aliases` and other config files
166
-
167
139
  ## Contributing
168
140
 
169
141
  PRs welcome! Please open an issue first to discuss what you'd like to change.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laabroms/alias-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Interactive TUI for managing shell aliases",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",