-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.32 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
{
"name": "@propersama/openclaw-napcat",
"version": "1.0.11",
"private": false,
"description": "QQ chat channel plugin for OpenClaw via NapCat (OneBot 11)",
"repository": {
"type": "git",
"url": "git+https://github.com/ProperSAMA/openclaw-napcat-plugin.git"
},
"bugs": {
"url": "https://github.com/ProperSAMA/openclaw-napcat-plugin/issues"
},
"homepage": "https://github.com/ProperSAMA/openclaw-napcat-plugin#readme",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node --test tests/*.test.mjs",
"prepack": "npm run build"
},
"files": [
"dist",
"openclaw.plugin.json",
"README.md",
"LICENSE.md",
"skill",
"!skill/napcat-qq/scripts/qq-contact-search.js"
],
"keywords": [
"openclaw",
"plugin",
"napcat",
"qq",
"onebot11"
],
"peerDependencies": {
"openclaw": ">=2026.6.1"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.15.3",
"openclaw": "^2026.6.1",
"typescript": "^5.8.3"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"install": {
"npmSpec": "@propersama/openclaw-napcat",
"minHostVersion": ">=2026.6.1"
}
},
"publishConfig": {
"access": "public"
}
}