-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
{
"name": "@supadata/mcp",
"version": "1.2.2",
"description": "MCP server for Supadata video & web scraping integration. Features include YouTube, TikTok, Instagram, Twitter, and file video transcription, web scraping, batch processing and structured data extraction.",
"type": "module",
"bin": "./dist/index.js",
"module": "src/index.ts",
"scripts": {
"dev": "wrangler dev",
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"prepare": "npm run build"
},
"license": "MIT",
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.25.3",
"@supadata/js": "^1.4.0",
"dotenv": "^16.4.7",
"hono": "^4.7.0",
"jose": "^6.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260317.1",
"@jest/globals": "^29.7.0",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsx": "^4.20.3",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"supadata",
"web-scraping",
"crawler",
"content-extraction"
],
"repository": {
"type": "git",
"url": "git+https://github.com/supadata-ai/mcp.git"
},
"author": "vrknetha",
"bugs": {
"url": "https://github.com/supadata-ai/mcp/issues"
},
"homepage": "https://github.com/supadata-ai/mcp#readme"
}