@aka_openclaw_plugin/mychat 0.1.3 → 0.1.4

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.
@@ -0,0 +1,15 @@
1
+ {
2
+ "id": "mychat",
3
+ "activation": {
4
+ "onStartup": false
5
+ },
6
+ "channels": ["mychat"],
7
+ "channelEnvVars": {
8
+ "mychat": ["MYCHAT_BOT_TOKEN"]
9
+ },
10
+ "configSchema": {
11
+ "type": "object",
12
+ "additionalProperties": false,
13
+ "properties": {}
14
+ }
15
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@aka_openclaw_plugin/mychat",
3
+ "version": "0.1.4",
4
+ "description": "OpenClaw MyChat channel plugin",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/havcino/openclaw.git"
8
+ },
9
+ "type": "module",
10
+ "exports": {
11
+ ".": "./index.js",
12
+ "./channel-plugin-api.js": "./channel-plugin-api.js",
13
+ "./runtime-setter-api.js": "./runtime-setter-api.js",
14
+ "./runtime-api.js": "./runtime-api.js",
15
+ "./config-api.js": "./config-api.js"
16
+ },
17
+ "dependencies": {
18
+ "zod": "4.4.3"
19
+ },
20
+ "devDependencies": {
21
+ "@openclaw/plugin-sdk": "workspace:*",
22
+ "openclaw": "workspace:*"
23
+ },
24
+ "peerDependencies": {
25
+ "openclaw": ">=2026.5.18"
26
+ },
27
+ "peerDependenciesMeta": {
28
+ "openclaw": {
29
+ "optional": true
30
+ }
31
+ },
32
+ "openclaw": {
33
+ "extensions": [
34
+ "./index.ts"
35
+ ],
36
+ "channel": {
37
+ "id": "mychat",
38
+ "label": "MyChat",
39
+ "selectionLabel": "MyChat",
40
+ "detailLabel": "MyChat",
41
+ "docsPath": "/channels/mychat",
42
+ "docsLabel": "mychat",
43
+ "blurb": "MyChat private messaging channel.",
44
+ "systemImage": "chat",
45
+ "order": 120
46
+ },
47
+ "install": {
48
+ "npmSpec": "@aka_openclaw_plugin/mychat",
49
+ "defaultChoice": "npm",
50
+ "minHostVersion": ">=2026.5.18"
51
+ },
52
+ "compat": {
53
+ "pluginApi": ">=2026.5.18"
54
+ },
55
+ "build": {
56
+ "openclawVersion": "2026.5.18"
57
+ },
58
+ "release": {
59
+ "publishToClawHub": true,
60
+ "publishToNpm": true
61
+ }
62
+ },
63
+ "files": [
64
+ "dist/**",
65
+ "openclaw.plugin.json",
66
+ "README.md"
67
+ ]
68
+ }
@@ -0,0 +1,5 @@
1
+ import { i as setMychatRuntime, n as init_runtime } from "./runtime-7z_VfQ27.js";
2
+ //#region runtime-setter-api.ts
3
+ init_runtime();
4
+ //#endregion
5
+ export { setMychatRuntime };
@@ -0,0 +1,2 @@
1
+ import { t as mychatPlugin } from "./channel-D_abyn0t.js";
2
+ export { mychatPlugin };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aka_openclaw_plugin/mychat",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "OpenClaw MyChat channel plugin",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,15 +8,19 @@
8
8
  },
9
9
  "type": "module",
10
10
  "exports": {
11
- ".": "./index.ts",
12
- "./channel-plugin-api.js": "./channel-plugin-api.ts",
13
- "./runtime-setter-api.js": "./runtime-setter-api.ts",
14
- "./runtime-api.js": "./runtime-api.ts",
15
- "./config-api.js": "./config-api.ts"
11
+ ".": "./index.js",
12
+ "./channel-plugin-api.js": "./channel-plugin-api.js",
13
+ "./runtime-setter-api.js": "./runtime-setter-api.js",
14
+ "./runtime-api.js": "./runtime-api.js",
15
+ "./config-api.js": "./config-api.js"
16
16
  },
17
17
  "dependencies": {
18
18
  "zod": "4.4.3"
19
19
  },
20
+ "devDependencies": {
21
+ "@openclaw/plugin-sdk": "workspace:*",
22
+ "openclaw": "workspace:*"
23
+ },
20
24
  "peerDependencies": {
21
25
  "openclaw": ">=2026.5.18"
22
26
  },
@@ -57,7 +61,8 @@
57
61
  }
58
62
  },
59
63
  "files": [
60
- "*.js",
61
- "openclaw.plugin.json"
64
+ "dist/**",
65
+ "openclaw.plugin.json",
66
+ "README.md"
62
67
  ]
63
68
  }
@@ -1,2 +0,0 @@
1
- import { t as mychatPlugin } from "./channel-Dbv-np-3.js";
2
- export { mychatPlugin };
package/setup-entry.js DELETED
@@ -1,2 +0,0 @@
1
- import { t as mychatPlugin } from "./channel-Dbv-np-3.js";
2
- export { mychatPlugin };
File without changes
File without changes