codeharbor 0.1.16 → 0.1.17
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/README.md +6 -0
- package/dist/cli.js +2523 -2302
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeharbor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "Instant-messaging bridge for Codex CLI sessions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/cli.js",
|
|
@@ -54,9 +54,8 @@
|
|
|
54
54
|
"test:e2e:ui": "playwright test --ui",
|
|
55
55
|
"e2e:install": "playwright install chromium",
|
|
56
56
|
"test:watch": "vitest test",
|
|
57
|
-
"test:legacy": "
|
|
57
|
+
"test:legacy": "bash ./scripts/run-legacy-tests.sh",
|
|
58
58
|
"prepare": "npm run build",
|
|
59
|
-
"prepack": "npm run build",
|
|
60
59
|
"prepublishOnly": "npm run changelog:check && npm run typecheck && npm run lint && npm run test:coverage && npm run build",
|
|
61
60
|
"changelog:check": "bash ./scripts/check-changelog.sh",
|
|
62
61
|
"lint": "eslint .",
|
|
@@ -70,17 +69,20 @@
|
|
|
70
69
|
"matrix-js-sdk": "^39.2.0",
|
|
71
70
|
"zod": "^4.1.12"
|
|
72
71
|
},
|
|
72
|
+
"overrides": {
|
|
73
|
+
"flatted": "^3.4.1"
|
|
74
|
+
},
|
|
73
75
|
"devDependencies": {
|
|
74
76
|
"@eslint/js": "^10.0.1",
|
|
75
77
|
"@playwright/test": "^1.58.2",
|
|
76
|
-
"@types/node": "^24.
|
|
78
|
+
"@types/node": "^24.12.0",
|
|
77
79
|
"@vitest/coverage-v8": "^3.2.4",
|
|
78
|
-
"eslint": "^10.0.
|
|
80
|
+
"eslint": "^10.0.3",
|
|
79
81
|
"globals": "^17.4.0",
|
|
80
82
|
"tsup": "^8.5.0",
|
|
81
83
|
"tsx": "^4.20.5",
|
|
82
84
|
"typescript": "^5.9.2",
|
|
83
|
-
"typescript-eslint": "^8.
|
|
85
|
+
"typescript-eslint": "^8.57.0",
|
|
84
86
|
"vitest": "^3.2.4"
|
|
85
87
|
}
|
|
86
88
|
}
|