@itsflower/cli 0.2.7 → 0.2.9
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.
- package/README.md +43 -0
- package/dist/main.js +791 -495
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# @itsflower/cli
|
|
2
|
+
|
|
3
|
+
CLI for Flower - scaffold structured development workflows in your project.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Using bun
|
|
9
|
+
bun add -g @itsflower/cli
|
|
10
|
+
|
|
11
|
+
# Using npm
|
|
12
|
+
npm install -g @itsflower/cli
|
|
13
|
+
|
|
14
|
+
# Using pnpm
|
|
15
|
+
pnpm add -g @itsflower/cli
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
flower [command] [options]
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Commands
|
|
25
|
+
|
|
26
|
+
| Command | Description |
|
|
27
|
+
| --------- | ----------------------------------- |
|
|
28
|
+
| `version` | Display the current version |
|
|
29
|
+
| `--help` | Show available commands and options |
|
|
30
|
+
|
|
31
|
+
### Examples
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# Show version
|
|
35
|
+
flower version
|
|
36
|
+
|
|
37
|
+
# Display help
|
|
38
|
+
flower --help
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
MIT
|