{ "name": "legiscan-mcp-server", "version": "1.0.0", "description": "MCP server for LegiScan API - Access legislative data from all 50 US states", "type": "module", "main": "dist/index.js", "files": [ "dist", "README.md", "LICENSE", "package.json" ], "bin": { "legiscan-mcp": "./dist/index.js" }, "scripts": { "build": "tsc", "typecheck": "tsc -p tsconfig.test.json --noEmit", "prepack": "npm run build && npm run typecheck", "start": "node dist/index.js", "dev": "tsc --watch", "test": "npm run test:unit", "test:unit": "vitest run --config vitest.config.ts", "test:watch": "vitest --config vitest.config.ts", "test:e2e": "vitest run --config vitest.e2e.config.ts", "test:live": "vitest run --config vitest.live.config.ts", "test:all": "npm run test:unit && npm run test:live", "test:coverage": "vitest run --config vitest.config.ts --coverage", "inspect": "npx @modelcontextprotocol/inspector node dist/index.js", "lint": "eslint src tests", "lint:fix": "eslint src tests --fix", "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"" }, "keywords": [ "mcp", "legiscan", "legislation", "bills", "congress", "state-legislature" ], "author": "Shawn Patterson", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/sh-patterson/legiscan-mcp.git" }, "bugs": { "url": "https://github.com/sh-patterson/legiscan-mcp/issues" }, "homepage": "https://github.com/sh-patterson/legiscan-mcp#readme", "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.26.0", "dotenv": "^16.3.1", "zod": "^3.22.4" }, "devDependencies": { "@eslint/js": "^9.17.0", "@types/node": "^20.19.27", "@vitest/coverage-v8": "^4.1.2", "eslint": "^9.17.0", "prettier": "^3.4.2", "typescript": "^5.3.2", "typescript-eslint": "^8.18.2", "vitest": "^4.0.16" } }