weacpx 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/LICENSE +21 -0
- package/README.md +261 -0
- package/config.example.json +30 -0
- package/dist/bridge/bridge-main.js +229 -0
- package/dist/cli.js +3224 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "weacpx",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"bin": {
|
|
5
|
+
"weacpx": "dist/cli.js"
|
|
6
|
+
},
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md",
|
|
10
|
+
"config.example.json"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "bun build ./src/cli.ts ./src/bridge/bridge-main.ts --outdir ./dist --target node --external node-pty",
|
|
14
|
+
"dev": "bun run ./src/cli.ts run",
|
|
15
|
+
"dry-run": "bun run ./src/dry-run.ts",
|
|
16
|
+
"login": "bun run ./src/cli.ts login",
|
|
17
|
+
"start": "node ./dist/cli.js run",
|
|
18
|
+
"daemon:start": "bun run ./src/cli.ts start",
|
|
19
|
+
"daemon:status": "bun run ./src/cli.ts status",
|
|
20
|
+
"daemon:stop": "bun run ./src/cli.ts stop",
|
|
21
|
+
"test": "node ./scripts/run-tests.mjs",
|
|
22
|
+
"test:unit": "node ./scripts/run-tests.mjs tests/unit",
|
|
23
|
+
"test:smoke": "node ./scripts/run-tests.mjs tests/smoke"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"acpx": "^0.3.1",
|
|
27
|
+
"node-pty": "^1.1.0",
|
|
28
|
+
"qrcode-terminal": "^0.12.0",
|
|
29
|
+
"weixin-agent-sdk": "^0.2.0"
|
|
30
|
+
},
|
|
31
|
+
"description": "用微信远程控制 `acpx` 会话的控制台, 底层基于 `weixin-agent-sdk` 与 `acpx`",
|
|
32
|
+
"version": "0.1.0",
|
|
33
|
+
"main": "index.js",
|
|
34
|
+
"directories": {
|
|
35
|
+
"doc": "docs",
|
|
36
|
+
"test": "tests"
|
|
37
|
+
},
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/gadzan/weacpx.git"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"acpx",
|
|
44
|
+
"weixin-agent-sdk",
|
|
45
|
+
"openclaw",
|
|
46
|
+
"weixin"
|
|
47
|
+
],
|
|
48
|
+
"author": "gadzan",
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/gadzan/weacpx/issues"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://github.com/gadzan/weacpx#readme"
|
|
54
|
+
}
|