codeharbor 0.1.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/LICENSE +21 -0
- package/README.md +228 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +2342 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codeharbor",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Instant-messaging bridge for Codex CLI sessions",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "dist/cli.js",
|
|
7
|
+
"types": "dist/cli.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/cli.d.ts",
|
|
11
|
+
"default": "./dist/cli.js"
|
|
12
|
+
},
|
|
13
|
+
"./package.json": "./package.json"
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"codeharbor": "dist/cli.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/biglone/CodeHarbor.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/biglone/CodeHarbor#readme",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/biglone/CodeHarbor/issues"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"codex",
|
|
33
|
+
"cli",
|
|
34
|
+
"matrix",
|
|
35
|
+
"bot",
|
|
36
|
+
"im"
|
|
37
|
+
],
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsup src/cli.ts --format cjs --dts --clean",
|
|
46
|
+
"dev": "tsx src/cli.ts start",
|
|
47
|
+
"start": "node dist/cli.js start",
|
|
48
|
+
"doctor": "node dist/cli.js doctor",
|
|
49
|
+
"replay:cli-compat": "tsx scripts/replay-cli-compat.ts",
|
|
50
|
+
"typecheck": "tsc --noEmit",
|
|
51
|
+
"test": "vitest run",
|
|
52
|
+
"test:watch": "vitest",
|
|
53
|
+
"test:legacy": ".venv/bin/python -m pytest -q tests",
|
|
54
|
+
"prepare": "npm run build",
|
|
55
|
+
"prepack": "npm run build",
|
|
56
|
+
"prepublishOnly": "npm run typecheck && npm test && npm run build"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"async-mutex": "^0.5.0",
|
|
60
|
+
"commander": "^14.0.1",
|
|
61
|
+
"dotenv": "^17.2.3",
|
|
62
|
+
"matrix-js-sdk": "^39.2.0",
|
|
63
|
+
"zod": "^4.1.12"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@types/node": "^24.4.0",
|
|
67
|
+
"tsup": "^8.5.0",
|
|
68
|
+
"tsx": "^4.20.5",
|
|
69
|
+
"typescript": "^5.9.2",
|
|
70
|
+
"vitest": "^3.2.4"
|
|
71
|
+
}
|
|
72
|
+
}
|