{ "name": "@speechweave/mcp", "version": "1.9.3", "description": "Official SpeechWeave MCP server", "type": "module", "bin": { "speechweave-mcp": "dist/index.js" }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "files": [ "dist", "reference" ], "engines": { "node": ">=18.0.0" }, "scripts": { "check": "tsc --noEmit && npm run build", "build": "tsup", "test": "vitest run", "test:watch": "vitest", "prepublishOnly": "npm run build", "prepare": "husky", "version": "node scripts/sync_version.js && git add src/version.ts" }, "keywords": [ "speechweave", "mcp", "model-context-protocol", "transcription", "stt", "whisper" ], "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/speechweave/speechweave-mcp.git" }, "homepage": "https://speechweave.com/docs/mcp", "bugs": { "url": "https://github.com/speechweave/speechweave-mcp/issues" }, "publishConfig": { "access": "public", "provenance": true }, "dependencies": { "@modelcontextprotocol/sdk": "^1.30.0", "@speechweave/node": "^1.7.2", "zod": "^3.25.0" }, "devDependencies": { "@eslint/js": "^10.0.1", "@stylistic/eslint-plugin": "^5.10.0", "@types/node": "^22.10.0", "eslint": "^10.7.0", "globals": "^17.7.0", "husky": "^9.1.7", "lint-staged": "^17.0.8", "tsup": "^8.5.1", "typescript": "^5.9.3", "typescript-eslint": "^8.63.0", "vitest": "^4.1.11" }, "overrides": { "esbuild": "^0.28.1" }, "lint-staged": { "*.{ts,js}": [ "eslint --fix" ] }, "mcpName": "io.github.speechweave/mcp" }