-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 880 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 880 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
{
"name": "codesentinel-monorepo",
"version": "0.2.6",
"private": true,
"description": "CodeSentinel monorepo - MCP server for code quality analysis",
"type": "module",
"workspaces": [
"packages/*"
],
"overrides": {
"@modelcontextprotocol/sdk": "^1.24.0"
},
"scripts": {
"build": "npm run build --workspaces",
"build:core": "npm run build -w @codesentinel/core",
"build:stdio": "npm run build -w code-sentinel-mcp",
"build:all": "npm run build:core && npm run build:stdio",
"clean": "npm run clean --workspaces --if-present",
"dev": "npm run watch -w @codesentinel/core",
"inspector": "npm run inspector -w code-sentinel-mcp"
},
"devDependencies": {
"typescript": "^5.3.3"
},
"keywords": [
"mcp",
"code-quality",
"security",
"linting",
"claude"
],
"author": "Rasha",
"license": "MIT"
}