-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.04 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
{
"name": "context-engine-mcp",
"version": "2.0.1",
"description": "Context engine MCP server for comprehensive project analysis and multi-file editing",
"main": "dist/index.js",
"type": "module",
"bin": {
"context-engine-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "tsx --watch src/index.ts",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"install-global": "npm run build && npm install -g .",
"link": "npm run build && npm link"
},
"keywords": [
"mcp",
"context",
"analysis",
"multi-file",
"editing",
"ai",
"llm",
"development",
"typescript",
"production"
],
"author": "Rahees Ahmed",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"glob": "^10.3.10",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/raheesahmed/context-engine-mcp.git"
},
"bugs": {
"url": "https://github.com/raheesahmed/context-engine-mcp/issues"
},
"homepage": "https://github.com/raheesahmed/context-engine-mcp#readme"
}