aicq-chat-plugin 2.1.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.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "aicq-chat-plugin",
3
+ "version": "2.1.0",
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
+ "main": "index.js",
6
+ "bin": {
7
+ "aicq-plugin": "./bin/aicq-plugin.js"
8
+ },
9
+ "files": [
10
+ "index.js",
11
+ "bin/",
12
+ "lib/",
13
+ "public/",
14
+ "openclaw.plugin.json",
15
+ "README.md"
16
+ ],
17
+ "scripts": {
18
+ "start": "node index.js",
19
+ "postinstall": "node bin/postinstall.js",
20
+ "install-deps": "npm install"
21
+ },
22
+ "keywords": [
23
+ "aicq",
24
+ "chat",
25
+ "encrypted",
26
+ "e2ee",
27
+ "openclaw",
28
+ "plugin",
29
+ "ai-agent",
30
+ "messaging",
31
+ "p2p"
32
+ ],
33
+ "author": "朱东山",
34
+ "license": "MIT",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/ctz168/aicq.git",
38
+ "directory": "plugin-js"
39
+ },
40
+ "bugs": {
41
+ "url": "https://github.com/ctz168/aicq/issues"
42
+ },
43
+ "homepage": "https://aicq.online",
44
+ "dependencies": {
45
+ "better-sqlite3": "^11.0.0",
46
+ "tweetnacl": "^1.0.3",
47
+ "tweetnacl-util": "^0.15.1",
48
+ "ws": "^8.16.0",
49
+ "qrcode": "^1.5.3",
50
+ "express": "^4.18.2",
51
+ "multer": "^1.4.5-lts.1",
52
+ "marked": "^12.0.0",
53
+ "node-fetch": "^2.7.0"
54
+ },
55
+ "engines": {
56
+ "node": ">=18.0.0"
57
+ }
58
+ }