-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.42 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": "dear-claude",
"version": "1.2.0",
"mcpName": "io.github.sns45/dear-claude",
"description": "MCP server that triggers local Claude Code instances from external platforms (GitHub, Linear, Jira, GitLab, Notion, Obsidian) when 'Dear Claude' is mentioned",
"type": "module",
"main": "./dist/index.js",
"bin": {
"dear-claude": "./dist/index.js"
},
"files": [
"dist/index.js",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"test": "bun test",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.25",
"@linear/sdk": "^29.0.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"@octokit/rest": "^20.0.0",
"commander": "^12.0.0",
"hono": "^4.6.0"
},
"devDependencies": {
"@types/bun": "latest"
},
"keywords": [
"claude",
"claude-code",
"mcp",
"linear",
"github",
"gitlab",
"jira",
"notion",
"obsidian",
"automation",
"dear-claude"
],
"author": "Shantanu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sns45/dear-claude.git"
},
"homepage": "https://github.com/sns45/dear-claude#readme",
"bugs": {
"url": "https://github.com/sns45/dear-claude/issues"
},
"engines": {
"node": ">=18"
}
}