package.json•854 B
{
"name": "simple-ts-mcp-server",
"version": "1.0.0",
"description": "Simple TypeScript MCP server template with basic CRUD operations",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node --esm src/server.ts",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"test:single": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=18.0.0"
}
}