-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.86 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
{
"name": "shellular",
"version": "0.0.51",
"description": "Shellular CLI — host your dev environment for remote access from your phone.",
"main": "dist/main.js",
"scripts": {
"dev": "cross-env SHELLULAR_DEV=true tsx --import ./scripts/register-sql-loader.mjs --watch src/main.ts",
"start": "tsx --import ./scripts/register-sql-loader.mjs src/main.ts",
"build": "pnpm run schema && tsc && tsup",
"schema": "tsx scripts/generate-schema.ts",
"prepublishOnly": "pnpm run build",
"ci:publish": "pnpm publish --access public",
"try-run": "pnpm run build && node dist/main.js"
},
"publishConfig": {
"access": "public"
},
"bin": {
"shellular": "dist/main.js"
},
"keywords": [
"shellular",
"remote",
"development",
"cli"
],
"license": "AGPL-3.0-only",
"type": "module",
"files": [
"dist",
"schema.sql",
"readme.md",
"LICENSE"
],
"dependencies": {
"@agentclientprotocol/sdk": "^1.2.1",
"@ff-labs/fff-node": "^0.6.4",
"@inquirer/prompts": "^8.4.2",
"@opencode-ai/sdk": "1.14.41",
"@shellular/protocol": "workspace:*",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/headless": "^6.0.0",
"better-sqlite3": "^13.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"libsodium-wrappers": "^0.8.3",
"nanoid": "^5.1.7",
"node-machine-id": "^1.1.12",
"node-pty": "^1.2.0-beta.12",
"pm2": "^7.0.3",
"qrcode-terminal": "^0.12.0",
"semver": "^7.7.4",
"ws": "^8.21.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.17",
"@types/qrcode-terminal": "^0.12.2",
"@types/semver": "^7.7.1",
"@types/ws": "^8.18.1",
"cross-env": "^10.1.0",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3"
},
"optionalDependencies": {
"bufferutil": "^4.1.0"
}
}