first commit

This commit is contained in:
Michal
2026-02-21 03:10:39 +00:00
commit d0aa0c5d63
174 changed files with 21169 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"name": "@mcpctl/local-proxy",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "rimraf dist",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@mcpctl/shared": "workspace:*"
}
}

View File

@@ -0,0 +1,2 @@
// Local LLM proxy entry point
// Will be implemented in Task 11

View File

@@ -0,0 +1,11 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist"
},
"include": ["src/**/*.ts"],
"references": [
{ "path": "../shared" }
]
}

View File

@@ -0,0 +1,8 @@
import { defineProject } from 'vitest/config';
export default defineProject({
test: {
name: 'local-proxy',
include: ['tests/**/*.test.ts'],
},
});