@porte/cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/README.md +25 -0
- package/dist/client-CpzDWkFF.js +6708 -0
- package/dist/main.js +22 -0
- package/dist/run-cli-DB73XVhH.js +4200 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://www.schemastore.org/package.json",
|
|
3
|
+
"name": "@porte/cli",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "Run your local Grok sessions from your phone. The daemon that pairs a Mac with useporte.dev.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"acp",
|
|
8
|
+
"agent",
|
|
9
|
+
"cli",
|
|
10
|
+
"grok",
|
|
11
|
+
"remote"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://useporte.dev",
|
|
14
|
+
"bugs": "https://github.com/alexander-zuev/porte/issues",
|
|
15
|
+
"license": "Apache-2.0",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/alexander-zuev/porte.git",
|
|
19
|
+
"directory": "apps/host"
|
|
20
|
+
},
|
|
21
|
+
"bin": {
|
|
22
|
+
"porte": "./dist/main.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@agentclientprotocol/sdk": "^1.4.0",
|
|
33
|
+
"@better-fetch/fetch": "^1.3.1",
|
|
34
|
+
"partysocket": "1.3.0",
|
|
35
|
+
"picocolors": "^1.1.1",
|
|
36
|
+
"ws": "^8.21.3"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@porte/core": "0.1.0",
|
|
40
|
+
"@types/node": "^26.4.0",
|
|
41
|
+
"@types/ws": "^8.18.1",
|
|
42
|
+
"better-result": "^3.0.1",
|
|
43
|
+
"tsdown": "^0.22.14",
|
|
44
|
+
"tsx": "^4.23.12",
|
|
45
|
+
"typescript": "^7.0.2",
|
|
46
|
+
"vitest": "^4.1.10",
|
|
47
|
+
"zod": "^4.4.3"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=22"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"dev": "tsx src/main.ts",
|
|
54
|
+
"build": "tsdown",
|
|
55
|
+
"typecheck": "tsc --noEmit",
|
|
56
|
+
"lint": "oxlint .",
|
|
57
|
+
"lint:fix": "oxlint . --fix",
|
|
58
|
+
"test": "vitest run --exclude tests/e2e/**",
|
|
59
|
+
"test:unit": "vitest run tests/unit",
|
|
60
|
+
"test:integration": "vitest run tests/integration",
|
|
61
|
+
"test:e2e": "vitest run tests/e2e"
|
|
62
|
+
}
|
|
63
|
+
}
|