gitspace 0.2.0-rc.37 → 0.2.0-rc.39
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/package.json +26 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gitspace",
|
|
3
|
-
"version": "0.2.0-rc.
|
|
3
|
+
"version": "0.2.0-rc.39",
|
|
4
4
|
"description": "CLI for managing GitHub workspaces with git worktrees and secure remote terminal access",
|
|
5
5
|
"bin": {
|
|
6
6
|
"gssh": "./bin/gssh"
|
|
@@ -13,21 +13,24 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"scripts": {
|
|
15
15
|
"dev": "bun src/index.ts",
|
|
16
|
+
"dev:web": "bun scripts/dev.ts",
|
|
16
17
|
"check:lockfile-sync": "bun scripts/check-lockfile-sync.ts",
|
|
17
|
-
"typecheck": "
|
|
18
|
+
"typecheck": "tsgo --noEmit -p tsconfig.json",
|
|
18
19
|
"lint": "eslint src/",
|
|
19
20
|
"build:web": "cd web && bun install && bun run build",
|
|
20
21
|
"build": "bun scripts/build.ts",
|
|
21
22
|
"build:all": "bun scripts/build.ts --all",
|
|
22
23
|
"build:npm": "bun scripts/build.ts --npm",
|
|
23
24
|
"relay": "bun src/relay/index.ts",
|
|
24
|
-
"e2e:on-demand": "bash scripts/e2e/run-on-demand.sh"
|
|
25
|
+
"e2e:on-demand": "bash scripts/e2e/run-on-demand.sh",
|
|
26
|
+
"check:arch": "node node_modules/.bin/depcruise src --config .dependency-cruiser.cjs --output-type err",
|
|
27
|
+
"check:arch:json": "node node_modules/.bin/depcruise src --config .dependency-cruiser.cjs --output-type json"
|
|
25
28
|
},
|
|
26
29
|
"optionalDependencies": {
|
|
27
|
-
"@gitspace/darwin-arm64": "0.2.0-rc.
|
|
28
|
-
"@gitspace/darwin-x64": "0.2.0-rc.
|
|
29
|
-
"@gitspace/linux-x64": "0.2.0-rc.
|
|
30
|
-
"@gitspace/linux-arm64": "0.2.0-rc.
|
|
30
|
+
"@gitspace/darwin-arm64": "0.2.0-rc.39",
|
|
31
|
+
"@gitspace/darwin-x64": "0.2.0-rc.39",
|
|
32
|
+
"@gitspace/linux-x64": "0.2.0-rc.39",
|
|
33
|
+
"@gitspace/linux-arm64": "0.2.0-rc.39"
|
|
31
34
|
},
|
|
32
35
|
"keywords": [
|
|
33
36
|
"cli",
|
|
@@ -49,22 +52,27 @@
|
|
|
49
52
|
"dependencies": {
|
|
50
53
|
"@fly/sprites": "0.0.1-rc37",
|
|
51
54
|
"@inquirer/prompts": "^7.10.1",
|
|
52
|
-
"@linear/sdk": "^
|
|
55
|
+
"@linear/sdk": "^80.1.0",
|
|
53
56
|
"@noble/curves": "^2.0.1",
|
|
54
57
|
"@noble/hashes": "^2.0.1",
|
|
58
|
+
"@oh-my-pi/pi-ai": "13.17.5",
|
|
59
|
+
"@oh-my-pi/pi-coding-agent": "13.17.5",
|
|
60
|
+
"@oh-my-pi/pi-tui": "13.17.5",
|
|
55
61
|
"@opentui-ui/toast": "^0.0.5",
|
|
56
62
|
"@opentui/core": "^0.1.77",
|
|
57
63
|
"@opentui/react": "^0.1.77",
|
|
58
64
|
"@scure/bip39": "^2.0.1",
|
|
59
65
|
"@types/ws": "^8.18.1",
|
|
60
|
-
"@xterm/addon-serialize": "^0.
|
|
61
|
-
"@xterm/headless": "^
|
|
66
|
+
"@xterm/addon-serialize": "^0.14.0",
|
|
67
|
+
"@xterm/headless": "^6.0.0",
|
|
62
68
|
"ansi-escapes": "^7.3.0",
|
|
63
69
|
"chalk": "^5.6.2",
|
|
64
70
|
"clipboardy": "^5.2.1",
|
|
65
71
|
"commander": "^12.1.0",
|
|
66
72
|
"conf": "^12.0.0",
|
|
73
|
+
"diff": "^8.0.4",
|
|
67
74
|
"ghostty-opentui": "^1.3.13",
|
|
75
|
+
"hono": "^4.6.0",
|
|
68
76
|
"open": "^11.0.0",
|
|
69
77
|
"ora": "^8.2.0",
|
|
70
78
|
"react": "^19.2.4",
|
|
@@ -78,12 +86,18 @@
|
|
|
78
86
|
"@types/node": "^20.19.32",
|
|
79
87
|
"@types/react": "^19.2.13",
|
|
80
88
|
"@types/react-dom": "^19.2.3",
|
|
89
|
+
"@typescript/native-preview": "^7.0.0-dev.20260302.1",
|
|
90
|
+
"dependency-cruiser": "^17.3.9",
|
|
81
91
|
"eslint": "^8.57.1",
|
|
82
92
|
"happy-dom": "^20.5.0",
|
|
83
|
-
"
|
|
93
|
+
"miniflare": "^3.20250718.3"
|
|
84
94
|
},
|
|
85
95
|
"engines": {
|
|
86
96
|
"bun": ">=1.3.8"
|
|
87
97
|
},
|
|
88
|
-
"
|
|
98
|
+
"patchedDependencies": {
|
|
99
|
+
"@oh-my-pi/pi-coding-agent@13.17.5": "patches/@oh-my-pi%2Fpi-coding-agent@13.17.5.patch",
|
|
100
|
+
"@oh-my-pi/pi-utils@13.17.5": "patches/@oh-my-pi%2Fpi-utils@13.17.5.patch",
|
|
101
|
+
"markit-ai@0.5.0": "patches/markit-ai@0.5.0.patch"
|
|
102
|
+
}
|
|
89
103
|
}
|