-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.79 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.79 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "gitspace",
"version": "0.2.0-rc.38",
"description": "CLI for managing GitHub workspaces with git worktrees and secure remote terminal access",
"bin": {
"gssh": "./bin/gssh"
},
"files": [
"bin",
"README.md",
"LICENSE"
],
"type": "module",
"scripts": {
"dev": "bun src/index.ts",
"dev:web": "bun scripts/dev.ts",
"check:lockfile-sync": "bun scripts/check-lockfile-sync.ts",
"gen:version": "bun scripts/gen-version.ts",
"typecheck": "bun scripts/gen-version.ts && tsgo --noEmit -p tsconfig.json && cd web && bunx tsc -b && bunx tsc -p tsconfig.webtests.json --noEmit",
"test": "bun scripts/gen-version.ts && bun scripts/gen-cloud-bootstrap.ts && bun scripts/test-isolated.ts src",
"test:fast": "bun test",
"lint": "eslint src/",
"build:web": "bun scripts/gen-version.ts && cd web && bun install && bun run build",
"build": "bun scripts/build.ts",
"build:all": "bun scripts/build.ts --all",
"build:npm": "bun scripts/build.ts --npm",
"relay": "bun src/relay/index.ts",
"e2e:on-demand": "bash scripts/e2e/run-on-demand.sh",
"test:playwright:goal-validation": "playwright test -c playwright.goal-validation.config.ts",
"check:arch": "node node_modules/.bin/depcruise src --config .dependency-cruiser.cjs --output-type err",
"check:arch:json": "node node_modules/.bin/depcruise src --config .dependency-cruiser.cjs --output-type json",
"typecheck:coverage": "bun scripts/check-typecheck-coverage.ts"
},
"optionalDependencies": {
"@gitspace/darwin-arm64": "0.2.0-rc.38",
"@gitspace/darwin-x64": "0.2.0-rc.38",
"@gitspace/linux-x64": "0.2.0-rc.38",
"@gitspace/linux-arm64": "0.2.0-rc.38"
},
"keywords": [
"cli",
"git",
"worktree",
"workspace",
"terminal",
"remote",
"ssh",
"tui"
],
"homepage": "https://gitspace.sh",
"repository": {
"type": "git",
"url": "https://github.com/inKibra/gitspace.sh.git"
},
"author": "inKibra, Inc.",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@fly/sprites": "0.0.1-rc37",
"@inquirer/prompts": "^7.10.1",
"@linear/sdk": "^80.1.0",
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0",
"@oh-my-pi/pi-agent-core": "17.2.4",
"@oh-my-pi/pi-ai": "17.2.4",
"@oh-my-pi/pi-coding-agent": "17.2.4",
"@oh-my-pi/pi-natives": "17.2.4",
"@oh-my-pi/pi-tui": "17.2.4",
"@oh-my-pi/pi-utils": "17.2.4",
"@pierre/diffs": "1.2.12",
"@pierre/trees": "1.0.0-beta.6",
"@scure/bip39": "^2.2.0",
"@types/ws": "^8.18.1",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/headless": "^6.0.0",
"ansi-escapes": "^7.3.0",
"chalk": "^5.6.2",
"clipboardy": "^5.3.2",
"commander": "^12.1.0",
"conf": "^12.0.0",
"diff": "^8.0.4",
"dockview": "^6.6.1",
"dockview-react": "^6.6.1",
"hono": "^4.12.34",
"open": "^11.0.0",
"ora": "^8.2.0",
"posthog-js": "^1.409.5",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"simple-git": "^3.36.0",
"ws": "^8.21.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.14",
"@types/node": "^20.19.43",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
"dependency-cruiser": "^17.4.3",
"eslint": "^8.57.1",
"ffmpeg-static": "^5.3.0",
"ghostty-web": "^0.4.0",
"happy-dom": "^20.11.1",
"miniflare": "^3.20250718.3"
},
"engines": {
"bun": ">=1.3.14"
},
"patchedDependencies": {
"markit-ai@0.5.3": "patches/markit-ai@0.5.3.patch",
"@oh-my-pi/pi-agent-core@17.2.4": "patches/@oh-my-pi%2Fpi-agent-core@17.2.4.patch",
"@oh-my-pi/pi-coding-agent@17.2.4": "patches/@oh-my-pi%2Fpi-coding-agent@17.2.4.patch"
}
}