sentron-cli 1.0.2 → 1.0.4
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 +4 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/package.json +3 -2
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* Command-line interface for Sentron API
|
|
5
5
|
*
|
|
6
6
|
* Usage:
|
|
7
|
-
* npx
|
|
8
|
-
* npx
|
|
9
|
-
* npx
|
|
7
|
+
* npx sentron-cli auth signin
|
|
8
|
+
* npx sentron-cli auth me
|
|
9
|
+
* npx sentron-cli metrics
|
|
10
10
|
*/
|
|
11
11
|
export {};
|
|
12
12
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* Command-line interface for Sentron API
|
|
5
5
|
*
|
|
6
6
|
* Usage:
|
|
7
|
-
* npx
|
|
8
|
-
* npx
|
|
9
|
-
* npx
|
|
7
|
+
* npx sentron-cli auth signin
|
|
8
|
+
* npx sentron-cli auth me
|
|
9
|
+
* npx sentron-cli metrics
|
|
10
10
|
*/
|
|
11
11
|
import { Command } from 'commander';
|
|
12
12
|
import { setupAuthCommands } from './commands/auth.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sentron-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Sentron CLI - Command-line interface for Sentron API",
|
|
5
|
+
"readme": "README.md",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
|
7
8
|
"bin": {
|
|
@@ -19,7 +20,7 @@
|
|
|
19
20
|
"mcp"
|
|
20
21
|
],
|
|
21
22
|
"author": "Sentron",
|
|
22
|
-
"license": "
|
|
23
|
+
"license": "UNLICENSED",
|
|
23
24
|
"homepage": "https://sentron.dev",
|
|
24
25
|
"engines": {
|
|
25
26
|
"node": ">=18.0.0"
|