tv-anarchy/mcp/package.json
Natalie 4a2ceb9781 feat(offline): inline star-to-keep and trash-to-cull on cache rows
Surface the existing pin (keep-from-cull) and per-file delete actions as
visible inline buttons on each offline cache row instead of context-menu-only:
a star toggles protection from auto-cull (and restore-if-missing), a trash
culls that file early. Aligns wording/icons to the star metaphor.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-30 00:12:41 -04:00

28 lines
865 B
JSON

{
"name": "@lilith/tv-anarchy-mcp",
"version": "0.1.0",
"private": true,
"description": "MCP server for the TV Anarchy media stack: VLC, transmission, library/watch state, and the HTTP bridge for the iOS client. Shared with host daemon (control-plane on always-on host) via packages for DRY.",
"type": "module",
"main": "./src/index.ts",
"bin": {
"tv-anarchy-mcp": "./src/index.ts"
},
"scripts": {
"start": "bun run src/index.ts",
"bridge": "bun run src/http.ts",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.26.0",
"@tv-anarchy/types": "workspace:*",
"@tv-anarchy/config": "workspace:*",
"@tv-anarchy/media": "workspace:*",
"@tv-anarchy/net": "workspace:*"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.4.0"
}
}