forked from ArtMin96/yii2-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.21 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.21 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
{
"name": "yii2-mcp-server",
"version": "1.0.2",
"description": "MCP Server for Yii2 Framework - Database schema inspection, command execution, and project management",
"main": "dist/index.js",
"bin": {
"yii2-mcp-server": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist/",
"README.md",
"package.json",
"install.sh"
],
"keywords": [
"mcp",
"yii2",
"php",
"database",
"claude-code",
"model-context-protocol",
"yii-framework",
"database-inspection",
"console-commands"
],
"author": "ArtMin96",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ArtMin96/yii2-mcp-server.git"
},
"homepage": "https://github.com/ArtMin96/yii2-mcp-server#readme",
"bugs": {
"url": "https://github.com/ArtMin96/yii2-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"mysql2": "^3.11.0",
"node-sql-parser": "^5.3.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
}
}