@dainprotocol/cli 1.0.31 → 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.
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
+
@@ -17,6 +17,7 @@
17
17
  "typescript": "^5.5.4",
18
18
  "@types/express": "^4.17.13",
19
19
  "@types/node": "^22.5.4",
20
- "axios": "^1.7.5"
20
+ "axios": "^1.7.5",
21
+ "@dainprotocol/cli": "^1.0.31"
21
22
  }
22
23
  }
@@ -106,6 +106,7 @@ const dainService = defineDAINService({
106
106
  version: "1.0.0",
107
107
  author: "Your Name",
108
108
  tags: ["weather", "forecast", "dain"],
109
+ logo: "https://cdn-icons-png.flaticon.com/512/252/252035.png"
109
110
  },
110
111
  identity: {
111
112
  apiKey: process.env.DAIN_API_KEY,
package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "@dainprotocol/cli",
3
- "version": "1.0.31",
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",
@@ -17,6 +17,7 @@
17
17
  "typescript": "^5.5.4",
18
18
  "@types/express": "^4.17.13",
19
19
  "@types/node": "^22.5.4",
20
- "axios": "^1.7.5"
20
+ "axios": "^1.7.5",
21
+ "@dainprotocol/cli": "^1.0.31"
21
22
  }
22
23
  }
@@ -106,6 +106,7 @@ const dainService = defineDAINService({
106
106
  version: "1.0.0",
107
107
  author: "Your Name",
108
108
  tags: ["weather", "forecast", "dain"],
109
+ logo: "https://cdn-icons-png.flaticon.com/512/252/252035.png"
109
110
  },
110
111
  identity: {
111
112
  apiKey: process.env.DAIN_API_KEY,