@epic-cloudcontrol/daemon 0.2.1 → 0.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epic-cloudcontrol/daemon",
3
- "version": "0.2.1",
3
+ "version": "0.3.1",
4
4
  "description": "CloudControl local daemon — executes AI agent tasks on worker machines",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",
@@ -14,6 +14,8 @@
14
14
  "scripts": {
15
15
  "dev": "tsx src/cli.ts",
16
16
  "build": "tsc",
17
+ "test": "vitest run",
18
+ "test:watch": "vitest",
17
19
  "prepublishOnly": "npm run build",
18
20
  "start": "node dist/cli.js start"
19
21
  },
@@ -31,6 +33,15 @@
31
33
  "devDependencies": {
32
34
  "@types/node": "^22.0.0",
33
35
  "tsx": "^4.19.0",
34
- "typescript": "^5.7.0"
36
+ "typescript": "^5.7.0",
37
+ "vitest": "^4.1.2"
38
+ },
39
+ "peerDependencies": {
40
+ "playwright": ">=1.40.0"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "playwright": {
44
+ "optional": true
45
+ }
35
46
  }
36
47
  }