-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.64 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.64 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
{
"name": "@context-sync/server",
"version": "2.0.0",
"description": "Universal Context layer McP server",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"context-sync": "./dist/index.js",
"context-sync-setup": "./bin/setup.cjs"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"postinstall": "node bin/install.cjs || true",
"preinstall": "node -e \"console.log('\\n🧠 Installing Context Sync MCP Server...\\n')\"",
"setup": "node bin/setup.cjs",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"watch": "tsx watch src/index.ts",
"test": "node -e \"console.log('✅ Context Sync v2.0.0 - All systems ready!')\"",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"Context Sync",
"Context Management",
"mcp",
"mcp-server",
"model-context-protocol",
"ai",
"ai-assistant",
"context layer",
"memory",
"claude",
"cursor",
"github-copilot",
"workspace",
"file-access",
"file-operations",
"code-search",
"git-integration",
"developer-tools",
"productivity",
"typescript",
"continue",
"continue.dev",
"zed",
"windsurf",
"tabnine",
"copilot",
"Notion",
"Notion Integration",
"documentation",
"Notion MCP server"
],
"author": {
"name": "mamba",
"url": "https://github.com/Intina47"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Intina47/context-sync.git"
},
"bugs": {
"url": "https://github.com/Intina47/context-sync/issues"
},
"homepage": "https://github.com/Intina47/context-sync#readme",
"files": [
"dist/**/*",
"bin/**/*",
"README.md",
"LICENSE",
"docs/**/*"
],
"dependencies": {
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^0.5.0",
"@notionhq/client": "^5.4.0",
"better-sqlite3": "^11.0.0",
"chokidar": "^4.0.3",
"commander": "^11.0.5",
"js-yaml": "^4.1.1",
"readline-sync": "^1.4.10",
"simple-git": "^3.30.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/chokidar": "^1.7.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"@types/readline-sync": "^1.4.8",
"tsx": "^4.20.6",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"overrides": {
"detect-libc": "2.1.2",
"http-errors": "1.8.1"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
]
}