d2fed6087a
- Introduced `mcp-server.js` to expose KXKM personas as MCP tools, supporting chat, persona listing, web search, and status checks. - Implemented `mcp-server-smoke.js` for testing the MCP server functionality, ensuring compatibility with both new and legacy message formats. - Created `setup-voice-clone.sh` for managing voice cloning environment setup, including bootstrapping, sample generation, and smoke testing. - Added `state.json` to track project status and task outputs for various batches. - Generated summary files for deep cycle and overall project status, capturing performance and security findings.
43 lines
1003 B
JSON
43 lines
1003 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"composite": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@kxkm/core": [
|
|
"packages/core/src/index.ts"
|
|
],
|
|
"@kxkm/auth": [
|
|
"packages/auth/src/index.ts"
|
|
],
|
|
"@kxkm/chat-domain": [
|
|
"packages/chat-domain/src/index.ts"
|
|
],
|
|
"@kxkm/persona-domain": [
|
|
"packages/persona-domain/src/index.ts"
|
|
],
|
|
"@kxkm/node-engine": [
|
|
"packages/node-engine/src/index.ts"
|
|
],
|
|
"@kxkm/storage": [
|
|
"packages/storage/src/index.ts"
|
|
],
|
|
"@kxkm/tui": [
|
|
"packages/tui/src/index.ts"
|
|
]
|
|
}
|
|
}
|
|
}
|