Browse Source

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

main
enne2 3 months ago
parent
commit
17a9c140ba
  1. 6
      README.md
  2. 4
      package.json

6
README.md

@ -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
package.json

@ -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"
},

Loading…
Cancel
Save