forked from ibproduct/ib-mcp-cache-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.51 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.51 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
{
"name": "charly-memory-cache-server",
"version": "1.0.0",
"description": "MCP server for memory caching and optimization",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node build/index.js",
"dev": "tsc -w",
"prepare": "npm run build",
"test": "jest",
"test:build": "npm run build && npm test",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "echo \"Linting not implemented\" && exit 1",
"lint:fix": "echo \"Lint fix not implemented\" && exit 1",
"typecheck": "tsc --noEmit",
"clean": "rm -rf build/*",
"clean:all": "rm -rf build/* node_modules package-lock.json",
"rebuild": "npm run clean && npm run build",
"dev:full": "npm run build && npm run start",
"test:performance": "echo \"Performance testing not implemented\" && exit 1",
"test:integration": "echo \"Integration testing not implemented\" && exit 1",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration"
},
"keywords": [
"mcp",
"cache",
"memory",
"optimization"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.1",
"jest": "^30.0.5",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"fs-extra": "^11.3.1"
}
}