-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.31 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.31 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
{
"name": "codexcli",
"version": "1.12.2",
"description": "Persistent, structured knowledge store for software projects — CLI + MCP server for AI agent integration",
"bin": {
"cclid": "dist/index.js",
"cclid-mcp": "dist/mcp-server.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc && chmod +x dist/index.js dist/mcp-server.js",
"install-local": "npm run build && npm link",
"test": "vitest run",
"test:watch": "vitest",
"dev:watch": "tsc --watch",
"lint": "eslint src/",
"sea": "node scripts/sea-build.js"
},
"keywords": [
"cli",
"command-line",
"data-store",
"knowledge-base",
"mcp",
"ai-agent",
"model-context-protocol"
],
"author": "Kory Hoopes (seabearDEV)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/seabearDEV/codexCLI.git"
},
"devDependencies": {
"@types/node": "^22.13.8",
"@vitest/coverage-v8": "^4.1.2",
"esbuild": "^0.25.0",
"eslint": "^10.0.1",
"postject": "^1.0.0-alpha.6",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"zod": "^4.3.6"
},
"overrides": {
"minimatch": "^10.2.1"
}
}