chrome-relay 0.5.22 → 0.7.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/dist/cli.js +945 -214
- package/dist/index.js +1 -1
- package/dist/native-host.js +1 -1
- package/package.json +11 -3
package/dist/index.js
CHANGED
package/dist/native-host.js
CHANGED
|
@@ -56,7 +56,7 @@ function toBridgeError(unknownErr, fallbackTool) {
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
// src/index.ts
|
|
59
|
-
var CHROME_RELAY_VERSION = true ? "0.
|
|
59
|
+
var CHROME_RELAY_VERSION = true ? "0.7.0" : "0.0.0-dev";
|
|
60
60
|
|
|
61
61
|
// src/release-notes.ts
|
|
62
62
|
function compareSemver(a, b) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chrome-relay",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,16 +16,24 @@
|
|
|
16
16
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
17
17
|
"test": "vitest run"
|
|
18
18
|
},
|
|
19
|
-
"description": "
|
|
20
|
-
"keywords": [
|
|
19
|
+
"description": "Your agent drives the Chrome you're signed into — read pages, click buttons, fill forms from any shell. No robot browser, no cookie export, no focus stealing.",
|
|
20
|
+
"keywords": [
|
|
21
|
+
"chrome",
|
|
22
|
+
"browser",
|
|
23
|
+
"automation",
|
|
24
|
+
"agents",
|
|
25
|
+
"native-messaging"
|
|
26
|
+
],
|
|
21
27
|
"license": "MIT",
|
|
22
28
|
"dependencies": {
|
|
23
29
|
"chalk": "^5.4.1",
|
|
24
30
|
"commander": "^13.1.0",
|
|
31
|
+
"diff": "^7.0.0",
|
|
25
32
|
"fastify": "^5.3.2"
|
|
26
33
|
},
|
|
27
34
|
"devDependencies": {
|
|
28
35
|
"@chrome-relay/protocol": "workspace:*",
|
|
36
|
+
"@types/diff": "^7",
|
|
29
37
|
"tsup": "^8.4.0",
|
|
30
38
|
"vitest": "^3.0.0"
|
|
31
39
|
}
|