copilotoffice 2.0.0 → 2.2.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/README.md +108 -75
- package/dist/electron/main.js +2307 -138
- package/dist/electron/terminal/ipc-relay.js +210 -7
- package/dist/electron/terminal/preload.js +83 -13
- package/dist/electron/terminal/server.js +5961 -940
- package/dist/game.bundle.js +12559 -8482
- package/package.json +13 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "copilotoffice",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "A 2D pixel-art game where you interact with AI agents
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "A 2D pixel-art desktop game where you walk around a virtual office and interact with AI agents that run real GitHub Copilot CLI sessions — plan, debug, orchestrate fleets, and drive agents from Microsoft Teams.",
|
|
5
5
|
"main": "dist/electron/main.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"copilotoffice": "bin/copilotoffice.js"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build:game": "esbuild src/main.ts --bundle --outfile=dist/game.bundle.js --platform=browser --format=iife --global-name=CopilotOffice",
|
|
16
|
-
"build:electron": "esbuild electron/main.ts electron/terminal/preload.ts electron/cli-bridge.ts electron/terminal/events-watcher.ts electron/terminal/server.ts electron/terminal/protocol.ts electron/terminal/ipc-relay.ts --bundle --outdir=dist/electron --platform=node --format=cjs --external:electron --external:node-pty",
|
|
16
|
+
"build:electron": "esbuild electron/main.ts electron/terminal/preload.ts electron/cli-bridge.ts electron/terminal/events-watcher.ts electron/terminal/server.ts electron/terminal/protocol.ts electron/terminal/ipc-relay.ts --bundle --outdir=dist/electron --platform=node --format=cjs --external:electron --external:node-pty --external:ws",
|
|
17
17
|
"build": "npm run build:game && npm run build:electron",
|
|
18
18
|
"prepack": "npm run build",
|
|
19
19
|
"start": "npm run build && electron .",
|
|
@@ -26,27 +26,33 @@
|
|
|
26
26
|
},
|
|
27
27
|
"keywords": [
|
|
28
28
|
"copilot",
|
|
29
|
+
"copilot-cli",
|
|
30
|
+
"ai-agents",
|
|
29
31
|
"game",
|
|
30
32
|
"pixel-art",
|
|
31
|
-
"
|
|
33
|
+
"phaser",
|
|
34
|
+
"electron",
|
|
35
|
+
"typescript"
|
|
32
36
|
],
|
|
33
37
|
"author": "",
|
|
34
38
|
"license": "ISC",
|
|
35
39
|
"type": "commonjs",
|
|
36
40
|
"dependencies": {
|
|
37
|
-
"@github/copilot-sdk": "
|
|
41
|
+
"@github/copilot-sdk": "1.0.5",
|
|
38
42
|
"@xterm/addon-fit": "^0.11.0",
|
|
39
43
|
"@xterm/xterm": "^6.0.0",
|
|
40
44
|
"ansi-to-html": "^0.7.2",
|
|
41
45
|
"electron": "^40.6.1",
|
|
42
46
|
"node-pty": "^1.1.0",
|
|
43
|
-
"phaser": "^3.90.0"
|
|
47
|
+
"phaser": "^3.90.0",
|
|
48
|
+
"ws": "^8.21.0"
|
|
44
49
|
},
|
|
45
50
|
"devDependencies": {
|
|
46
51
|
"@playwright/test": "^1.56.1",
|
|
47
52
|
"@testing-library/dom": "^10.4.1",
|
|
48
|
-
"@vitest/coverage-v8": "^4.0.0",
|
|
49
53
|
"@types/node": "^25.3.3",
|
|
54
|
+
"@types/ws": "^8.18.1",
|
|
55
|
+
"@vitest/coverage-v8": "^4.0.0",
|
|
50
56
|
"concurrently": "^9.2.1",
|
|
51
57
|
"esbuild": "^0.27.3",
|
|
52
58
|
"jsdom": "^27.0.1",
|