-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1018 Bytes
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
{
"name": "wechat-customer-service-worker",
"version": "1.0.0",
"description": "微信客服 Cloudflare Worker 版本 - 支持多种 OpenAI 兼容 AI 服务",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"deploy:prod": "wrangler deploy --env production",
"deploy:dev": "wrangler deploy --env development",
"tail": "wrangler tail",
"kv:create": "wrangler kv:namespace create CONVERSATIONS && wrangler kv:namespace create MESSAGE_TRACKER",
"kv:create:preview": "wrangler kv:namespace create CONVERSATIONS --preview && wrangler kv:namespace create MESSAGE_TRACKER --preview"
},
"keywords": [
"wechat",
"customer-service",
"cloudflare-worker",
"ai-chatbot",
"openai-compatible",
"k2think",
"multi-ai-service"
],
"author": "",
"license": "MIT",
"devDependencies": {
"wrangler": "^3.0.0"
},
"dependencies": {
"@wecom/crypto": "^1.0.1",
"fast-xml-parser": "^5.2.5"
}
}