@slock-ai/computer 0.0.1-play.20260522165849 → 0.0.2

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.
Files changed (1) hide show
  1. package/package.json +13 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slock-ai/computer",
3
- "version": "0.0.1-play.20260522165849",
3
+ "version": "0.0.2",
4
4
  "description": "Slock Computer — standalone human/local-machine control-plane CLI (login + attach). Distinct from the agent-facing @slock-ai/cli.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,20 +17,11 @@
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "scripts": {
21
- "computer": "tsx src/index.ts",
22
- "start": "tsx src/index.ts",
23
- "build:deps": "pnpm --filter @slock-ai/daemon build",
24
- "build": "pnpm run build:deps && tsup",
25
- "test": "node --import tsx --test --test-force-exit 'src/**/*.test.ts'",
26
- "typecheck": "tsc --noEmit",
27
- "lint:boundaries": "node scripts/check-boundaries.mjs"
28
- },
29
20
  "dependencies": {
30
- "@slock-ai/daemon": "workspace:*",
31
21
  "commander": "^12.1.0",
32
22
  "proper-lockfile": "^4.1.2",
33
- "undici": "^7.24.7"
23
+ "undici": "^7.24.7",
24
+ "@slock-ai/daemon": "0.52.2"
34
25
  },
35
26
  "devDependencies": {
36
27
  "@types/node": "^25.5.0",
@@ -39,5 +30,13 @@
39
30
  "tsx": "^4.21.0",
40
31
  "typescript": "^5.9.3"
41
32
  },
42
- "private": false
43
- }
33
+ "scripts": {
34
+ "computer": "tsx src/index.ts",
35
+ "start": "tsx src/index.ts",
36
+ "build:deps": "pnpm --filter @slock-ai/daemon build",
37
+ "build": "pnpm run build:deps && tsup",
38
+ "test": "node --import tsx --test --test-force-exit 'src/**/*.test.ts'",
39
+ "typecheck": "tsc --noEmit",
40
+ "lint:boundaries": "node scripts/check-boundaries.mjs"
41
+ }
42
+ }