-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.43 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "codeharbor",
"version": "0.1.105",
"description": "Self-hosted Matrix AI assistant bridge for Codex, Claude Code, and Gemini CLI sessions",
"author": "biglone <jjoyceu@gmail.com> (https://github.com/biglone)",
"license": "MIT",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"exports": {
".": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
},
"./package.json": "./package.json"
},
"bin": {
"codeharbor": "dist/cli.js",
"codeharbor-whisper-transcribe": "scripts/local-whisper-transcribe.py"
},
"files": [
"dist",
"scripts/postinstall-restart.cjs",
"scripts/local-whisper-transcribe.py",
".env.example",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/biglone/CodeHarbor.git"
},
"homepage": "https://github.com/biglone/CodeHarbor#readme",
"bugs": {
"url": "https://github.com/biglone/CodeHarbor/issues"
},
"keywords": [
"codex",
"codex-cli",
"claude",
"claude-code",
"gemini",
"gemini-cli",
"google-gemini",
"openai",
"cli",
"matrix",
"matrix-bot",
"matrix-bridge",
"bot",
"bridge",
"self-hosted",
"ai-assistant",
"agent-workflow",
"voice-transcription",
"chat",
"messaging",
"assistant"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsup src/cli.ts --format cjs --dts --clean",
"dev": "tsx src/cli.ts start",
"start": "node dist/cli.js start",
"doctor": "node dist/cli.js doctor",
"replay:cli-compat": "tsx scripts/replay-cli-compat.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"e2e:install": "playwright install chromium",
"test:watch": "vitest test",
"test:legacy": "bash ./scripts/run-legacy-tests.sh",
"postinstall": "node ./scripts/postinstall-restart.cjs",
"prepare": "npm run build",
"prepublishOnly": "npm run changelog:check && npm run typecheck && npm run lint && npm run test:coverage && npm run build",
"changelog:check": "bash ./scripts/check-changelog.sh",
"docs:check-release-index": "node ./scripts/check-release-notes-index.mjs",
"docs:check-consistency": "node ./scripts/check-doc-consistency.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:coverage": "vitest run test --coverage && npm run -s test:coverage:core",
"test:coverage:core": "node ./scripts/check-core-coverage-thresholds.mjs",
"release:verify": "npm run changelog:check && npm run docs:check-release-index && npm run docs:check-consistency && npm run typecheck && npm run lint && npm test && npm run test:coverage && npm run test:e2e && npm run build && node dist/cli.js --help > /dev/null && npm pack --dry-run"
},
"dependencies": {
"async-mutex": "^0.5.0",
"commander": "^14.0.1",
"dotenv": "^17.2.3",
"mammoth": "^1.12.0",
"matrix-js-sdk": "^39.2.0",
"pdf-parse": "^2.4.5",
"zod": "^4.1.12"
},
"overrides": {
"flatted": "^3.4.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@types/node": "^24.12.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.57.0",
"vitest": "^3.2.4"
}
}