-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.49 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
{
"name": "@tmustier/code-mode-mcp",
"version": "0.4.0",
"description": "Compose arbitrary MCP tools with JavaScript through one agent-agnostic stdio MCP server.",
"author": "Thomas Mustier",
"license": "MIT",
"type": "module",
"keywords": [
"code-mode",
"mcp",
"model-context-protocol",
"tool-orchestration",
"agent-tools"
],
"bin": {
"code-mode-mcp": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./naming": {
"types": "./dist/naming.d.ts",
"import": "./dist/naming.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist",
"examples",
"docs",
"npm-shrinkwrap.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test test/*.test.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run check && npm test && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0"
},
"devDependencies": {
"@types/node": "24.13.3",
"typescript": "7.0.2"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmustier/code-mode-mcp.git"
},
"bugs": {
"url": "https://github.com/tmustier/code-mode-mcp/issues"
},
"homepage": "https://github.com/tmustier/code-mode-mcp#readme",
"publishConfig": {
"access": "public"
}
}