-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 806 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 806 Bytes
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
{
"name": "coderelay",
"private": true,
"version": "0.1.0",
"description": "Open-source bridge for controlling Codex from IM and mobile clients.",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"dev": "tsx --tsconfig tsconfig.dev.json apps/im-bridge-server/src/index.ts",
"typecheck": "tsc -b --pretty false",
"test": "tsx --test packages/bridge-core/src/bridge-core.test.ts packages/codex-adapter/src/codex-adapter.test.ts packages/channel-telegram/src/channel-telegram.test.ts packages/channel-discord/src/channel-discord.test.ts"
},
"devDependencies": {
"@types/node": "^22.15.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}