{ "name": "tokencost-dev", "version": "0.1.3", "description": "LLM Pricing Oracle — MCP server exposing real model pricing data from LiteLLM", "type": "module", "main": "dist/index.js", "bin": { "tokencost-dev": "dist/index.js" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "!dist/**/*.test.*", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "prepublishOnly": "npm run build", "lint": "biome check src/", "lint:fix": "biome check --write src/", "test": "vitest", "test:run": "vitest run" }, "keywords": [ "mcp", "llm", "pricing", "tokencost", "claude", "openai", "litellm" ], "author": "Atriumn", "license": "MIT", "homepage": "https://tokencost.dev", "bugs": { "url": "https://github.com/atriumn/tokencost-dev/issues" }, "repository": { "type": "git", "url": "https://github.com/atriumn/tokencost-dev.git" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.25.3", "fuse.js": "^7.0.0", "zod": "^4.3.6" }, "devDependencies": { "@biomejs/biome": "2.5.13", "@types/node": "^26.1.1", "@vitest/coverage-v8": "^4.0.18", "typescript": "^5.9.3", "vitest": "^4.0.18" }, "engines": { "node": ">=18" }, "mcpName": "io.github.jeff-atriumn/tokencost-dev", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }