-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.59 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
{
"name": "ai-cli-mcp",
"version": "2.21.0",
"mcpName": "io.github.mkXultra/ai-cli-mcp",
"description": "Run Claude, Codex, Gemini, Forge, and OpenCode CLIs through MCP with background jobs",
"author": "mkXultra",
"license": "MIT",
"main": "dist/server.js",
"bin": {
"ai-cli": "dist/bin/ai-cli.js",
"ai-cli-mcp": "dist/bin/ai-cli-mcp.js"
},
"files": [
"dist/app",
"dist/bin",
"dist/cli-builder.js",
"dist/cli-parse.js",
"dist/cli-process-service.js",
"dist/cli-utils.js",
"dist/cli.js",
"dist/model-catalog.js",
"dist/parsers.js",
"dist/peek.js",
"dist/process-result.js",
"dist/process-service.js",
"dist/server.js",
"server.json",
"README.ja.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx src/server.ts",
"test": "npm run build && npm run test:run",
"test:run": "vitest run",
"test:unit": "vitest run --config vitest.config.unit.ts",
"test:e2e": "npm run build && vitest run --config vitest.config.e2e.ts",
"test:e2e:local": "npm run build && vitest run --config vitest.config.e2e.ts",
"test:live": "npm run build && npm run test:live:run",
"test:live:run": "vitest run --config vitest.config.live.ts",
"test:package": "npm run build && npm run test:package:run",
"test:package:run": "vitest run --config vitest.config.package.ts",
"test:release": "npm run build && npm run test:run && npm run test:live:run && npm run test:package:run",
"test:coverage": "npm run build && vitest --coverage --config vitest.config.unit.ts",
"test:watch": "vitest --watch",
"cli.run": "tsx src/cli.ts",
"cli.run.parse": "tsx src/cli-parse.ts",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.24.4"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.26.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.15.17",
"@vitest/coverage-v8": "^4.1.3",
"husky": "^9.1.7",
"semantic-release": "^25.0.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkXultra/ai-cli-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"codex",
"ai",
"llm",
"tools",
"gpt5"
],
"bugs": {
"url": "https://github.com/mkXultra/ai-cli-mcp/issues"
},
"homepage": "https://github.com/mkXultra/ai-cli-mcp#readme"
}