@dainprotocol/cli 1.0.32 → 1.0.35
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 +17 -0
- package/package.json +8 -3
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.
|
|
3
|
+
"version": "1.0.35",
|
|
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,12 +16,13 @@
|
|
|
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",
|
|
19
24
|
"@dainprotocol/service-sdk": "^1.0.41",
|
|
20
|
-
"@dainprotocol/tunnel": "^1.0.
|
|
25
|
+
"@dainprotocol/tunnel": "^1.0.3",
|
|
21
26
|
"@types/fs-extra": "^11.0.4",
|
|
22
27
|
"@types/localtunnel": "^2.0.4",
|
|
23
28
|
"ai": "^3.3.41",
|