-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.26 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "linkup-mcp-server",
"author": "Linkup",
"version": "3.0.0",
"description": "Linkup MCP server for web search",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"dev": "tsx watch src/index.ts",
"dev:stdio": "tsx src/stdio.ts",
"build": "npm run clean && tsc",
"build:stdio": "npm run build",
"start": "node dist/index.js",
"start:http": "node dist/index.js",
"start:stdio": "node dist/stdio.js",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"prepare": "node .husky/install.mjs",
"prepack": "npm run build",
"prune": "knip",
"inspector": "npx @modelcontextprotocol/inspector node dist/stdio.js",
"build:mcpb": "bash mcpb/generate.sh",
"commitlint": "commitlint --edit",
"semantic-release": "semantic-release"
},
"keywords": [
"mcp",
"search mcp",
"modelcontextprotocol",
"linkup",
"workflow",
"websearch",
"search",
"ai",
"linkedin"
],
"bin": {
"linkup-mcp-server": "bin/linkup-mcp-server.js"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/LinkupPlatform/linkup-mcp-server#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"express": "^5.2.1",
"linkup-sdk": "^2.7.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/express": "^5.0.6",
"@types/node": "^24.8.0",
"husky": "^9.1.7",
"knip": "^5.65.0",
"semantic-release": "^25.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinkupPlatform/linkup-mcp-server.git"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "mcpb/linkup-mcp-server.mcpb",
"label": "MCPB Bundle"
}
],
"failTitle": "The automated release is failing 🚨",
"failComment": false,
"labels": false,
"releasedLabels": false
}
]
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}