forked from sethdford/mcp-nodejs-atlassian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "mcp-atlassian-nodejs",
"version": "1.0.0",
"description": "Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira) - Node.js implementation",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"oauth-setup": "node dist/index.js --oauth-setup",
"dev": "tsx src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"mcp",
"atlassian",
"jira",
"confluence",
"ai",
"claude"
],
"author": "Node.js conversion",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.27.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^12.0.0",
"dotenv": "^16.0.0",
"axios": "^1.6.0",
"jsdom": "^25.0.0",
"turndown": "^7.1.0",
"markdown-it": "^14.0.0",
"node-html-markdown": "^1.3.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/jsdom": "^21.0.0",
"@types/turndown": "^5.0.0",
"@types/markdown-it": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"bin": {
"mcp-atlassian": "./dist/index.js"
}
}