@rocketmq/cli 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +19 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # @rocketmq/cli
2
+
3
+ Command-line interface tools for managing RocketMQ.
4
+
5
+ Provides utility commands for inspecting schemas, debugging AMQP connections, and interacting with the RocketMQ broker directly from the terminal.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install -g @rocketmq/cli
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ *(CLI commands and usage to be documented)*
16
+
17
+ ## License
18
+
19
+ Apache 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rocketmq/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "rocketmq": "./dist/bin.js"
@@ -12,8 +12,8 @@
12
12
  }
13
13
  },
14
14
  "dependencies": {
15
- "@rocketmq/core": "0.1.0",
16
- "@rocketmq/schema": "0.1.0"
15
+ "@rocketmq/core": "0.1.1",
16
+ "@rocketmq/schema": "0.1.1"
17
17
  },
18
18
  "scripts": {
19
19
  "build": "tsup",