mintikaryu 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.
Files changed (2) hide show
  1. package/README.md +15 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,28 +17,35 @@
17
17
 
18
18
  - **Node.js**: The sacred runtime. Ensure you have a modern version supporting ESM modules (Node 12.20.0 or higher).
19
19
 
20
- ## 🔮 Forging the Pact (Installation)
20
+ ## 🔮 The Summoning Ritual (Usage)
21
21
 
22
- To embed the `summon-dragon` incantation into your system so it may be cast anywhere within your digital kingdom, you must bind its essence globally.
22
+ Mintikaryū has been sealed within the NPM registry. You may unleash the beast with a single invocation anywhere in your digital kingdom, without prior installation:
23
23
 
24
- Trace these arcane coordinates within the project's sanctum (root directory):
24
+ ```bash
25
+ npx mintikaryu
26
+ ```
27
+
28
+ ### Forging a Permanent Pact (Global Install)
29
+
30
+ To etch the `summon-dragon` command permanently into your system's global runes, install the package globally:
25
31
 
26
32
  ```bash
27
- npm install
28
- npm link
33
+ npm install -g mintikaryu
29
34
  ```
30
35
 
31
- Once the pact is woven, you may call upon the ancient beast simply by chanting in your terminal:
36
+ Once the pact is woven, simply summon it in your terminal at any time with:
32
37
 
33
38
  ```bash
34
39
  summon-dragon
35
40
  ```
36
41
 
37
- ### The Solitary Invocation (Running Locally)
42
+ ### The Solitary Invocation (Local Development)
38
43
 
39
- Should you wish to cast the spell solely within the confines of its origin folder, without forging a global pact:
44
+ Should you wish to study the arcane sigils locally or develop the ritual further:
40
45
 
41
46
  ```bash
47
+ git clone https://github.com/aayushananda/Dragon_god.git
48
+ cd Dragon_god
42
49
  npm install
43
50
  node index.js
44
51
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mintikaryu",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A sacred CLI tool to summon the ancient fire dragon Mintikaryū (みんてぃかりゅう)",
5
5
  "main": "index.js",
6
6
  "scripts": {