start-it-cli 1.0.0 → 1.0.1

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.
@@ -1,8 +1,8 @@
1
- # start-it - Project Summary
1
+ # start-it-cli - Project Summary
2
2
 
3
3
  ## Overview
4
4
 
5
- **start-it** is a comprehensive npm package that provides a prompt-based CLI tool for scaffolding projects across multiple frameworks and languages. It simplifies project initialization by offering interactive prompts and pre-configured templates.
5
+ **start-it-cli** is a comprehensive npm package that provides a prompt-based CLI tool for scaffolding projects across multiple frameworks and languages. It simplifies project initialization by offering interactive prompts and pre-configured templates.
6
6
 
7
7
  ## Project Status
8
8
 
package/QUICK_START.md CHANGED
@@ -1,17 +1,17 @@
1
1
  # Quick Start Guide
2
2
 
3
- Get up and running with start-it in 2 minutes!
3
+ Get up and running with start-it-cli in 2 minutes!
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install -g start-it
8
+ npm install -g start-it-cli
9
9
  ```
10
10
 
11
11
  ## Create Your First Project
12
12
 
13
13
  ```bash
14
- start-it
14
+ start-it-cli
15
15
  ```
16
16
 
17
17
  Then answer the prompts:
package/README.md CHANGED
@@ -18,13 +18,13 @@ A prompt-based CLI tool to scaffold projects for various frameworks and language
18
18
  ## Installation
19
19
 
20
20
  ```bash
21
- npm install -g start-it
21
+ npm install -g start-it-cli
22
22
  ```
23
23
 
24
24
  Or use with `npx`:
25
25
 
26
26
  ```bash
27
- npx start-it
27
+ npx start-it-cli
28
28
  ```
29
29
 
30
30
  ## Usage
@@ -32,7 +32,7 @@ npx start-it
32
32
  Simply run the command:
33
33
 
34
34
  ```bash
35
- start-it
35
+ start-it-cli
36
36
  ```
37
37
 
38
38
  Then follow the interactive prompts to:
@@ -45,7 +45,7 @@ Then follow the interactive prompts to:
45
45
  ## Example
46
46
 
47
47
  ```bash
48
- $ start-it
48
+ $ start-it-cli
49
49
  ? What type of project would you like to create? (Use arrow keys)
50
50
  ❯ Go
51
51
  Flutter
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "start-it-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A prompt-based CLI tool to scaffold projects for Go, Flutter, React Native, Spring Boot, and more",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
- "start-it": "dist/cli.js"
7
+ "start-it-cli": "dist/cli.js"
8
8
  },
9
9
  "scripts": {
10
10
  "build": "tsc",