Refactor project setup: remove unused VSCode configuration, update build script to make index.js executable, and add shebang to entry point

This commit is contained in:
enne2
2026-03-14 20:26:02 +01:00
parent 17a9c140ba
commit 5124c2fb67
4 changed files with 3 additions and 12 deletions
-11
View File
@@ -1,11 +0,0 @@
{
"servers": {
"google-nano-banana": {
"type": "stdio",
"command": "node",
"args": [
"dist/index.js"
]
}
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

+1 -1
View File
@@ -8,7 +8,7 @@
"big-banana-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
"dev": "tsx watch src/index.ts",
"prepare": "npm run build",
"start": "node dist/index.js",
+2
View File
@@ -1,3 +1,5 @@
#!/usr/bin/env node
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
import * as z from 'zod/v4';