package.jsonβ’2.1 kB
{
"name": "tessie-mcp-server",
"version": "1.2.1",
"description": "π Advanced Tesla MCP Server - Intelligent analytics, cost optimization, and predictive insights through Tessie API",
"type": "module",
"module": "./src/index.ts",
"bin": {
"tessie-mcp-server": "./.smithery/stdio/index.cjs"
},
"files": [
".smithery"
],
"scripts": {
"build": "npm run build:stdio",
"build:stdio": "smithery build src/index.ts --transport stdio -o .smithery/stdio/index.cjs && echo '#!/usr/bin/env node' | cat - .smithery/stdio/index.cjs > temp && mv temp .smithery/stdio/index.cjs && chmod +x .smithery/stdio/index.cjs",
"build:shttp": "smithery build src/index.ts --transport shttp -o .smithery/shttp/index.cjs",
"build:all": "npm run build:stdio && npm run build:shttp",
"prepare": "npm run build:stdio",
"dev": "smithery dev",
"test": "jest",
"test:watch": "jest --watch",
"release": "npm run build:all && echo 'Release v$(node -p \"require('./package.json').version\") built successfully'"
},
"keywords": [
"mcp",
"tessie",
"tesla",
"vehicle",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"@smithery/sdk": "^1.6.4",
"axios": "^1.6.0",
"dotenv": "^17.2.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@smithery/cli": "^1.4.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"jest": "^30.1.3",
"ts-jest": "^29.4.4",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": ["<rootDir>/src", "<rootDir>/tests"],
"testMatch": ["**/__tests__/**/*.ts", "**/?(*.)+(spec|test).ts"],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"extensionsToTreatAsEsm": [".ts"],
"globals": {
"ts-jest": {
"useESM": true
}
},
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": ["text", "lcov", "html"]
}
}