chrome-relay 0.3.2 → 0.3.3

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 CHANGED
@@ -5,7 +5,7 @@ import { Command } from "commander";
5
5
  import { writeFileSync } from "fs";
6
6
 
7
7
  // src/index.ts
8
- var CHROME_RELAY_VERSION = true ? "0.3.2" : "0.0.0-dev";
8
+ var CHROME_RELAY_VERSION = true ? "0.3.3" : "0.0.0-dev";
9
9
 
10
10
  // src/install/install.ts
11
11
  import os from "os";
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // src/index.ts
2
- var CHROME_RELAY_VERSION = true ? "0.3.2" : "0.0.0-dev";
2
+ var CHROME_RELAY_VERSION = true ? "0.3.3" : "0.0.0-dev";
3
3
  export {
4
4
  CHROME_RELAY_VERSION
5
5
  };
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrome-relay",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,14 +10,14 @@
10
10
  "files": [
11
11
  "dist"
12
12
  ],
13
+ "scripts": {
14
+ "build": "tsup",
15
+ "lint": "tsc -p tsconfig.json --noEmit",
16
+ "typecheck": "tsc -p tsconfig.json --noEmit",
17
+ "test": "vitest run"
18
+ },
13
19
  "description": "Connect your local Chrome browser to coding agents through a local bridge.",
14
- "keywords": [
15
- "chrome",
16
- "browser",
17
- "automation",
18
- "agents",
19
- "native-messaging"
20
- ],
20
+ "keywords": ["chrome", "browser", "automation", "agents", "native-messaging"],
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
23
  "chalk": "^5.4.1",
@@ -25,14 +25,8 @@
25
25
  "fastify": "^5.3.2"
26
26
  },
27
27
  "devDependencies": {
28
+ "@chrome-relay/protocol": "workspace:*",
28
29
  "tsup": "^8.4.0",
29
- "vitest": "^3.0.0",
30
- "@chrome-relay/protocol": "0.3.2"
31
- },
32
- "scripts": {
33
- "build": "tsup",
34
- "lint": "tsc -p tsconfig.json --noEmit",
35
- "typecheck": "tsc -p tsconfig.json --noEmit",
36
- "test": "vitest run"
30
+ "vitest": "^3.0.0"
37
31
  }
38
- }
32
+ }