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 CHANGED
@@ -78,3 +78,7 @@ Environment variables:
78
78
 
79
79
  - Website: https://sentron.dev
80
80
  - Documentation: https://sentron.dev/docs
81
+
82
+ ## License
83
+
84
+ Proprietary - All rights reserved. See https://sentron.dev for terms.
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 @sentron/cli auth signin
8
- * npx @sentron/cli auth me
9
- * npx @sentron/cli metrics
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 @sentron/cli auth signin
8
- * npx @sentron/cli auth me
9
- * npx @sentron/cli metrics
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.2",
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": "MIT",
23
+ "license": "UNLICENSED",
23
24
  "homepage": "https://sentron.dev",
24
25
  "engines": {
25
26
  "node": ">=18.0.0"