{
	"name": "@code-yeongyu/lsp-daemon",
	"version": "0.1.0",
	"description": "Shared per-user Language Server Protocol daemon over a unix socket, with a stdio MCP proxy and a tool client.",
	"type": "module",
	"packageManager": "npm@11.16.0",
	"license": "MIT",
	"main": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"bin": {
		"omo-lsp-daemon": "./dist/cli.js"
	},
	"files": [
		"dist",
		"LICENSE",
		"NOTICE",
		"README.md"
	],
	"scripts": {
		"build": "tsc -p tsconfig.build.json && bun build src/cli.ts src/index.ts --outdir dist --target node --format esm && node scripts/stamp-dist-version.mjs",
		"test": "vitest --run",
		"test:watch": "vitest",
		"typecheck": "tsc --noEmit",
		"lint": "biome check .",
		"lint:fix": "biome check --write .",
		"check": "tsc --noEmit && biome check . && npm run build"
	},
	"devDependencies": {
		"@biomejs/biome": "2.4.16",
		"@oh-my-opencode/lsp-core": "file:../lsp-core",
		"@oh-my-opencode/mcp-stdio-core": "file:../mcp-stdio-core",
		"@types/node": "^25.9.2",
		"typescript": "^6.0.3",
		"vitest": "^4.1.8"
	},
	"engines": {
		"node": ">=20.0.0"
	}
}
