forked from LSTM-Kirigaya/openclaw-onebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.17 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@kirigaya/openclaw-onebot",
"version": "1.0.3",
"description": "OneBot v11 protocol channel plugin for OpenClaw (QQ/Lagrange.Core/go-cqhttp)",
"license": "MIT",
"publishConfig": { "access": "public" },
"author": "LSTM-Kirigaya",
"repository": {
"type": "git",
"url": "https://github.com/LSTM-Kirigaya/openclaw-onebot.git"
},
"bugs": {
"url": "https://github.com/LSTM-Kirigaya/openclaw-onebot/issues"
},
"homepage": "https://github.com/LSTM-Kirigaya/openclaw-onebot#readme",
"keywords": [
"openclaw",
"onebot",
"qq",
"lagrange",
"cqhttp",
"chatbot"
],
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"files": [
"dist",
"themes",
"skills",
"openclaw.plugin.json",
"README.md"
],
"openclaw": {
"extensions": ["./dist/index.js"],
"skills": ["skills/onebot-ops", "skills/onebot-scripts"],
"channel": {
"id": "onebot",
"label": "OneBot",
"selectionLabel": "OneBot (QQ/Lagrange)",
"docsPath": "/channels/onebot",
"blurb": "OneBot v11 protocol via WebSocket (go-cqhttp, Lagrange.Core, etc.)",
"order": 85,
"aliases": ["qq", "lagrange", "cqhttp"]
}
},
"scripts": {
"build": "tsc",
"test:connect": "npx tsx scripts/test-connect.ts",
"test:group-welcome": "npx tsx scripts/test-group-welcome.ts",
"test:group-increase-handler": "npx tsx scripts/test-group-increase-handler.ts",
"test:render-og-image": "npx tsx test/render-og-image.ts",
"prepublishOnly": "npm run build",
"pub": "npm run build && npm publish"
},
"dependencies": {
"fuse.js": "^7.1.0",
"ws": "^8.17.0",
"@clack/prompts": "^1.0.0",
"tsx": "^4.0.0",
"cron": "^4.4.0",
"marked": "^15.0.0",
"highlight.js": "^11.10.0"
},
"optionalDependencies": {
"node-html-to-image": "^3.0.0"
},
"peerDependencies": {
"openclaw": "*",
"clawdbot": "*"
},
"peerDependenciesMeta": {
"clawdbot": { "optional": true },
"openclaw": { "optional": true }
},
"devDependencies": {
"typescript": "^5.4.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.10"
},
"engines": {
"node": ">=22"
}
}