-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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": "@opensourceops/canny-mcp",
"version": "1.3.0",
"description": "MCP server for Canny feedback management with Jira integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"canny-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:integration": "jest --testPathPattern=tests/integration",
"test:e2e": "jest --testPathPattern=tests/e2e --testTimeout=60000",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"canny",
"feedback",
"product-management",
"jira"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/opensourceops/canny-mcp-server.git"
},
"homepage": "https://github.com/opensourceops/canny-mcp-server#readme",
"bugs": {
"url": "https://github.com/opensourceops/canny-mcp-server/issues"
},
"files": [
"dist",
"config/default.json",
"config/prompts.example.json"
],
"engines": {
"node": "^20.9.0 || ^22.0.0 || ^24.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}