-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.14 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.14 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "codebase-context",
"version": "1.3.1",
"description": "MCP server that helps AI agents understand your codebase - patterns, libraries, architecture, monorepo support",
"type": "module",
"main": "./dist/lib.js",
"types": "./dist/lib.d.ts",
"exports": {
".": {
"import": "./dist/lib.js",
"types": "./dist/lib.d.ts"
},
"./server": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./analyzers/angular": {
"import": "./dist/analyzers/angular/index.js",
"types": "./dist/analyzers/angular/index.d.ts"
},
"./analyzers/generic": {
"import": "./dist/analyzers/generic/index.js",
"types": "./dist/analyzers/generic/index.d.ts"
},
"./embeddings": {
"import": "./dist/embeddings/index.js",
"types": "./dist/embeddings/index.d.ts"
},
"./storage": {
"import": "./dist/storage/index.js",
"types": "./dist/storage/index.d.ts"
}
},
"bin": {
"codebase-context": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"semantic-search",
"codebase",
"indexing",
"embeddings",
"vector-search",
"angular",
"ai",
"llm",
"code-understanding",
"developer-tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PatrickSys/codebase-context.git"
},
"bugs": {
"url": "https://github.com/PatrickSys/codebase-context/issues"
},
"homepage": "https://github.com/PatrickSys/codebase-context#readme",
"author": {
"name": "Patrick Rosselló",
"email": "rossellocolompatrick@gmail.com",
"url": "https://github.com/PatrickSys"
},
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc",
"prepublishOnly": "pnpm run build",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "tsc -w",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@lancedb/lancedb": "^0.4.0",
"@modelcontextprotocol/sdk": "^1.25.1",
"@typescript-eslint/typescript-estree": "^7.0.0",
"@xenova/transformers": "^2.17.0",
"fuse.js": "^7.0.0",
"glob": "^10.3.10",
"ignore": "^5.3.1",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"zod": "^4.3.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/glob": "^8.1.0",
"@types/node": "^20.11.24",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.16"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"protobufjs",
"sharp"
]
}
}