Files
Agentswarm/desktop-client/package.json
T
2026-06-08 17:32:34 +08:00

73 lines
1.8 KiB
JSON

{
"name": "heicode-swarm-desktop",
"version": "0.1.0",
"description": "Desktop client for HeiCode Swarm - K8s-based AI agent orchestration",
"main": "dist/main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"npm run build:watch\" \"npm run electron:dev\"",
"build": "tsc",
"build:watch": "tsc --watch",
"electron:dev": "wait-on dist/main.js && electron .",
"package": "electron-builder",
"lint": "eslint src --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"validate-analyzer": "tsc && node dist/ai/validate-analyzer.js"
},
"keywords": [
"electron",
"kubernetes",
"ai",
"swarm",
"orchestration"
],
"author": "HeiCode",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^0.20.0",
"@anthropic-ai/sdk": "^0.20.0",
"isomorphic-git": "^1.25.0",
"zustand": "^4.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"concurrently": "^8.2.2",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"wait-on": "^7.2.0",
"tailwindcss": "^3.4.0",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33"
},
"build": {
"appId": "com.heicode.swarm",
"productName": "HeiCode Swarm",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": ["dmg", "zip"]
},
"linux": {
"target": ["AppImage", "deb"],
"category": "Development"
},
"win": {
"target": ["nsis", "portable"]
}
}
}