bmlt-query-client 1.0.4 → 1.0.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmlt-query-client",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "A TypeScript client for querying BMLT (Basic Meeting List Tool) servers with built-in geocoding support",
5
5
  "type": "module",
6
6
  "main": "dist/app.js",
@@ -33,33 +33,33 @@
33
33
  "geocoding",
34
34
  "api-client"
35
35
  ],
36
- "author": "Patrick Joyce",
36
+ "author": "BMLT Enabled",
37
37
  "license": "MIT",
38
38
  "repository": {
39
39
  "type": "git",
40
- "url": "https://github.com/bmlt-enabled/bmlt-query-client.git"
40
+ "url": "git+https://github.com/bmlt-enabled/bmlt-query-client.git"
41
41
  },
42
42
  "dependencies": {
43
- "p-queue": "^8.0.1",
44
- "p-retry": "^6.2.0"
43
+ "p-queue": "^9.1.0",
44
+ "p-retry": "^7.1.1"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@eslint/eslintrc": "^3.3.1",
48
- "@eslint/js": "^9.35.0",
49
- "@types/node": "^20.0.0",
48
+ "@eslint/js": "^10.0.0",
49
+ "@types/node": "^25.0.0",
50
50
  "@typescript-eslint/eslint-plugin": "^8.0.0",
51
51
  "@typescript-eslint/parser": "^8.0.0",
52
- "@vitest/ui": "^3.2.4",
53
- "eslint": "^9.0.0",
54
- "globals": "^16.3.0",
52
+ "@vitest/ui": "^4.0.0",
53
+ "eslint": "^10.0.0",
54
+ "globals": "^17.3.0",
55
55
  "prettier": "^3.6.2",
56
56
  "rimraf": "^6.0.0",
57
- "typescript": "5.8.2",
58
- "vite": "^7.0.0",
57
+ "typescript": "5..2",
58
+ "vite": "^8.0.0",
59
59
  "vite-plugin-dts": "^4.5.4",
60
- "vitest": "^3.0.0"
60
+ "vitest": "^4.0.0"
61
61
  },
62
62
  "engines": {
63
- "node": ">=20"
63
+ "node": ">=22"
64
64
  }
65
65
  }
package/vite.config.ts CHANGED
@@ -1,3 +1,5 @@
1
+ /// <reference types="vitest/config" />
2
+
1
3
  import { defineConfig } from 'vite';
2
4
  import { resolve } from 'path';
3
5
  import dts from 'vite-plugin-dts';
@@ -20,7 +22,7 @@ export default defineConfig({
20
22
  outDir: 'dist',
21
23
  sourcemap: true,
22
24
  target: 'es2020',
23
- rollupOptions: {
25
+ rolldownOptions: {
24
26
  // Don't externalize any dependencies - bundle everything for browser use
25
27
  external: [],
26
28
  },