aicq-chat-plugin 2.1.0 → 2.2.0

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.
@@ -94,7 +94,7 @@ console.log(`[AICQ] Starting plugin on port ${port}`);
94
94
  console.log(`[AICQ] Server: ${serverUrl}`);
95
95
 
96
96
  const env = { ...process.env, AICQ_PORT: port, AICQ_SERVER_URL: serverUrl };
97
- const child = spawn('node', [path.join(__dirname, '..', 'index.js')], {
97
+ const child = spawn('node', [path.join(__dirname, 'index.js')], {
98
98
  env,
99
99
  stdio: 'inherit',
100
100
  detached: false
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "aicq-chat-plugin",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "AICQ End-to-end Encrypted Chat Plugin for OpenClaw — Full UI with friend management, group chat, file transfer, and AI agent communication",
5
5
  "main": "index.js",
6
6
  "bin": {
7
- "aicq-plugin": "./bin/aicq-plugin.js"
7
+ "aicq-plugin": "cli.js"
8
8
  },
9
9
  "files": [
10
10
  "index.js",
11
- "bin/",
11
+ "cli.js",
12
+ "postinstall.js",
12
13
  "lib/",
13
14
  "public/",
14
15
  "openclaw.plugin.json",
@@ -16,7 +17,7 @@
16
17
  ],
17
18
  "scripts": {
18
19
  "start": "node index.js",
19
- "postinstall": "node bin/postinstall.js",
20
+ "postinstall": "node postinstall.js",
20
21
  "install-deps": "npm install"
21
22
  },
22
23
  "keywords": [
@@ -30,11 +31,11 @@
30
31
  "messaging",
31
32
  "p2p"
32
33
  ],
33
- "author": "朱东山",
34
+ "author": "ctz168",
34
35
  "license": "MIT",
35
36
  "repository": {
36
37
  "type": "git",
37
- "url": "https://github.com/ctz168/aicq.git",
38
+ "url": "git+https://github.com/ctz168/aicq.git",
38
39
  "directory": "plugin-js"
39
40
  },
40
41
  "bugs": {
File without changes