-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "nowcoder-mcp-server",
"version": "1.0.0",
"description": "MCP server for browsing and searching Nowcoder (牛客网) content using Playwright",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start:http": "TRANSPORT=http node dist/index.js",
"start:https": "TRANSPORT=https node dist/index.js",
"dev": "tsx watch src/index.ts",
"dev:http": "TRANSPORT=http tsx watch src/index.ts",
"dev:https": "TRANSPORT=https tsx watch src/index.ts",
"test": "tsx --test tests/**/*.test.ts",
"build": "tsc",
"clean": "rm -rf dist",
"postinstall": "npx playwright install chromium"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"playwright": "^1.50.0",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"selfsigned": "^5.5.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}