-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"name": "@apps/host-search-mcp",
"version": "1.0.0",
"description": "MCP server for Brave Search",
"private": true,
"type": "module",
"bin": {
"search-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"start": "npm run build && dotenv -e .env -- node build/index.js",
"repl": "dotenv -e .env -- npm run build && node -e \"import('./scripts/repl.mjs')\" --interactive",
"repl:chrome": "dotenv -e .env -- npm run build && node --inspect-brk ./scripts/repl.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"form-data": "^4.0.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"dotenv-cli": "^8.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.3.3"
}
}