-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.87 KB
/
package.json
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "sonarqube-mcp-server",
"version": "1.1.0",
"description": "Model Context Protocol server for SonarQube",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"sonarqube-mcp-server": "./dist/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapientpants/sonarqube-mcp-server.git"
},
"bugs": {
"url": "https://github.com/sapientpants/sonarqube-mcp-server/issues"
},
"scripts": {
"build": "tsc",
"ci": "pnpm run format:check && pnpm run lint && pnpm run check-types && pnpm run build && pnpm run test:coverage",
"start": "node --experimental-specifier-resolution=node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"watch": "tsc -w",
"test": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --detectOpenHandles --forceExit",
"test:watch": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --watch --detectOpenHandles --forceExit",
"test:coverage": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage --detectOpenHandles --forceExit",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"check-types": "tsc --noEmit",
"prepare": "husky",
"validate": "pnpm run check-types && pnpm run lint && pnpm run test",
"inspect": "npx @modelcontextprotocol/inspector@latest node dist/index.js",
"clean": "rm -rf dist"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --check",
"eslint"
]
},
"keywords": [
"sonarqube",
"mcp",
"model-context-protocol"
],
"author": "Marc Tremblay <[email protected]>",
"homepage": "https://github.com/sapientpants/sonarqube-mcp-server",
"license": "MIT",
"packageManager": "[email protected]",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"axios": "^1.8.4",
"cors": "^2.8.5",
"express": "^4.21.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"nock": "^14.0.2",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.2"
}
}