-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@agentdeploymentco/argus-workspace",
"version": "0.1.27",
"description": "Argus is a desktop app that helps find and fix wasted agent work. Local, free and open source. Focuses on business tasks, not code. Works with Claude Cowork / Chat / Code, ChatGPT Work and Codex.",
"type": "module",
"private": true,
"bin": {
"argus": "npm/dev-launcher.cjs"
},
"scripts": {
"start": "bun run src/cli.ts",
"demo": "bun run scripts/demo.ts --serve",
"dev": "bash scripts/dev.sh",
"dev:web": "vite --config web/vite.config.ts",
"test": "bun test",
"typecheck": "tsc --noEmit && tsc -p web --noEmit",
"bench:cache": "bun run scripts/bench-cache.ts",
"screenshot": "bun scripts/screenshot.ts",
"build:web": "vite build --config web/vite.config.ts",
"build:compile": "bun run build:web && bun build --compile src/cli.ts --outfile dist/argus",
"bump-version": "bun run scripts/bump-version.ts",
"get-version": "bun run scripts/get-version.ts",
"build:npm": "bun run scripts/build-npm-packages.ts",
"desktop:stage": "bash scripts/stage-desktop-sidecar.sh --build",
"desktop:stage:windows": "bash scripts/stage-desktop-sidecar.sh --build --target x86_64-pc-windows-msvc",
"desktop:stage:windows:arm64": "bash scripts/stage-desktop-sidecar.sh --build --target aarch64-pc-windows-msvc",
"desktop:dev": "bun run desktop:stage && cd desktop && ../node_modules/.bin/tauri dev",
"desktop:build": "bun run desktop:stage && cd desktop && ../node_modules/.bin/tauri build --bundles app",
"desktop:build:windows": "bun run desktop:stage:windows && cd desktop && ../node_modules/.bin/tauri build --target x86_64-pc-windows-msvc --runner cargo-xwin --bundles nsis",
"desktop:build:windows:arm64": "bun run desktop:stage:windows:arm64 && cd desktop && XWIN_CROSS_COMPILER=clang ../node_modules/.bin/tauri build --target aarch64-pc-windows-msvc --runner cargo-xwin --bundles nsis",
"desktop:build:windows:native": "bun run desktop:stage && cd desktop && ../node_modules/.bin/tauri build --bundles nsis",
"desktop:build:local": "bun run desktop:stage && cd desktop && ../node_modules/.bin/tauri build --bundles app -c src-tauri/tauri.conf.json.local",
"desktop:dmg": "bun run desktop:stage && cd desktop && ../node_modules/.bin/tauri build --bundles dmg",
"docs:changelog": "bun run scripts/generate-docs-changelog.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@hono/mcp": "^0.3.1",
"@hono/node-server": "^2.0.5",
"@modelcontextprotocol/sdk": "^1.30.0",
"citty": "^0.2.2",
"consola": "^3.4.2",
"hono": "^4.12.25",
"zod": "^3"
},
"devDependencies": {
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-router": "^1.170.15",
"@tanstack/react-table": "^8.21.3",
"@tauri-apps/cli": "^2",
"@types/node": "^25.9.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"bun-types": "^1.3.14",
"chart.js": "^4.5.1",
"lucide-react": "^1.20.0",
"mermaid": "^11.16.0",
"posthog-js": "^1.240.0",
"react": "^19.2.7",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.7",
"sharp": "^0.35.3",
"typescript": "^5.9.3",
"vite": "^8.0.16",
"vitepress": "^2.0.0-alpha.17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Agent-Deployment-Co/argus.git"
},
"license": "MIT"
}