@bulletproof-sh/ctrl-daemon 0.19.0 → 0.19.1-alpha.1
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 +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bulletproof-sh/ctrl-daemon",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.1-alpha.1",
|
|
4
4
|
"description": "WebSocket daemon for ctrl — watches Claude Code sessions and broadcasts agent state",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BUSL-1.1",
|
|
@@ -13,17 +13,17 @@
|
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
15
|
"postinstall": "node bin/install.js",
|
|
16
|
-
"dev": "bun --watch
|
|
16
|
+
"dev": "bun --watch scripts/dev.ts -- --share --host 0.0.0.0",
|
|
17
17
|
"start": "bun src/index.ts",
|
|
18
18
|
"build": "bun build src/index.ts --outdir dist --target bun --minify",
|
|
19
19
|
"build:binaries": "bun scripts/build-binaries.ts",
|
|
20
20
|
"check": "biome check .",
|
|
21
21
|
"fix": "biome check --write .",
|
|
22
|
-
"verify": "bunx tsc --noEmit && biome check . && vitest run --coverage && bun test
|
|
22
|
+
"verify": "bunx tsc --noEmit && biome check . && vitest run --coverage && bun test tests/relay.e2e.test.ts && bun run test:integration",
|
|
23
23
|
"test": "vitest run",
|
|
24
24
|
"test:watch": "vitest",
|
|
25
25
|
"test:coverage": "vitest run --coverage",
|
|
26
|
-
"test:integration": "INTEGRATION=1 bun test
|
|
26
|
+
"test:integration": "INTEGRATION=1 bun test tests/"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/bun": "latest",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"vitest": "^4.0.18"
|
|
34
34
|
},
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@bulletproof-sh/ctrl-daemon-darwin-arm64": "0.19.
|
|
37
|
-
"@bulletproof-sh/ctrl-daemon-darwin-x64": "0.19.
|
|
38
|
-
"@bulletproof-sh/ctrl-daemon-linux-arm64": "0.19.
|
|
39
|
-
"@bulletproof-sh/ctrl-daemon-linux-x64": "0.19.
|
|
40
|
-
"@bulletproof-sh/ctrl-daemon-windows-x64": "0.19.
|
|
36
|
+
"@bulletproof-sh/ctrl-daemon-darwin-arm64": "0.19.1-alpha.1",
|
|
37
|
+
"@bulletproof-sh/ctrl-daemon-darwin-x64": "0.19.1-alpha.1",
|
|
38
|
+
"@bulletproof-sh/ctrl-daemon-linux-arm64": "0.19.1-alpha.1",
|
|
39
|
+
"@bulletproof-sh/ctrl-daemon-linux-x64": "0.19.1-alpha.1",
|
|
40
|
+
"@bulletproof-sh/ctrl-daemon-windows-x64": "0.19.1-alpha.1"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@noble/ciphers": "^2.1.1",
|