-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.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
{
"name": "flagsmith",
"version": "0.0.2",
"author": "Speakeasy",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/Flagsmith/flagsmith-mcp.git"
},
"bin": {
"flagsmith": "bin/mcp-server.js",
"mcp": "bin/mcp-server.js"
},
"scripts": {
"build": "bun i && bun src/mcp-server/build.mts && tsc",
"mcpb:build": "bun i && bun src/mcp-server/build.mts --pack && tsc",
"check": "npm run lint",
"lint": "eslint --cache --max-warnings=0 src",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.26.0",
"@stricli/core": "^1.1.2",
"bun": "^1.2.12",
"express": "^5.1.0",
"zod": "^4.0.0"
},
"overrides": {
"@modelcontextprotocol/sdk": "1.26.0"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^1.2.0",
"@eslint/js": "^9.26.0",
"@types/bun": "^1.2.13",
"@types/express": "^5.0.1",
"@types/node": "^18.19.3",
"eslint": "^9.26.0",
"globals": "^16.0.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.31.1"
}
}