Newer
Older
TelosDB / package.json
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 8 days ago 1 KB refactor: modernize source code with improved structure and logging
{
  "name": "sqlitevector",
  "version": "1.0.0",
  "description": "Resident MCP server with SQLite vector search, Electron + Bun runtime, and llama.cpp integration",
  "type": "module",
  "main": "src/main.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/yourusername/sqlitevector"
  },
  "homepage": "https://github.com/yourusername/sqlitevector",
  "bugs": {
    "url": "https://github.com/yourusername/sqlitevector/issues"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "vector-search",
    "sqlite",
    "sqlite-vec",
    "electron",
    "bun",
    "llama",
    "embedding"
  ],
  "author": "",
  "license": "ISC",
  "scripts": {
    "start": "electron .",
    "test": "bun test test/**/*.test.js",
    "test:db": "bun test test/db.test.js",
    "test:llama": "bun test test/llama-client.test.js",
    "test:tools": "bun test test/mcp-tools.test.js",
    "test:handlers": "bun test test/mcp-handlers.test.js",
    "test:integration": "bun test test/integration.test.js",
    "test:watch": "bun test --watch test/**/*.test.js"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/express": "^5.0.6",
    "electron": "^40.1.0",
    "electron-rebuild": "^3.2.9"
  },
  "private": true,
  "peerDependencies": {
    "typescript": "^5"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.26.0",
    "better-sqlite3": "^12.6.2",
    "express": "^5.2.1",
    "knex": "^3.1.0",
    "sharer.js": "^0.5.3",
    "sqlite-vec": "^0.1.7-alpha.2"
  }
}