-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.83 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
{
"name": "codeck",
"version": "0.4.0",
"description": "Codeck: Local MCP Server & CLI context handoff bridge for Codex, Claude Code, Gemini, Kimi, and Grok.",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"files": [
"dist",
"README_EN.md",
"skills",
".codex-plugin",
".mcp.json",
"plugin.json",
"mcp_config.json"
],
"bin": {
"codeck": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"test": "npm run build && node --test test/codeck.test.mjs",
"test:gemini-image": "npm run build && node --input-type=module -e \"import assert from 'node:assert/strict'; import { extractGeminiImageParts } from './dist/adapters.js'; const parts = extractGeminiImageParts({ candidates: [{ content: { parts: [{ inlineData: { mimeType: 'image/png', data: 'aGVsbG8=' } }, { inline_data: { mime_type: 'image/jpeg', data: 'd29ybGQ=' } }] } }] }); assert.equal(parts.length, 2); assert.equal(parts[0].mimeType, 'image/png'); assert.equal(parts[1].mimeType, 'image/jpeg');\"",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"cli",
"ai",
"codex",
"claude",
"gemini",
"kimi",
"grok"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/isdou/codeck.git"
},
"bugs": {
"url": "https://github.com/isdou/codeck/issues"
},
"homepage": "https://github.com/isdou/codeck#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"marked": "^12.0.2",
"marked-terminal": "^7.0.0",
"smol-toml": "^1.1.4"
},
"devDependencies": {
"@types/marked": "^4.0.8",
"@types/node": "^20.12.12",
"tsx": "^4.10.5",
"typescript": "^5.4.5"
}
}