-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.08 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@n0zer0d4y/athena-protocol",
"version": "0.2.0",
"description": "An intelligent MCP server that acts as an AI tech lead for coding agents—providing expert validation, impact analysis, and strategic guidance before code changes are made",
"license": "MIT",
"author": "Lloyd Barcatan",
"homepage": "https://github.com/n0zer0d4y/athena-protocol",
"repository": {
"type": "git",
"url": "git+https://github.com/n0zer0d4y/athena-protocol.git"
},
"mcpName": "io.github.n0zer0d4y/athena-protocol",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/n0zer0d4y/athena-protocol/issues"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"athena-protocol": "dist/index.js"
},
"files": [
"dist/**/*.js",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test",
"build": "tsc",
"start": "node dist/index.js",
"start:standalone": "node dist/standalone-server.js",
"dev": "tsx watch src/index.ts",
"dev:standalone": "tsx watch src/standalone-server.ts",
"lint": "eslint src",
"clean": "rm -rf dist",
"test": "npm run test:thinking && npm run test:tools",
"test:thinking": "node tests/simple-thinking-test.js",
"test:tools": "node tests/test-all-tools.js",
"test:integration": "node tests/test-integration.js",
"test:mcp": "node tests/test-mcp-thinking-validation.js",
"test:all": "npm run test:thinking && npm run test:tools && npm run test:integration && npm run test:mcp",
"validate-config": "node validate-config.js"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^3.0.48",
"@ai-sdk/anthropic": "^2.0.53",
"@ai-sdk/azure": "^2.0.57",
"@ai-sdk/google": "^2.0.43",
"@ai-sdk/google-vertex": "^3.0.86",
"@ai-sdk/groq": "^2.0.27",
"@ai-sdk/mistral": "^2.0.14",
"@ai-sdk/openai": "^2.0.77",
"@ai-sdk/perplexity": "^2.0.9",
"@ai-sdk/xai": "^2.0.30",
"@aws-sdk/credential-providers": "^3.940.0",
"@modelcontextprotocol/sdk": "^1.24.0",
"@openrouter/ai-sdk-provider": "^1.2.0",
"@z_ai/mcp-server": "^0.0.13",
"ai": "^5.0.102",
"dotenv": "^17.2.2",
"express": "^5.2.0",
"fastmcp": "^3.22.0",
"jsonc-parser": "^3.3.1",
"jsonrepair": "^3.13.0",
"ollama-ai-provider": "^1.2.0",
"p-limit": "^6.1.0",
"ts-node": "^10.9.2",
"undici": "^6.19.8",
"uuid": "^11.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.0",
"tsx": "^4.20.3",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"athena-protocol",
"ai",
"llm",
"ai-agent",
"coding-assistant",
"thinking-validation",
"code-review",
"impact-analysis",
"claude",
"openai",
"anthropic",
"development-tools"
]
}