-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.44 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.44 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@vaur94/mcp-code",
"version": "0.2.0",
"description": "Production-grade MCP server for semantic coding workflows and AI coding-agent acceleration.",
"author": "vaur94",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"mcp-code": "dist/index.js"
},
"files": [
"dist",
"README.md",
"README.tr.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22.14.0",
"npm": ">=10.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaur94/mcp-code.git"
},
"bugs": {
"url": "https://github.com/vaur94/mcp-code/issues"
},
"homepage": "https://github.com/vaur94/mcp-code#readme",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"typescript",
"code-intelligence",
"agent-acceleration",
"semantic-editing"
],
"license": "MIT",
"scripts": {
"build": "tsup",
"clean": "rimraf coverage dist .turbo",
"dev": "tsup --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"audit": "npm audit --audit-level=high",
"pack:dry-run": "npm pack --dry-run",
"typecheck": "tsc --noEmit",
"test": "vitest run tests/unit tests/integration",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:protocol": "npm run build && vitest run tests/protocol",
"test:coverage": "vitest run tests/unit tests/integration --coverage",
"ci:check": "npm run format:check && npm run lint && npm run typecheck && npm run test:coverage && npm run test:protocol && npm run audit",
"prepack": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@vaur94/mcpbase": "^1.3.0",
"minimatch": "^10.2.4",
"ts-morph": "^27.0.2",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^25.3.5",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.4"
}
}