-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.22 KB
/
package.json
File metadata and controls
58 lines (58 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "steam-mcp",
"version": "1.0.0",
"description": "Steam评论获取MCP工具",
"main": "dist/index.js",
"type": "module",
"bin": {
"steam-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"prepublishOnly": "npm run build",
"postinstall": "npm run build"
},
"keywords": [
"steam",
"mcp",
"comments",
"reviews",
"model-context-protocol",
"ai-tools"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/steam-mcp.git"
},
"homepage": "https://github.com/yourusername/steam-mcp#readme",
"bugs": {
"url": "https://github.com/yourusername/steam-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"https-proxy-agent": "^7.0.6"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}