-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 KB
/
package.json
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
56
57
58
59
60
61
62
63
{
"name": "@apify/mcp-server-rag-web-browser",
"version": "0.1.3",
"type": "module",
"description": "An MCP Server for RAG Web Browser Actor",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"bin": {
"mcp-rag-web-browser": "./dist/index.js"
},
"files": [
"dist",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/apify/mcp-server-rag-web-browser"
},
"bugs": {
"url": "https://github.com/apify/mcp-server-rag-web-browser/issues"
},
"homepage": "https://github.com/apify/mcp-server-rag-web-browser",
"keywords": [
"apify",
"mcp",
"server",
"actors",
"model context protocol",
"rag",
"web browser"
],
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/index.js",
"start:dev": "tsx src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"express": "^4.21.2",
"node-fetch": "^3.3.2",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@apify/eslint-config": "^0.5.0-beta.7",
"@apify/eslint-config-ts": "^0.4.1",
"@apify/tsconfig": "^0.1.0",
"@types/express": "^5.0.0",
"@types/node": "^20.11.24",
"dotenv": "^16.4.7",
"eslint": "^9.22.0",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.18.2"
}
}