-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 886 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": "dev.mcp",
"version": "1.0.0",
"description": "Harness-agnostic MCP stdio server (Figma REST, Jira, Confluence, and GitLab).",
"type": "module",
"main": "dist/index.js",
"bin": {
"dev.mcp": "dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"figma",
"jira",
"confluence",
"gitlab"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"dotenv": "^16.6.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.18.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}