package.json•660 B
{
"name": "unsloth-server",
"version": "1.0.0",
"description": "MCP server for Unsloth - a library for optimizing and fine-tuning LLMs",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "ts-node src/index.ts"
},
"keywords": [
"unsloth",
"llm",
"fine-tuning",
"mcp",
"ai"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.8.10",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}