-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "cakemcp",
"version": "0.1.0",
"description": "MCP server for centrally distributing multiple projects context to coding agents.",
"module": "src/index.ts",
"type": "module",
"private": true,
"license": "MIT",
"homepage": "https://github.com/adversinc/cakemcp",
"bugs": {
"url": "https://github.com/adversinc/cakemcp/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/adversinc/cakemcp.git"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "NODE_ENV=development bun run --watch src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "bun test",
"typecheck": "bunx tsc --noEmit"
},
"dependencies": {
"fastmcp": "^3.34.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"@types/bun": "latest",
"@types/node": "^25.3.5",
"eslint": "^10.0.3",
"eslint-plugin-jsdoc": "^62.8.0",
"typescript-eslint": "^8.57.1"
},
"peerDependencies": {
"typescript": "^5"
}
}