vice-mcp/package.json
Simen Svale 0f5db6162f Add prepare script for npx GitHub install
When npx installs from GitHub, it runs the prepare script to build.
Without this, dist/ doesn't exist and the bin entry fails.

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

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

48 lines
1.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": {
"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"
}
}