-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.51 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
{
"name": "payload-mcp",
"version": "1.0.0",
"description": "Payload MCP Server",
"main": "dist/index.js",
"type": "module",
"bin": {
"payload-mcp": "./dist/index.js"
},
"scripts": {
"start": "node dist/index.js --stdio-only",
"dev": "tsx watch src/index.ts",
"build": "tsc && npm run copy-tools",
"copy-tools": "mkdir -p dist/mcp/generated && cp -r src/mcp/generated/tools dist/mcp/generated/ && cp src/mcp/generated/payload-tools.js dist/mcp/generated/",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"stdio": "tsx src/index.ts --stdio-only",
"generate-tools": "tsx src/generate-tools.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.13.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"depcheck": "^1.4.7",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-morph": "^25.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"payload": "^3.28.1",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"zod": "^3.24.2"
}
}