@corbat-tech/coco 2.37.0 → 2.39.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corbat-tech/coco",
3
- "version": "2.37.0",
3
+ "version": "2.39.0",
4
4
  "description": "Autonomous Coding Agent with Self-Review, Quality Convergence, and Production-Ready Output",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -9,7 +9,11 @@
9
9
  },
10
10
  "exports": {
11
11
  ".": "./dist/index.js",
12
- "./cli": "./dist/cli/index.js"
12
+ "./cli": "./dist/cli/index.js",
13
+ "./runtime": "./dist/runtime/index.js",
14
+ "./tools": "./dist/tools/index.js",
15
+ "./presets": "./dist/presets/index.js",
16
+ "./adapters": "./dist/adapters/index.js"
13
17
  },
14
18
  "publishConfig": {
15
19
  "access": "public"
@@ -95,6 +99,7 @@
95
99
  "build": "tsup",
96
100
  "build:watch": "tsup --watch",
97
101
  "typecheck": "tsc --noEmit",
102
+ "typecheck:apps": "pnpm build && pnpm -r --filter './apps/*' --if-present typecheck",
98
103
  "lint": "oxlint src test",
99
104
  "lint:fix": "oxlint src test --fix",
100
105
  "format": "oxfmt --check src test",
@@ -107,6 +112,7 @@
107
112
  "benchmark": "tsx test/benchmarks/quality-benchmark.ts",
108
113
  "docs": "typedoc",
109
114
  "docs:watch": "typedoc --watch",
110
- "check": "pnpm typecheck && pnpm lint && pnpm test"
115
+ "check": "pnpm typecheck && pnpm lint && pnpm test",
116
+ "check:workspace": "pnpm check && pnpm typecheck:apps"
111
117
  }
112
118
  }