-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.81 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.81 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
{
"name": "cortexflow",
"version": "2.0.0",
"description": "Universal MCP server for AI-to-AI task continuation - Claude Code, ChatGPT, Gemini, Cursor, VS Code, Qwen, and more",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/mithun50/CortexFlow.git"
},
"bugs": {
"url": "https://github.com/mithun50/CortexFlow/issues"
},
"homepage": "https://github.com/mithun50/CortexFlow#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:http": "node dist/index.js --http",
"start:both": "node dist/index.js --both",
"dev": "tsx src/index.ts",
"dev:http": "tsx src/index.ts --http",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"prepare": "husky || true && npm run build",
"postinstall": "husky || true",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"quality": "npm run lint && npm run format:check && npm run typecheck",
"typecheck": "tsc --noEmit",
"docs": "typedoc --out docs/api src",
"bench": "tsx benchmarks/index.ts --all",
"bench:storage": "tsx benchmarks/index.ts --storage",
"bench:intelligent": "tsx benchmarks/index.ts --intelligent",
"bench:http": "tsx benchmarks/index.ts --http",
"bench:ci": "tsx benchmarks/index.ts --storage --intelligent --tokens --handoff --memory"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"claude",
"claude-code",
"chatgpt",
"gemini",
"cursor",
"vscode",
"qwen",
"context-sharing",
"task-management",
"ai-collaboration",
"ai-agents"
],
"author": {
"name": "Mithun Gowda B",
"email": "mithungowda.b7411@gmail.com",
"url": "https://github.com/mithun50"
},
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/mithun50"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.4.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typedoc": "^0.25.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0",
"husky": "^9.1.0",
"lint-staged": "^15.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"cortexflow": "dist/index.js"
}
}