41 lines
893 B
JSON
41 lines
893 B
JSON
|
|
{
|
||
|
|
"name": "jortt-mcp",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"description": "Model Context Protocol server for the Jortt accounting API",
|
||
|
|
"license": "MIT",
|
||
|
|
"type": "module",
|
||
|
|
"bin": {
|
||
|
|
"jortt-mcp": "dist/index.js"
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"dist",
|
||
|
|
"README.md"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"fetch-spec": "node scripts/fetch-spec.mjs",
|
||
|
|
"build": "npm run fetch-spec && tsc && node -e \"require('fs').copyFileSync('src/openapi.json','dist/openapi.json')\"",
|
||
|
|
"prepare": "npm run build",
|
||
|
|
"start": "node dist/index.js",
|
||
|
|
"dev": "tsc --watch",
|
||
|
|
"typecheck": "tsc --noEmit"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"mcp",
|
||
|
|
"model-context-protocol",
|
||
|
|
"jortt",
|
||
|
|
"accounting",
|
||
|
|
"invoicing",
|
||
|
|
"api"
|
||
|
|
],
|
||
|
|
"engines": {
|
||
|
|
"node": ">=18"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@modelcontextprotocol/sdk": "^1.12.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^22.10.0",
|
||
|
|
"typescript": "^5.7.0"
|
||
|
|
}
|
||
|
|
}
|