-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.39 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.39 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
{
"name": "codex-channels-monorepo",
"private": true,
"version": "0.1.30",
"description": "Local-first channel runtime for Codex-first interactive MCP flows.",
"workspaces": [
"packages/*"
],
"packageManager": "npm@10.9.3",
"scripts": {
"build": "node ./scripts/build-workspaces.mjs",
"check": "tsc -p tsconfig.check.json --pretty false",
"clean": "find packages -name dist -type d -prune -exec rm -rf {} + && find packages -name '*.tsbuildinfo' -type f -delete",
"test": "node ./scripts/run-node-tests.mjs",
"pack:preview": "node ./scripts/pack-workspaces.mjs",
"publish:dry-run": "node ./scripts/publish-dry-run-workspaces.mjs",
"preflight:release": "node ./scripts/preflight-release.mjs",
"preflight:ci": "npm run check && npm run build && npm test",
"plugin:bootstrap": "node ./scripts/bootstrap-codex-plugin.mjs --scope workspace",
"plugin:bootstrap:user": "node ./scripts/bootstrap-codex-plugin.mjs --scope user"
},
"devDependencies": {
"@types/node": "^22.15.3",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cafitac/codex-channels.git"
},
"homepage": "https://github.com/cafitac/codex-channels#readme",
"bugs": {
"url": "https://github.com/cafitac/codex-channels/issues"
},
"author": "cafitac"
}