-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.74 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
{
"name": "context-fabric",
"version": "1.0.7",
"mcpName": "io.github.VIKAS9793/context-fabric",
"description": "Context synchronization layer for AI coding agents — ensure project continuity and eliminate memory drift automatically.",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"context-drift",
"ai-agent",
"cursor-ai",
"claude",
"professional",
"developer-tools",
"sqlite"
],
"author": "Vikas Sahani",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/VIKAS9793/context-fabric.git"
},
"bugs": {
"url": "https://github.com/VIKAS9793/context-fabric/issues"
},
"homepage": "https://github.com/VIKAS9793/context-fabric#readme",
"type": "module",
"engines": {
"node": ">=22.0.0 <25.0.0"
},
"bin": {
"context-fabric": "dist/cli.js"
},
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"src/**/*.ts",
"README.md",
"LICENSE",
"server.json",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/**",
"release:check": "node ./scripts/verify-version-consistency.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"ci:check": "npm ci && npm run build && npm test && npm run release:check"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"better-sqlite3": "12.8.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.39.4",
"typescript": "^5.5.0",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}