easyclaw-link 0.1.0-alpha.1 → 0.1.0-alpha.2

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/dist/index.js +1 -2
  2. package/package.json +14 -5
package/dist/index.js CHANGED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env node
2
- #!/usr/bin/env node
3
2
  "use strict";
4
3
  var __create = Object.create;
5
4
  var __defProp = Object.defineProperty;
@@ -3140,7 +3139,7 @@ async function creditsAction() {
3140
3139
 
3141
3140
  // src/index.ts
3142
3141
  var program2 = new Command();
3143
- program2.name("easyclaw-link").description("EasyClaw Link CLI - Publish and manage skills on EasyClaw Link platform").version("0.1.0-alpha.1");
3142
+ program2.name("easyclaw-link").description("EasyClaw Link CLI - Publish and manage skills on EasyClaw Link platform").version("0.1.0-alpha.2");
3144
3143
  program2.command("login").description("\u767B\u5F55 EasyClaw Link\uFF0C\u4FDD\u5B58 API Key").action(loginAction);
3145
3144
  program2.command("publish [dir]").description("\u53D1\u5E03\u6216\u66F4\u65B0\u6280\u80FD\u5230 EasyClaw Link \u5E73\u53F0").option("--id <id>", "\u66F4\u65B0\u6307\u5B9A ID \u7684\u6280\u80FD").option("--slug <slug>", "\u901A\u8FC7 slug \u66F4\u65B0\u5DF2\u6709\u6280\u80FD").action(publishAction);
3146
3145
  program2.command("list").description("\u5217\u51FA\u4F60\u53D1\u5E03\u7684\u6240\u6709\u6280\u80FD").action(listAction);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easyclaw-link",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0-alpha.2",
4
4
  "description": "EasyClaw Link CLI - Publish and manage skills on easyclaw.link",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -11,9 +11,18 @@
11
11
  "dev": "tsc --watch",
12
12
  "prepublishOnly": "npm run build"
13
13
  },
14
- "keywords": ["easyclaw-link", "cli", "skills", "ai-agent"],
15
- "engines": { "node": ">=18" },
16
- "files": ["dist/"],
14
+ "keywords": [
15
+ "easyclaw-link",
16
+ "cli",
17
+ "skills",
18
+ "ai-agent"
19
+ ],
20
+ "engines": {
21
+ "node": ">=18"
22
+ },
23
+ "files": [
24
+ "dist/"
25
+ ],
17
26
  "dependencies": {
18
27
  "commander": "^11.1.0"
19
28
  },
@@ -22,4 +31,4 @@
22
31
  "esbuild": "^0.20.0",
23
32
  "typescript": "^5.3.0"
24
33
  }
25
- }
34
+ }