-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.49 KB
/
package.json
File metadata and controls
64 lines (64 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
{
"name": "codex-mcp-server",
"version": "1.4.10",
"description": "MCP server wrapper for OpenAI Codex CLI",
"main": "dist/index.js",
"bin": {
"codex-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuannvm/codex-mcp-server.git"
},
"keywords": [
"mcp",
"codex",
"openai",
"claude",
"ai",
"cli"
],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/tuannvm/codex-mcp-server/issues"
},
"homepage": "https://github.com/tuannvm/codex-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.0",
"chalk": "^5.6.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"eslint": "^9.33.0",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}