-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "optimus-code",
"displayName": "Optimus Code",
"description": "The Ultimate Multi-Agent Orchestrator",
"version": "2.24.0",
"publisher": "Trinity-Alpha",
"repository": {
"type": "git",
"url": "https://github.com/cloga/optimus-code.git"
},
"scripts": {
"compile": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"check-types": "tsc --noEmit",
"lint": "eslint src --ext ts",
"test": "vitest run",
"build": "cd optimus-plugin && npm install && npm run build:production"
},
"devDependencies": {
"@types/node": "18.x",
"esbuild": "^0.25.12",
"npm-run-all": "^4.1.5",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"dotenv": "^16.3.1",
"iconv-lite": "^0.6.3",
"marked": "^17.0.4",
"strip-ansi": "^7.2.0"
},
"main": "optimus-plugin/dist/mcp-server.js",
"bin": {
"optimus": "./optimus-plugin/bin/cli.js"
}
}