vice-mcp/package.json
Simen Svale db47d8ed10 Initial project setup with MCP SDK skeleton
- TypeScript project with tsup build
- MCP server with status, connect, disconnect tools (stubs)
- Uses zod for schema validation
- Builds and starts successfully

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 01:47:16 +01:00

47 lines
1 KiB
JSON

{
"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"
}
}