-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.37 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": "@furkankoykiran/omniwire-mcp",
"version": "1.0.6",
"description": "Gold standard MCP data flow server with Sentinel architecture, dynamic configuration, and universal parsing",
"type": "module",
"main": "dist/index.js",
"bin": {
"omniwire-mcp": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/furkankoykiran/OmniWire-MCP.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && cp -r src/config/defaults dist/config/",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"rss",
"news",
"ai",
"llm"
],
"author": "Furkan Köykıran",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"fast-xml-parser": "^5.0.9",
"node-html-parser": "^7.0.1",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.19.9",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}