bmlt-query-client
Version:
A TypeScript client for querying BMLT (Basic Meeting List Tool) servers with built-in geocoding support
66 lines (65 loc) • 1.75 kB
JSON
{
"name": "bmlt-query-client",
"version": "1.0.4",
"description": "A TypeScript client for querying BMLT (Basic Meeting List Tool) servers with built-in geocoding support",
"type": "module",
"main": "dist/app.js",
"module": "dist/app.js",
"types": "dist/app.d.ts",
"browser": "dist/app.js",
"exports": {
".": {
"types": "./dist/app.d.ts",
"import": "./dist/app.js",
"browser": "./dist/app.js",
"default": "./dist/app.js"
}
},
"scripts": {
"build": "vite build",
"clean": "rimraf dist",
"test": "vitest run",
"lint": "eslint src --ext ts",
"format": "prettier --write \"src/**/*.{ts,js,json}\" \"test/**/*.{ts,js}\" \"*.{ts,js,json,md}\" \"docs/**/*.html\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\" \"test/**/*.{ts,js}\" \"*.{ts,js,json,md}\" \"docs/**/*.html\"",
"type-check": "tsc --noEmit"
},
"keywords": [
"bmlt",
"meetings",
"recovery",
"na",
"typescript",
"geocoding",
"api-client"
],
"author": "Patrick Joyce",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bmlt-enabled/bmlt-query-client.git"
},
"dependencies": {
"p-queue": "^8.0.1",
"p-retry": "^6.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/ui": "^3.2.4",
"eslint": "^9.0.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.0",
"typescript": "5.8.2",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20"
}
}