@kuandotdev/indicator 0.1.4 → 0.1.5
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
CHANGED
|
@@ -7,3 +7,27 @@ runtime. It wraps the existing repo commands for install, uninstall, diagnostics
|
|
|
7
7
|
MCP/agent import, market data, and model forecast checks.
|
|
8
8
|
The npm package includes the installable project files directly, so users do not
|
|
9
9
|
need GitHub repository access to install the tool.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
Run directly with `npx`:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx @kuandotdev/indicator install
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or install it into your current project first:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm i @kuandotdev/indicator
|
|
23
|
+
npx indicator install
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Or install globally:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npm i -g @kuandotdev/indicator
|
|
30
|
+
indicator install
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The `npx @kuandotdev/indicator install` option is recommended for most users.
|
package/package.json
CHANGED
|
@@ -7,3 +7,27 @@ runtime. It wraps the existing repo commands for install, uninstall, diagnostics
|
|
|
7
7
|
MCP/agent import, market data, and model forecast checks.
|
|
8
8
|
The npm package includes the installable project files directly, so users do not
|
|
9
9
|
need GitHub repository access to install the tool.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
Run directly with `npx`:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx @kuandotdev/indicator install
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or install it into your current project first:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm i @kuandotdev/indicator
|
|
23
|
+
npx indicator install
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Or install globally:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npm i -g @kuandotdev/indicator
|
|
30
|
+
indicator install
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The `npx @kuandotdev/indicator install` option is recommended for most users.
|