-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
{
"name": "@promptfoo/evil-mcp-server",
"version": "1.0.4",
"description": "MCP server that simulates malicious behaviors for security testing",
"keywords": [
"mcp",
"security",
"testing"
],
"files": [
"dist"
],
"homepage": "https://github.com/promptfoo/evil-mcp-server#readme",
"bugs": {
"url": "https://github.com/promptfoo/evil-mcp-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/promptfoo/evil-mcp-server.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"evil-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"start:dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"run:stdio": "npm install && tsx src/index.ts",
"run:http": "npm install && tsx src/index.ts --http"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"express": "^5.0.0",
"zod": "^4.0.0",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^24.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20"
}
}