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.
- package/README.md +15 -8
- 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
|
-
## 🔮
|
|
20
|
+
## 🔮 The Summoning Ritual (Usage)
|
|
21
21
|
|
|
22
|
-
|
|
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
|
-
|
|
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,
|
|
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 (
|
|
42
|
+
### The Solitary Invocation (Local Development)
|
|
38
43
|
|
|
39
|
-
Should you wish to
|
|
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
|
```
|