package.json•1.25 kB
{
"name": "swit-mcp",
"version": "1.0.10",
"description": "Swit Model Context Protocol Server",
"homepage": "https://github.com/tykann/swit-mcp",
"type": "module",
"main": "dist/index.js",
"bin": {
"swit-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"mcp",
"swit"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@swit-api/oauth": "^0.0.7",
"axios": "^1.6.0",
"express": "^5.0.3",
"zod": "^3.22.0",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^29.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"js-yaml": "^4.1.0",
"nock": "^13.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}