-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1010 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1010 Bytes
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
{
"name": "claude-code-notifier",
"version": "1.0.0",
"description": "A powerful notification system for Claude Code with multi-channel support",
"main": "src/notifier.py",
"scripts": {
"install": "./install.sh",
"configure": "./scripts/configure.sh",
"test": "./scripts/test.sh"
},
"keywords": [
"claude-code",
"notification",
"dingtalk",
"feishu",
"wechat",
"telegram",
"webhook",
"automation"
],
"author": "Your Name <your.email@example.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/your-username/claude-code-notifier.git"
},
"bugs": {
"url": "https://github.com/your-username/claude-code-notifier/issues"
},
"homepage": "https://github.com/your-username/claude-code-notifier#readme",
"engines": {
"python": ">=3.6"
},
"os": [
"darwin",
"linux",
"win32"
],
"requirements": {
"python": [
"requests>=2.25.1",
"pyyaml>=5.4.1"
]
}
}