package.json•1.34 kB
{
"name": "freedcamp-mcp",
"version": "0.1.32",
"description": "MCP server implementation for Freedcamp task management",
"type": "module",
"main": "dist/freedcamp-mcp.js",
"bin": {
"freedcamp-mcp": "dist/server.js"
},
"scripts": {
"start": "node dist/server.js",
"start:http": "node dist/http-server.js",
"start:http:test": "dotenv -e .env -- node dist/http-server.js",
"test": "npm run build && node dist/test-harness.js",
"test:http": "npm run build && dotenv -e .env -- node dist/test-harness-http.js",
"build": "tsc",
"postbuild": "chmod +x dist/server.js && chmod +x dist/http-server.js",
"dev": "tsc --watch",
"prepare": "husky install"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.15.0",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/express": "^4.17.17",
"@types/node": "^20.11.24",
"@types/node-fetch": "^2.6.11",
"dotenv-cli": "^8.0.0",
"husky": "^8.0.0",
"standard-version": "^9.5.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=17.0.0"
},
"license": "MIT",
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
]
}