@delegoapp/runner 0.5.0 → 0.5.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 +14 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delegoapp/runner",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "private": false,
5
5
  "description": "Delego runner — polls the Delego relay and executes Linear-delegated coding jobs via Codex CLI or Claude Code.",
6
6
  "keywords": [
@@ -30,24 +30,23 @@
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
- "scripts": {
34
- "build": "tsc -p tsconfig.json && node scripts/add-shebang.mjs",
35
- "prestart": "pnpm build",
36
- "start": "node dist/index.js",
37
- "typecheck": "tsc --noEmit -p tsconfig.json",
38
- "test": "vitest run",
39
- "clean": "rm -rf .turbo dist node_modules",
40
- "prepublishOnly": "pnpm build"
41
- },
42
33
  "dependencies": {
43
- "@supabase/supabase-js": "catalog:"
34
+ "@supabase/supabase-js": "^2.105.4"
44
35
  },
45
36
  "devDependencies": {
46
- "@kit/tsconfig": "workspace:*",
47
- "typescript": "catalog:",
48
- "vitest": "catalog:"
37
+ "typescript": "^6.0.3",
38
+ "vitest": "^4.1.5",
39
+ "@kit/tsconfig": "0.1.0"
49
40
  },
50
41
  "engines": {
51
42
  "node": ">=20"
43
+ },
44
+ "scripts": {
45
+ "build": "tsc -p tsconfig.json && node scripts/add-shebang.mjs",
46
+ "prestart": "pnpm build",
47
+ "start": "node dist/index.js",
48
+ "typecheck": "tsc --noEmit -p tsconfig.json",
49
+ "test": "vitest run",
50
+ "clean": "rm -rf .turbo dist node_modules"
52
51
  }
53
- }
52
+ }