package.json•784 B
{
"name": "@hevener/server-todo-checklist",
"version": "1.0.0",
"description": "MCP server para gerenciamento de listas de tarefas e TODOs",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"mcp-server-todo-checklist": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"watch": "tsc --watch",
"prepare": "npm run build"
},
"dependencies": {
"@hevener/server-todo-checklist": "file:",
"@modelcontextprotocol/sdk": "1.0.1",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/node": "^20.11.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}