-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.83 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
{
"name": "@leverageaiapps/gogogo",
"version": "1.1.1",
"description": "CLI tool to forward terminal sessions to your mobile device via Cloudflare Tunnel. Code anywhere from your pocket.",
"main": "dist/index.js",
"bin": {
"gogogo": "./dist/index.js"
},
"files": [
"dist/",
"public/",
"scripts/"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"postinstall": "node scripts/postinstall.js",
"verify": "node scripts/verify-install.js",
"prepublishOnly": "npm run build",
"global-install": "npm install && npm run build && npm link"
},
"keywords": [
"terminal",
"mobile",
"cloudflare",
"tunnel",
"remote",
"pty",
"cli",
"claude-code",
"ai",
"coding"
],
"author": "LeverageAI Apps",
"license": "MIT",
"dependencies": {
"cloudflared": "^0.7.1",
"commander": "^12.1.0",
"cookie-parser": "^1.4.7",
"express": "^5.2.1",
"node-pty": "^1.1.0",
"qrcode-terminal": "^0.12.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/node": "^20.17.12",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.18.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/leverageaiapp/GoGoGo.git"
},
"bugs": {
"url": "https://github.com/leverageaiapp/GoGoGo/issues"
},
"homepage": "https://gogogo.locus.cool"
}