-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.87 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
85
86
{
"name": "openclaw-github-trending",
"version": "1.5.0",
"description": "OpenClaw plugin for fetching GitHub trending repositories and pushing to Feishu or Email with AI summaries",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"github",
"trending",
"feishu",
"email",
"wechat",
"ai",
"notifications",
"automation"
],
"author": {
"name": "王允",
"email": "906971957@qq.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wy-ruby/openclaw-github-trending.git"
},
"bugs": {
"url": "https://github.com/wy-ruby/openclaw-github-trending/issues"
},
"homepage": "https://github.com/wy-ruby/openclaw-github-trending#readme",
"license": "MIT",
"type": "commonjs",
"files": [
"dist",
"openclaw.plugin.json",
"docs",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"peerDependencies": {
"openclaw": "^0.0.1"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"axios": "^1.13.6",
"cheerio": "^1.2.0",
"marked": "^17.0.4",
"nodemailer": "^8.0.2",
"openai": "^6.27.0",
"sanitize-html": "^2.17.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.4.0",
"@types/nodemailer": "^7.0.11",
"@types/sanitize-html": "^2.16.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"hooks": {
"register": true,
"tool": true,
"cli": true,
"storage": true,
"config": true
}
}
}