chore: initialize repo with Copilot LSP config

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Dávid Kaya
2026-03-21 09:25:14 +01:00
co-authored by Copilot
commit 1ed3d3f652
7 changed files with 104 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "kopaya",
"version": "1.0.0",
"description": "Terminal UI wrapper for coordinating multiple GitHub Copilot CLI sessions across projects.",
"private": true,
"scripts": {
"lsp:typescript": "typescript-language-server --stdio",
"typecheck": "tsc --noEmit",
"test": "bun run typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkaya/kopaya.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidkaya/kopaya/issues"
},
"homepage": "https://github.com/davidkaya/kopaya#readme",
"packageManager": "bun@1.3.6",
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.9.3",
"typescript-language-server": "^5.1.3"
}
}