@hcrosse/opencode-pr-tracker 0.2.0 → 0.4.0

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,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@hcrosse/opencode-pr-tracker",
4
- "version": "0.2.0",
4
+ "version": "0.4.0",
5
5
  "description": "Track GitHub pull requests in the OpenCode sidebar.",
6
6
  "homepage": "https://github.com/hcrosse/opencode-pr-tracker#readme",
7
7
  "bugs": {
@@ -14,13 +14,15 @@
14
14
  },
15
15
  "files": [
16
16
  "dist",
17
+ "server.js",
18
+ "tui.js",
17
19
  "README.md",
18
20
  "LICENSE"
19
21
  ],
20
22
  "type": "module",
21
23
  "main": "./dist/server.js",
22
24
  "exports": {
23
- "./server": {
25
+ ".": {
24
26
  "import": "./dist/server.js"
25
27
  },
26
28
  "./tui": {
@@ -31,43 +33,50 @@
31
33
  "access": "public"
32
34
  },
33
35
  "scripts": {
34
- "test": "bun test",
35
- "lint": "oxlint .",
36
+ "audit": "bun audit",
37
+ "build": "bun ./scripts/build.ts",
38
+ "check": "bun run lint && bun run format:check && bun run typecheck && bun test && bun run package:check",
36
39
  "format": "oxfmt .",
37
40
  "format:check": "oxfmt --check .",
38
- "build": "bun ./scripts/build.ts",
39
- "smoke:opencode": "bun ./scripts/smoke-opencode.ts",
40
- "prepack": "bun run build",
41
+ "lint": "oxlint .",
41
42
  "package:check": "bun run build && npm pack --dry-run --ignore-scripts",
42
- "check": "bun run lint && bun run format:check && bun test && bun run package:check && git diff --check"
43
+ "prepack": "bun run build",
44
+ "smoke:opencode": "bun run build && bun ./scripts/smoke-opencode.ts",
45
+ "test": "bun test",
46
+ "typecheck": "tsc --noEmit"
43
47
  },
44
48
  "dependencies": {
45
- "@opencode-ai/plugin": "1.18.15",
46
- "proper-lockfile": "4.1.2"
49
+ "@opencode/plugin": "2.0.15",
50
+ "@opencode/schema": "2.0.15",
51
+ "effect": "4.0.0-rc.112"
47
52
  },
48
53
  "devDependencies": {
49
- "@opentui/core": "0.4.5",
50
- "@opentui/keymap": "0.4.5",
51
- "@opentui/solid": "0.4.5",
52
- "@types/bun": "1.3.14",
53
- "@types/node": "24.12.2",
54
- "@types/proper-lockfile": "4.1.4",
55
- "oxfmt": "0.62.0",
56
- "oxlint": "1.77.0",
54
+ "@effect/platform-node": "4.0.0-rc.112",
55
+ "@hegeldev/hegel": "0.4.3",
56
+ "@opencode/cli": "2.0.15",
57
+ "@opencode/client": "2.0.15",
58
+ "@opencode/theme": "2.0.15",
59
+ "@opentui/core": "0.5.11",
60
+ "@opentui/solid": "0.5.11",
61
+ "@oxlint/plugins": "1.80.0",
62
+ "@types/bun": "1.4.0",
63
+ "oxfmt": "0.65.0",
64
+ "oxlint": "1.80.0",
57
65
  "oxlint-tsgolint": "7.0.2001",
58
66
  "solid-js": "1.9.12",
59
- "web-tree-sitter": "0.25.10"
67
+ "typescript": "7.0.2"
60
68
  },
61
69
  "peerDependencies": {
62
- "@opentui/core": "0.4.5",
63
- "@opentui/keymap": "0.4.5",
64
- "@opentui/solid": "0.4.5",
65
- "solid-js": "1.9.12"
70
+ "@opentui/core": ">=0.5.10",
71
+ "@opentui/solid": ">=0.5.10",
72
+ "solid-js": ">=1.9.0"
73
+ },
74
+ "overrides": {
75
+ "@effect/platform-node-shared": "4.0.0-rc.112"
66
76
  },
67
77
  "engines": {
68
- "node": ">=22.12.0",
69
- "opencode": ">=1.18.15 <2"
78
+ "opencode": ">=2.0.15 <3"
70
79
  },
71
- "packageManager": "bun@1.3.14",
80
+ "packageManager": "bun@1.4.2",
72
81
  "trustedDependencies": []
73
82
  }
package/server.js ADDED
@@ -0,0 +1 @@
1
+ export { default } from "./dist/server.js"
package/tui.js ADDED
@@ -0,0 +1 @@
1
+ export { default } from "./dist/tui.js"