-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.05 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
{
"name": "olx-mcp",
"version": "1.0.9",
"type": "module",
"main": "dist/index.js",
"bin": {
"olx-mcp": "bin/olx-mcp-wrapper.js"
},
"files": [
"bin/**/*",
"dist/**/*",
"package.json",
"README.md",
"LICENSE",
"examples/*"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist coverage .tsbuildinfo",
"ci": "npm run lint && npm run type-check && npm run test:coverage:working && npm run build",
"test:unit": "vitest src/core/types.test.ts src/core/tool-registry.test.ts",
"test:tools": "vitest src/tools/",
"test:working": "vitest --exclude \"**/server.test.ts\" --exclude \"**/olx-pt.scraper.test.ts\" --exclude \"**/olx-pl.scraper.test.ts\"",
"test:coverage:working": "vitest --coverage --exclude \"**/server.test.ts\" --exclude \"**/olx-pt.scraper.test.ts\" --exclude \"**/olx-pl.scraper.test.ts\"",
"prepare": "husky install",
"postinstall": "playwright install chromium --with-deps || echo 'Playwright browsers will be installed on first use'",
"prepublishOnly": "npm run ci",
"postpack": "echo '✅ Package created successfully! Install with: npm install -g olx-mcp'"
},
"keywords": [
"mcp",
"olx",
"scraper",
"claude",
"model-context-protocol",
"web-scraping",
"marketplace",
"europe",
"portugal",
"poland"
],
"publishConfig": {
"access": "public"
},
"author": "Łukasz Margiela",
"license": "MIT",
"description": "OLX MCP server that enables Claude Desktop to browse and search OLX listings across multiple domains (PT, PL, BG, RO, UA)",
"repository": {
"type": "git",
"url": "git+https://github.com/l-margiela/olx-mcp.git"
},
"bugs": {
"url": "https://github.com/l-margiela/olx-mcp/issues"
},
"homepage": "https://github.com/l-margiela/olx-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"playwright": "^1.55.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^60.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}