-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "@gscalzo/stackoverflow-mcp",
"version": "0.1.0",
"description": "A MCP server for querying Stack Overflow.",
"author": "Giordano Scalzo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gscalzo/stackoverflow-mcp"
},
"keywords": [
"mcp",
"stackoverflow",
"ai",
"search",
"model-context-protocol"
],
"type": "module",
"bin": {
"stackoverflow-mcp": "./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",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"ts-jest": "^29.2.6",
"typescript": "^5.3.3"
}
}