@dainprotocol/cli 1.0.32 → 1.0.34

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 +17 -0
  2. package/package.json +7 -2
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # DAIN CLI
2
+
3
+ A command-line interface tool for the DAIN Protocol service sdks.
4
+
5
+ ## Installation
6
+
7
+ Install globally via npm:
8
+
9
+ ```bash
10
+ npm install @dainprotocol/cli -g
11
+ ```
12
+
13
+ ## Documentation
14
+
15
+ For detailed documentation, usage guides, and additional information, please visit:
16
+ [https://docs.dain.org](https://docs.dain.org)
17
+
package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "@dainprotocol/cli",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
+ "private": false,
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
4
8
  "description": "CLI for Dain Protocol",
5
9
  "main": "dist/index.js",
6
10
  "bin": {
@@ -12,7 +16,8 @@
12
16
  },
13
17
  "files": [
14
18
  "dist",
15
- "templates"
19
+ "templates",
20
+ "README.md"
16
21
  ],
17
22
  "dependencies": {
18
23
  "@ai-sdk/anthropic": "^0.0.50",