-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 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
{
"name": "@tmhsdigital/cfx-mcp",
"version": "0.1.0",
"description": "MCP server providing agent-callable tools for CFX/FiveM resource development, server management, and community platform integration.",
"type": "module",
"main": "dist/index.js",
"bin": {
"cfx-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^4.1.2"
},
"author": "TMHSDigital",
"license": "CC-BY-NC-ND-4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/TMHSDigital/cfx-mcp.git"
},
"homepage": "https://github.com/TMHSDigital/cfx-mcp#readme",
"bugs": {
"url": "https://github.com/TMHSDigital/cfx-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"cfx",
"fivem",
"developer-tools"
],
"engines": {
"node": ">=20.0.0"
}
}