-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.92 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
{
"name": "productboard-mcp",
"version": "1.0.0",
"description": "MCP server for Productboard API integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npx tsc && node scripts/fix-imports.js",
"dev": "tsx --watch src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "npx tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"oauth2:setup": "npm run build && node scripts/oauth2-setup.js"
},
"keywords": [
"mcp",
"productboard",
"api",
"typescript",
"model-context-protocol",
"ai-assistant",
"integration"
],
"author": "Stanislav Shymanskyi <taysic@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Enreign/productboard-mcp.git"
},
"bugs": {
"url": "https://github.com/Enreign/productboard-mcp/issues"
},
"homepage": "https://github.com/Enreign/productboard-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.1",
"lru-cache": "^10.0.1",
"pino": "^8.16.0",
"pino-pretty": "^10.2.3"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^29.5.8",
"@types/nock": "^10.0.3",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"dotenv": "^16.5.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"express": "^5.1.0",
"glob": "^11.0.3",
"jest": "^29.7.0",
"nock": "^14.0.5",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tsx": "^4.0.0",
"typescript": "^5.2.2"
}
}