-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "wechat-ferry",
"version": "1.0.0",
"description": "An intelligent personal agent that combines WeChat protocols with Coze API to create an AI-powered chatbot capable of automatically handling WeChat messages.",
"main": "dist/app.js",
"type": "module",
"scripts": {
"dev": "ts-node --transpile-only -r tsconfig-paths/register src/app.ts --env development",
"test": "ts-node --transpile-only -r tsconfig-paths/register src/app.ts --env test",
"build": "tsc",
"start": "node -r tsconfig-paths/register dist/app.js --env production",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/iantsai/wechat-bot.git"
},
"keywords": [
"wechat",
"bot",
"ai",
"coze",
"automation",
"personal-agent",
"wechat-api"
],
"author": "iantsai",
"license": "MIT",
"bugs": {
"url": "https://github.com/iantsai/wechat-bot/issues"
},
"homepage": "https://github.com/iantsai/wechat-bot#readme",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.3",
"@types/node": "^24.2.0",
"@wechatferry/agent": "^0.0.26",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0"
},
"dependencies": {
"@coze/api": "^1.3.5",
"@types/express": "^5.0.3",
"@wechatferry/agent": "^0.0.26",
"axios": "^1.11.0",
"better-sqlite3": "^12.2.0",
"dayjs": "^1.11.13",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"fast-xml-parser": "^5.2.5"
}
}