Newer
Older
TelosDB / package.json
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 6 days ago 1 KB chore: release v0.1.1
{
  "name": "sqlitevector",
  "version": "0.1.1",
  "description": "Resident MCP server with SQLite vector search, Tauri 2 + Rust runtime, and llama.cpp integration",
  "type": "module",
  "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",
    "tauri",
    "rust",
    "llama",
    "embedding"
  ],
  "author": "",
  "license": "ISC",
  "scripts": {
    "test": "bun test test/**/*.test.js",
    "setup": "node scripts/init-env.js && pwsh -File scripts/setup-llama-server-vulkan.ps1 && pwsh -File scripts/setup-model.ps1",
    "dev": "tauri dev --config src/backend/tauri.conf.json",
    "build": "tauri build --config src/backend/tauri.conf.json",
    "tauri": "tauri",
    "release": "node scripts/release.js",
    "test:watch": "bun test --watch test/**/*.test.js"
  },
  "devDependencies": {
    "@tauri-apps/cli": "^2.10.0",
    "@types/bun": "latest",
    "@types/express": "^5.0.6"
  },
  "private": true,
  "peerDependencies": {
    "typescript": "^5"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.26.0",
    "better-sqlite3": "^12.6.2"
  }
}