package.json•1.96 kB
{
"name": "@houtini/lm",
"version": "1.0.13",
"type": "module",
"description": "Houtini LM - LM Studio MCP Server with Expert Prompt Library and Custom Prompting",
"main": "dist/index.js",
"bin": {
"houtini-lm": "dist/index.js"
},
"scripts": {
"build": "tsc && node add-shebang.mjs",
"clean": "rimraf dist",
"rebuild": "npm run clean && npm run build",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test:connection": "node test-connection.mjs",
"test:integration": "node tests/integration.test.mjs",
"test:tools": "node tests/tools.test.mjs",
"test:core": "jest tests/core.test.ts",
"test": "npm run test:connection && npm run test:tools && npm run test:core",
"diagnose": "node diagnostics/run-diagnostics.mjs",
"check:processes": "node diagnostics/check-claude-processes.mjs"
},
"keywords": [
"houtini",
"local-lm",
"mcp",
"model-context-protocol",
"claude-mcp",
"lm-studio",
"ai-development",
"code-generation",
"unlimited-tokens",
"context-preservation",
"local-ai"
],
"author": "Richard Baxter <richard@richardbaxter.co> (https://richardbaxter.co)",
"license": "MIT",
"homepage": "https://houtini.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/houtini-ai/lm.git"
},
"bugs": {
"url": "https://github.com/houtini-ai/lm/issues"
},
"dependencies": {
"@lmstudio/sdk": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.17.3",
"puppeteer": "^21.11.0",
"css-tree": "^2.3.1"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"rimraf": "^6.0.1",
"typescript": "^5.3.3",
"@types/css-tree": "^2.3.8"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}