- aplicação GTK4/Python para servidores MCP - interface moderna com Libadwaita - suporte OpenAI e OpenRouter - configuração múltiplos MCPs - chat em tempo real 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "buddie-chat",
|
|
"version": "1.0.0",
|
|
"description": "Aplicação Electron/TypeScript para assistente AI interativo",
|
|
"main": "dist/main.js",
|
|
"author": "Descomplicar® Crescimento Digital",
|
|
"homepage": "https://descomplicar.pt",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run build:watch\" \"npm run start:electron\"",
|
|
"build": "npm run build:main && npm run build:renderer",
|
|
"build:main": "webpack --config webpack.main.config.js",
|
|
"build:renderer": "webpack --config webpack.renderer.config.js",
|
|
"build:watch": "concurrently \"npm run build:main -- --watch\" \"npm run build:renderer -- --watch\"",
|
|
"start:electron": "wait-on dist/main.js dist/renderer.js && electron .",
|
|
"dist": "npm run build && electron-builder",
|
|
"postinstall": "electron-builder install-app-deps"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.19.0",
|
|
"concurrently": "^8.2.2",
|
|
"electron": "^28.0.0",
|
|
"electron-builder": "^24.9.1",
|
|
"ts-loader": "^9.5.1",
|
|
"typescript": "^5.3.3",
|
|
"wait-on": "^7.2.0",
|
|
"webpack": "^5.89.0",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"dependencies": {
|
|
"openai": "^4.20.0"
|
|
},
|
|
"build": {
|
|
"appId": "pt.descomplicar.buddie-chat",
|
|
"productName": "Buddie Chat",
|
|
"directories": {
|
|
"output": "build"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"node_modules/**/*",
|
|
"package.json"
|
|
],
|
|
"extraMetadata": {
|
|
"main": "dist/main.js"
|
|
}
|
|
}
|
|
} |