aamp-wechat-bridge 0.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/README.md +75 -0
- package/dist/index.js +3541 -0
- package/dist/index.js.map +7 -0
- package/package.json +32 -0
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aamp-wechat-bridge",
|
|
3
|
+
"files": [
|
|
4
|
+
"dist"
|
|
5
|
+
],
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"version": "0.1.0",
|
|
8
|
+
"description": "Local WeChat bridge daemon that logs in with QR scan and bridges native WeChat conversations to a target AAMP agent.",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "dist/index.js",
|
|
11
|
+
"bin": {
|
|
12
|
+
"aamp-wechat-bridge": "dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "node esbuild.config.js",
|
|
16
|
+
"dev": "node esbuild.config.js --watch",
|
|
17
|
+
"prepare": "npm run build",
|
|
18
|
+
"prepack": "npm run build",
|
|
19
|
+
"start": "./dist/index.js run"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"aamp-sdk": "^0.1.19",
|
|
23
|
+
"nodemailer": "^6.9.10",
|
|
24
|
+
"qrcode-terminal": "^0.12.0",
|
|
25
|
+
"ws": "^8.16.0"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "^20.11.30",
|
|
29
|
+
"esbuild": "^0.20.2",
|
|
30
|
+
"typescript": "^5.4.3"
|
|
31
|
+
}
|
|
32
|
+
}
|