package.json•765 B
{
"name": "nanobanana-mcp-server",
"version": "1.0.13",
"type": "module",
"description": "MCP server for Nano Banana extension powered by OpenRouter",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"prepare": "npm run build",
"typecheck": "tsc --noEmit",
"test": "npm run build && npm run test:unit && npm run test:integration",
"test:unit": "node --test ./tests/unit",
"test:integration": "node --test ./tests/integration",
"test:manual:openrouter": "node ./tests/manual/openrouter.integration.js"
},
"devDependencies": {
"@types/node": "^22.0.0",
"dotenv": "^17.2.3",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}