forked from openai/codex-plugin-cc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "peer",
"version": "2.2.0",
"private": true,
"type": "module",
"description": "Codex from Claude Code with anti-hang watchdogs, telemetry, notifications, and health tooling — an enhanced fork of openai/codex-plugin-cc.",
"license": "Apache-2.0",
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"bump-version": "node scripts/bump-version.mjs",
"check-version": "node scripts/bump-version.mjs --check",
"prebuild": "mkdir -p plugins/codex/.generated/app-server-types && codex app-server generate-ts --out plugins/codex/.generated/app-server-types",
"build": "tsc -p tsconfig.app-server.json",
"test": "node --test tests/*.test.mjs"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^6.0.2"
}
}