lewxclaw 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 +47 -0
- package/dist/index.js +3282 -0
- package/dist/index.js.map +1 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lewxclaw",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "WxClaw — 公众号创作全流程自动化 Agent",
|
|
5
|
+
"private": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"bin": {
|
|
10
|
+
"lewxclaw": "dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"keywords": [
|
|
17
|
+
"wechat",
|
|
18
|
+
"公众号",
|
|
19
|
+
"agent",
|
|
20
|
+
"ai",
|
|
21
|
+
"content-creation",
|
|
22
|
+
"automation"
|
|
23
|
+
],
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"build:tsc": "tsc",
|
|
28
|
+
"lint": "echo ok",
|
|
29
|
+
"test": "vitest run",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"prepublishOnly": "pnpm run build"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@wechat-agent/core": "workspace:*",
|
|
35
|
+
"@wechat-agent/providers": "workspace:*",
|
|
36
|
+
"chalk": "^5.6.2",
|
|
37
|
+
"commander": "^14.0.3",
|
|
38
|
+
"inquirer": "^13.3.2",
|
|
39
|
+
"ora": "^9.3.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/inquirer": "^9.0.9",
|
|
43
|
+
"@wechat-agent/tsconfig": "workspace:*",
|
|
44
|
+
"tsup": "^8.5.1",
|
|
45
|
+
"vitest": "^3.1.0"
|
|
46
|
+
}
|
|
47
|
+
}
|