-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.53 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "argus-monitor",
"version": "1.0.0",
"description": "Monitor what AI agents and desktop LLM apps are accessing on your laptop",
"keywords": [
"ai",
"security",
"privacy",
"monitoring",
"claude",
"cursor",
"copilot",
"macos",
"electron",
"llm",
"agent"
],
"repository": {
"type": "git",
"url": "https://github.com/cortexark/argus.git"
},
"homepage": "https://github.com/cortexark/argus",
"bugs": {
"url": "https://github.com/cortexark/argus/issues"
},
"license": "MIT",
"author": "cortexark",
"main": "src/index.js",
"bin": {
"argus": "src/cli.js"
},
"scripts": {
"start": "node src/index.js",
"dashboard": "node src/dashboard.js",
"report": "node src/report.js",
"node:rebuild": "npm rebuild better-sqlite3",
"test": "npm run node:rebuild && node --experimental-vm-modules tests/run.js",
"test:electron-runtime": "npm run electron:rebuild && node tests/build/electron-runtime-smoke.test.js",
"electron:dev": "npm run electron:rebuild && electron electron/main.js",
"electron:rebuild": "electron-rebuild -f -w better-sqlite3",
"electron:build": "npm run electron:rebuild && electron-builder --mac dmg --publish never",
"electron:build:linux": "npm run electron:rebuild && electron-builder --linux AppImage --publish never"
},
"build": {
"appId": "dev.argus.monitor",
"productName": "Argus",
"copyright": "Copyright © 2025 Argus",
"mac": {
"target": "dmg",
"icon": "electron/assets/icon.png",
"category": "public.app-category.utilities",
"darkModeSupport": true
},
"linux": {
"target": "AppImage",
"icon": "electron/assets/icon.png",
"category": "Utility"
},
"files": [
"src/**/*",
"electron/**/*",
"node_modules/**/*",
"package.json"
],
"extraMetadata": {
"main": "electron/main.js"
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.8.0",
"blessed": "^0.1.81",
"chalk": "^5.3.0",
"chokidar": "^5.0.0",
"cli-table3": "^0.6.5",
"menubar": "^9.5.2",
"node-notifier": "^10.0.1",
"nodemailer": "^8.0.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0",
"ps-list": "^8.1.1",
"zod": "^4.3.6"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@playwright/test": "^1.58.2",
"electron": "^34.5.8",
"electron-builder": "^26.8.1"
}
}