forked from langfuse/mcp-server-langfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "mcp-server-langfuse",
"version": "0.0.1",
"description": "A MCP Server for Langfuse Prompt Management",
"main": "index.js",
"type": "module",
"bin": {
"mcp-server-langfuse": "./build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'node --no-warnings=ExperimentalWarning --loader ts-node/esm' src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.1",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"langfuse": "^3.37.5",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/express": "^5.0.3",
"@types/node": "^22.15.32",
"eslint": "^9.29.0",
"eslint-plugin-perfectionist": "^4.15.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
},
"repository": {
"type": "git",
"url": "hu"
},
"keywords": [
"langfuse",
"model-context-protocol",
"prompt",
"management"
],
"author": "marcklingen",
"license": "MIT"
}