-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.43 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
{
"name": "superintent-remote",
"version": "0.0.3",
"description": "Remote control for Claude Code CLI from your phone",
"type": "module",
"bin": {
"superintent-remote": "src/index.ts"
},
"files": [
"src",
"!src/**/*.test.ts"
],
"keywords": [
"claude",
"claude-code",
"remote",
"ssh",
"terminal",
"mobile",
"tailscale",
"tmux",
"superintent",
"superintent-cli"
],
"author": "acoderacom",
"homepage": "https://github.com/acoderacom/superintent-remote#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/acoderacom/superintent-remote.git"
},
"bugs": {
"url": "https://github.com/acoderacom/superintent-remote/issues"
},
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"start": "bun src/index.ts",
"dev": "bun --watch src/index.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"build": "bun build src/index.ts --compile --outfile dist/superintent-remote",
"prepublishOnly": "bun run typecheck && bun run lint && bun test"
},
"license": "MIT",
"dependencies": {
"qrcode": "^1.5.4",
"ssh2": "^1.17.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@types/bun": "^1.3.10",
"@types/qrcode": "^1.5.6",
"@types/ssh2": "^1.15.5",
"typescript": "^5.9.3"
}
}