-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 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
{
"name": "agentum",
"version": "1.0.1",
"description": "Mirror terminal sessions and AI coding agents to mobile over WebSocket",
"main": "dist/index.js",
"bin": {
"ag": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"clean": "rm -rf dist",
"test": "./tests/run-all-tests.sh",
"prepublishOnly": "npm run build",
"postinstall": "chmod +x node_modules/node-pty/prebuilds/darwin-*/spawn-helper 2>/dev/null || true"
},
"keywords": [
"vibe-coding",
"mobile-coding",
"code-from-phone",
"codex-mirror",
"claude-mirror",
"copilot-mirror",
"ai-agent-mobile",
"remote-coding",
"terminal-mirror",
"afk-coding"
],
"author": "AirCodum (https://aircodum.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/priyankark/agentum-cli.git"
},
"bugs": {
"url": "https://github.com/priyankark/agentum-cli/issues"
},
"homepage": "https://github.com/priyankark/agentum-cli#readme",
"dependencies": {
"@hurdlegroup/robotjs": "^0.12.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"jimp": "^1.6.0",
"node-pty": "^1.0.0",
"screenshot-desktop": "^1.15.2",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/screenshot-desktop": "^1.15.0",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}