-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "@useweld/mcp-server",
"version": "0.0.0-semantically-released",
"description": "MCP server for Weld web scraping API — enables AI agents (Claude, OpenClaw, etc.) to scrape social platforms",
"type": "module",
"bin": {
"weld-mcp": "./dist/index.js"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/useweld/mcp-server.git"
},
"homepage": "https://www.useweld.app",
"bugs": {
"url": "https://github.com/useweld/mcp-server/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "~1.25.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^13.1.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.3.0"
},
"keywords": [
"mcp",
"weld",
"scraping",
"ai-agent",
"claude",
"openclaw"
],
"license": "MIT"
}