package.json•1.04 kB
{
"name": "contextmgr-mcp",
"version": "1.0.0",
"description": "MCP server for managing development context and workflow",
"type": "module",
"main": "dist/mcp-entry.js",
"types": "dist/mcp-entry.d.ts",
"bin": {
"mcp-server": "./dist/mcp-entry.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx --no-warnings src/mcp-entry.ts",
"start": "node dist/mcp-entry.js",
"test": "jest",
"prepublishOnly": "npm run build",
"postbuild": "chmod +x dist/mcp-entry.js",
"watch": "tsc -w"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"sqlite-vss": "^0.1.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.10.6",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.3",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}