@matteai/stma 0.2.1 → 0.11.0
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 +5 -2
- package/dist/index.js +764 -91
- package/dist/index.js.map +1 -1
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -11,11 +11,14 @@ Works with a hosted STMA deployment or your own self-hosted one
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install -g stma
|
|
14
|
+
npm install -g @matteai/stma
|
|
15
15
|
# or run it without installing
|
|
16
|
-
npx stma --help
|
|
16
|
+
npx @matteai/stma --help
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
The package is scoped (`@matteai/stma`) because the bare `stma` name is blocked by npm's
|
|
20
|
+
similarity check — the installed command is still `stma`.
|
|
21
|
+
|
|
19
22
|
## Configure
|
|
20
23
|
|
|
21
24
|
The CLI reads two environment variables and never writes your token to disk:
|