vice-mcp/package.json
Simen Svale a8bd8ab60a Bump version to 1.0.1, add startup version log
- Update package.json version from 0.1.0 to 1.0.1
- Update MCP server version to 1.0.1
- Log version to stderr on startup for debugging

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

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

48 lines
1.1 KiB
JSON

{
"name": "vice-mcp",
"version": "1.0.1",
"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": {
"prepare": "npm run build",
"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"
}
}