Update README and package.json: add npx usage instructions and prepare script

This commit is contained in:
enne2
2026-03-14 20:09:30 +01:00
parent adc105e600
commit 17a9c140ba
2 changed files with 10 additions and 0 deletions
+6
View File
@@ -37,6 +37,12 @@ Per uso MCP via stdio:
npm run start
```
Oppure direttamente da git via `npx`, utile per configurazioni MCP come quella di VS Code:
```bash
npx --yes git+https://git.enne2.net/enne2/big-banana-mcp.git
```
Per sviluppo:
```bash
+4
View File
@@ -4,9 +4,13 @@
"private": true,
"type": "module",
"description": "Big Banana MCP server for Google Nano Banana and Gemini image workflows.",
"bin": {
"big-banana-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/index.ts",
"prepare": "npm run build",
"start": "node dist/index.js",
"check": "tsc --noEmit -p tsconfig.json"
},