-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "openclaw-china",
"version": "0.1.0",
"description": "Moltbot extensions for China IM platforms (DingTalk, WeCom, Feishu, QQ)",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"extensions/*"
],
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"build:shared": "pnpm -F @openclaw-china/shared build",
"build:dingtalk": "pnpm -F @openclaw-china/dingtalk build",
"build:channels": "pnpm -F @openclaw-china/channels build",
"release:all": "node scripts/release-all.mjs",
"release:channel": "node scripts/release-all.mjs",
"clean": "pnpm -r clean",
"lint": "oxlint .",
"typecheck": "tsc --noEmit"
},
"keywords": [
"moltbot",
"dingtalk",
"wecom",
"feishu",
"lark",
"qq",
"chatbot"
],
"author": "BytePioneer-AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BytePioneer-AI/openclaw-china.git"
},
"devDependencies": {
"@types/node": "^22.0.0",
"oxlint": "^0.16.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.0.0",
"dependencies": {
"@openclaw-china/channels": "^0.1.13",
"dingtalk-stream": "^2.1.4"
}
}