Files
qwen-code/packages/server/package.json
Taylor Mullen b3f52e215a feat: Replace SQLite with JSON logging for macOS sandbox compatibility
- Removes the sqlite3 dependency and refactors the logging mechanism to use a JSON file (logs.json) instead of a database.
- This change is a temporary workaround to address issues with macOS sandboxing that were caused by the SQLite native module.
- Storing all logs in a single JSON file may introduce scalability concerns in the future.

Fixes https://github.com/google-gemini/gemini-cli/issues/522
2025-05-26 16:13:37 -07:00

42 lines
1.1 KiB
JSON

{
"name": "@gemini-code/server",
"version": "0.1.0",
"description": "Gemini CLI Server",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node dist/src/index.js",
"build": "../../scripts/build_package.sh",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"test": "vitest run",
"test:ci": "vitest run --reporter=junit --outputFile=junit.xml",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prerelease:version": "node ../../scripts/bind_package_version.js",
"prerelease:deps": "node ../../scripts/bind_package_dependencies.js",
"prepack": "npm run build"
},
"files": [
"dist"
],
"dependencies": {
"@google/genai": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.11.0",
"diff": "^7.0.0",
"dotenv": "^16.4.7",
"fast-glob": "^3.3.3",
"shell-quote": "^1.8.2"
},
"devDependencies": {
"@types/diff": "^7.0.2",
"@types/dotenv": "^6.1.1",
"typescript": "^5.3.3",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18"
}
}