forked from photon-hq/qclaw-wechat-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.28 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.28 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
58
59
60
61
62
{
"name": "qclaw-wechat-client",
"version": "0.1.1",
"description": "Reverse-engineered TypeScript client for QClaw's WeChat Access API (jprx gateway protocol)",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"sideEffects": false,
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"demo": "tsx examples/full-flow.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photon-hq/qclaw-wechat-client.git"
},
"homepage": "https://github.com/photon-hq/qclaw-wechat-client#readme",
"bugs": {
"url": "https://github.com/photon-hq/qclaw-wechat-client/issues"
},
"keywords": [
"qclaw",
"wechat",
"openclaw",
"tencent",
"websocket",
"api-client"
],
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src",
"README.md"
],
"license": "MIT",
"dependencies": {
"ws": "^8.19.0"
},
"devDependencies": {
"@types/ws": "^8.18.1",
"tsdown": "^0.21.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}