hotelzero 1.8.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +12 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hotelzero",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "MCP server for searching hotels on Booking.com with 80+ filters",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,7 +15,14 @@
15
15
  "build": "tsc",
16
16
  "start": "node dist/index.js",
17
17
  "dev": "tsx src/index.ts",
18
- "test": "tsx src/test.ts",
18
+ "test": "vitest run",
19
+ "test:watch": "vitest",
20
+ "test:ui": "vitest --ui",
21
+ "test:selectors": "vitest run tests/selectors.test.ts",
22
+ "test:search": "vitest run tests/search.test.ts",
23
+ "test:details": "vitest run tests/details.test.ts",
24
+ "test:reviews": "vitest run tests/reviews.test.ts",
25
+ "test:calendar": "vitest run tests/price-calendar.test.ts",
19
26
  "prepublishOnly": "npm run build"
20
27
  },
21
28
  "keywords": [
@@ -48,7 +55,9 @@
48
55
  },
49
56
  "devDependencies": {
50
57
  "@types/node": "^25.2.3",
58
+ "@vitest/ui": "^4.0.18",
51
59
  "tsx": "^4.21.0",
52
- "typescript": "^5.9.3"
60
+ "typescript": "^5.9.3",
61
+ "vitest": "^4.0.18"
53
62
  }
54
63
  }