-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.67 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
{
"name": "@libraz/grok-mcp",
"version": "0.3.0",
"description": "MCP server that exposes xAI Grok API to Claude Code, Codex CLI, and other MCP-capable clients.",
"keywords": [
"mcp",
"model-context-protocol",
"grok",
"xai",
"claude-code",
"codex"
],
"license": "MIT",
"author": "libraz",
"repository": {
"type": "git",
"url": "git+https://github.com/libraz/grok-mcp.git"
},
"homepage": "https://github.com/libraz/grok-mcp#readme",
"bugs": {
"url": "https://github.com/libraz/grok-mcp/issues"
},
"type": "module",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"files": [
"dist",
"src",
"tsconfig.json",
"README.md",
"README_ja.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.18.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "[ -d node_modules/typescript ] && tsc || true",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"mime-types": "^3.0.2",
"openai": "^7.3.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@types/mime-types": "^3.0.1",
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"npm-check-updates": "^23.0.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}