-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "opencode-remote",
"version": "1.0.0",
"description": "CLI tool to manage opencode web as a background service with web UI configuration and Tailscale integration",
"type": "module",
"bin": {
"opencode-remote": "./dist/index.js"
},
"scripts": {
"build": "bun build src/index.ts --outdir=dist --target=bun",
"dev": "bun run src/index.ts",
"start": "bun run src/index.ts start",
"stop": "bun run src/index.ts stop",
"status": "bun run src/index.ts status",
"restart": "bun run src/index.ts restart",
"config": "bun run src/index.ts config",
"install-service": "bun run src/index.ts install-service",
"uninstall-service": "bun run src/index.ts uninstall-service"
},
"keywords": [
"opencode",
"remote",
"tailscale",
"cli",
"web-ui"
],
"author": "luigivis",
"license": "MIT",
"devDependencies": {
"@types/bun": "^1.0.0",
"typescript": "^5.3.0"
},
"dependencies": {
"chalk": "^5.3.0",
"env-paths": "^3.0.0",
"zx": "^8.0.0"
}
}