-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.26 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.26 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@alvinveroy/codecompass",
"version": "1.5.6",
"description": "AI-powered MCP server for codebase navigation and LLM prompt optimization",
"main": "dist/index.js",
"bin": {
"codecompass": "dist/index.js",
"codecompass-provider": "dist/lib/provider-cli.js"
},
"scripts": {
"build": "tsc",
"prebuild": "npm run test || echo 'Tests failed but continuing build'",
"start": "node dist/index.js",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:deepseek": "ts-node src/scripts/test-deepseek.ts",
"set-deepseek-key": "ts-node src/scripts/set-deepseek-key.ts",
"version:patch": "ts-node src/scripts/version-bump.ts patch",
"version:minor": "ts-node src/scripts/version-bump.ts minor",
"version:major": "ts-node src/scripts/version-bump.ts major",
"version:commit": "ts-node src/scripts/version-bump.ts patch --commit",
"version:release": "ts-node src/scripts/version-bump.ts patch --commit --push --changelog",
"version:minor-release": "ts-node src/scripts/version-bump.ts minor --commit --push --changelog",
"version:major-release": "ts-node src/scripts/version-bump.ts major --commit --push --changelog",
"version:set-from-tag": "ts-node src/scripts/version-bump.ts",
"publish:local": "npm run build && npm version patch && npm publish",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"setup:gitignore": "ts-node src/scripts/update-gitignore.ts",
"setup:hooks": "ts-node src/scripts/install-git-hooks.ts"
},
"keywords": [
"mcp-server",
"typescript",
"node.js",
"qdrant",
"ollama",
"git",
"codebase-analysis",
"ai-coding",
"vector-database",
"npx",
"vscode",
"claude",
"cursor",
"zed",
"windsurf"
],
"author": "Alvin Veroy",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@qdrant/js-client-rest": "^1.14.1",
"@vitest/mocker": "^3.1.4",
"axios": "^1.9.0",
"diff": "^8.0.2",
"esbuild": "^0.25.5",
"fs-extra": "^11.3.0",
"isomorphic-git": "^1.30.2",
"node-cache": "^5.1.2",
"uuid": "^11.1.0",
"vite": "^6.3.5",
"vite-node": "^3.1.4",
"winston": "^3.17.0",
"yargs": "^18.0.0",
"zod": "^3.25.45"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/diff": "^8.0.0",
"@types/express": "^5.0.2",
"@types/fs-extra": "^11.0.4",
"@types/nock": "^11.1.0",
"@types/node": "^22.15.29",
"@types/uuid": "^10.0.0",
"@types/yargs": "^17.0.33",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"nock": "^14.0.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vitest": "^3.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvinveroy/codecompass.git"
},
"homepage": "https://github.com/alvinveroy/codecompass#readme",
"bugs": {
"url": "https://github.com/alvinveroy/codecompass/issues"
},
"overrides": {
"undici": "^5.29.0"
},
"engines": {
"node": ">=18.19.0"
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE.md",
"CONTRIBUTING.md",
"tsconfig.json"
]
}