{ "name": "vice-mcp", "version": "0.1.0", "description": "MCP server for autonomous C64 debugging via VICE emulator", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "vice-mcp": "dist/index.js" }, "scripts": { "build": "tsup src/index.ts --format esm --dts --clean", "dev": "tsup src/index.ts --format esm --watch", "start": "node dist/index.js", "typecheck": "tsc --noEmit" }, "repository": { "type": "git", "url": "git+https://github.com/simen/vice-mcp.git" }, "keywords": [ "mcp", "vice", "c64", "commodore", "debugger", "emulator" ], "author": "", "license": "MIT", "bugs": { "url": "https://github.com/simen/vice-mcp/issues" }, "homepage": "https://github.com/simen/vice-mcp#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "zod": "^4.2.1" }, "devDependencies": { "@types/node": "^20.10.0", "tsup": "^8.0.0", "typescript": "^5.3.0" }, "engines": { "node": ">=18" } }