- Updated `dev:kill` script to use a dedicated Node.js script for improved process termination. - Enhanced `TeamProvisioningService` to trigger team refresh events for live lead replies, improving message handling. - Refactored message deduplication logic in `handleGetData` to prevent duplicate messages from lead sessions and lead processes. - Introduced `validateOpenPathUserSelected` function to allow user-selected paths while enforcing security checks. - Improved UI components in `TeamListView` and `ActivityItem` for better user experience and accessibility. - Added progress bar for task completion in `DashboardView`, enhancing task tracking visibility.
208 lines
6.5 KiB
JSON
208 lines
6.5 KiB
JSON
{
|
|
"name": "claude-agent-teams-ui",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"description": "Desktop app that visualizes Claude Code session execution — explore conversations, track context usage, and analyze tool calls",
|
|
"license": "AGPL-3.0",
|
|
"author": {
|
|
"name": "Илия (777genius)",
|
|
"email": "quantjumppro@gmail.com"
|
|
},
|
|
"homepage": "https://github.com/777genius/claude_agent_teams_ui",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/777genius/claude_agent_teams_ui.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/777genius/claude_agent_teams_ui/issues"
|
|
},
|
|
"main": "dist-electron/main/index.cjs",
|
|
"scripts": {
|
|
"dev": "electron-vite dev",
|
|
"dev:kill": "node bin/kill-dev.js",
|
|
"build": "electron-vite build",
|
|
"dist": "electron-builder --mac --win --linux",
|
|
"dist:mac": "electron-builder --mac --publish always",
|
|
"dist:mac:arm64": "electron-builder --mac --arm64 --publish always",
|
|
"dist:mac:x64": "electron-builder --mac --x64 --publish always",
|
|
"dist:win": "electron-builder --win --publish always",
|
|
"dist:linux": "electron-builder --linux --publish always",
|
|
"preview": "electron-vite preview",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css}\"",
|
|
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css}\"",
|
|
"check": "pnpm typecheck && pnpm lint && pnpm test && pnpm build",
|
|
"fix": "pnpm lint:fix && pnpm format",
|
|
"quality": "pnpm check && pnpm format:check && npx knip",
|
|
"test:chunks": "tsx test/test-chunk-building.ts",
|
|
"test:semantic": "tsx test/test-semantic-steps.ts",
|
|
"test:noise": "tsx test/test-noise-filtering.ts",
|
|
"test:task-filtering": "tsx test/test-task-filtering.ts",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:coverage:critical": "vitest run --coverage --config vitest.critical.config.ts",
|
|
"standalone": "tsx src/main/standalone.ts",
|
|
"standalone:build": "electron-vite build && vite build --config vite.standalone.config.ts",
|
|
"standalone:start": "node dist-standalone/index.cjs",
|
|
"prepare": "husky"
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{ts,tsx,js,jsx}": [
|
|
"eslint --fix"
|
|
],
|
|
"src/**/*.{ts,tsx,js,jsx,json,css}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@fastify/cors": "^11.2.0",
|
|
"@fastify/static": "^9.0.0",
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
"@radix-ui/react-collapsible": "^1.1.12",
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-label": "^2.1.8",
|
|
"@radix-ui/react-popover": "^1.1.15",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
"@tanstack/react-virtual": "^3.10.8",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "1.0.4",
|
|
"date-fns": "^3.6.0",
|
|
"electron-updater": "^6.7.3",
|
|
"fastify": "^5.7.4",
|
|
"idb-keyval": "^6.2.2",
|
|
"lucide-react": "^0.562.0",
|
|
"mdast-util-to-hast": "^13.2.1",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-markdown": "^10.1.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"remark-parse": "^11.0.0",
|
|
"ssh-config": "^5.0.4",
|
|
"ssh2": "^1.17.0",
|
|
"tailwind-merge": "^3.5.0",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"unified": "^11.0.5",
|
|
"zustand": "^4.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
|
|
"@eslint/js": "^9.39.2",
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"@types/hast": "^3.0.4",
|
|
"@types/mdast": "^4.0.4",
|
|
"@types/node": "^25.0.7",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/ssh2": "^1.15.5",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"@vitest/coverage-v8": "^3.1.4",
|
|
"autoprefixer": "^10.4.17",
|
|
"electron": "^40.3.0",
|
|
"electron-builder": "^25.1.8",
|
|
"electron-vite": "^2.3.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-boundaries": "^5.3.1",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-react-refresh": "^0.4.26",
|
|
"eslint-plugin-security": "^3.0.1",
|
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
"eslint-plugin-sonarjs": "^3.0.6",
|
|
"eslint-plugin-tailwindcss": "^3.18.2",
|
|
"globals": "^17.2.0",
|
|
"happy-dom": "^20.0.2",
|
|
"husky": "^9.1.7",
|
|
"knip": "^5.82.1",
|
|
"lint-staged": "^16.2.7",
|
|
"postcss": "^8.4.35",
|
|
"prettier": "^3.8.1",
|
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
"tailwindcss": "^3.4.1",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.54.0",
|
|
"vite": "^5.4.2",
|
|
"vitest": "^3.1.4"
|
|
},
|
|
"build": {
|
|
"appId": "com.claudecode.context",
|
|
"productName": "Claude Agent Teams UI",
|
|
"directories": {
|
|
"output": "release"
|
|
},
|
|
"files": [
|
|
"out/renderer/**",
|
|
"dist-electron/**",
|
|
"package.json"
|
|
],
|
|
"asar": true,
|
|
"asarUnpack": [
|
|
"out/renderer/**"
|
|
],
|
|
"npmRebuild": false,
|
|
"extraMetadata": {
|
|
"main": "dist-electron/main/index.cjs"
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.developer-tools",
|
|
"target": [
|
|
"dmg",
|
|
"zip"
|
|
],
|
|
"hardenedRuntime": true,
|
|
"gatekeeperAssess": false,
|
|
"notarize": true,
|
|
"entitlements": "resources/entitlements.mac.plist",
|
|
"entitlementsInherit": "resources/entitlements.mac.inherit.plist",
|
|
"icon": "resources/icons/mac/icon.icns"
|
|
},
|
|
"dmg": {
|
|
"sign": false
|
|
},
|
|
"win": {
|
|
"target": [
|
|
"nsis"
|
|
],
|
|
"icon": "resources/icons/win/icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
"AppImage",
|
|
"deb",
|
|
"rpm",
|
|
"pacman"
|
|
],
|
|
"icon": "resources/icons/png",
|
|
"category": "Development"
|
|
},
|
|
"deb": {
|
|
"afterInstall": "resources/afterInstall.sh"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": true
|
|
},
|
|
"publish": [
|
|
{
|
|
"provider": "github",
|
|
"releaseType": "draft"
|
|
}
|
|
]
|
|
},
|
|
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501"
|
|
}
|