-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "@configcat/mcp-server",
"version": "0.1.6",
"mcpName": "io.github.configcat/mcp-server",
"type": "module",
"description": "MCP server exposing ConfigCat Public Management API (products, configs, environments, values v1/v2).",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc -p .",
"start": "node build/index.js",
"dev": "npm run build -- --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/configcat/mcp-server.git"
},
"keywords": [
"configcat",
"featureflags",
"feature flags",
"feature toggle",
"feature switch",
"mcp",
"modelcontextprotocol"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"json-schema-to-zod": "^2.6.1",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.6"
},
"author": "ConfigCat",
"license": "MIT",
"homepage": "https://configcat.com",
"sideEffects": false,
"devDependencies": {
"@eslint/js": "^9.33.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/node": "^22.7.4",
"eslint": "^9.33.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.3.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.40.0"
}
}