-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 KB
/
package.json
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
{
"name": "@tokenizin/mcp-npx-fetch",
"version": "1.0.0",
"description": "A CLI tool for fetching and processing content using the Model Context Protocol",
"type": "module",
"main": "dist/index.js",
"bin": "./dist/index.js",
"homepage": "https://github.com/tokenizin-agency/mcp-npx-fetch",
"repository": {
"type": "git",
"url": "https://github.com/tokenizin-agency/mcp-npx-fetch.git"
},
"license": "MIT",
"author": "TokiDev (tokenizin.com)",
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest"
},
"keywords": [
"mcp",
"model-context-protocol",
"cli",
"fetch",
"content-processing"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"jsdom": "^25.0.1",
"turndown": "^7.2.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@types/turndown": "^5.0.5",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}