@corbat-tech/coco 1.6.0 → 1.8.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": "1.6.0",
3
+ "version": "1.8.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",
@@ -19,25 +19,6 @@
19
19
  "README.md",
20
20
  "LICENSE"
21
21
  ],
22
- "scripts": {
23
- "dev": "tsx src/cli/index.ts",
24
- "build": "tsup",
25
- "build:watch": "tsup --watch",
26
- "typecheck": "tsc --noEmit",
27
- "lint": "oxlint src test",
28
- "lint:fix": "oxlint src test --fix",
29
- "format": "oxfmt --check src test",
30
- "format:fix": "oxfmt --write src test",
31
- "test": "vitest run",
32
- "test:watch": "vitest",
33
- "test:coverage": "vitest run --coverage",
34
- "test:e2e": "vitest run --config vitest.e2e.config.ts",
35
- "benchmark": "tsx test/benchmarks/quality-benchmark.ts",
36
- "docs": "typedoc",
37
- "docs:watch": "typedoc --watch",
38
- "prepublishOnly": "pnpm build",
39
- "check": "pnpm typecheck && pnpm lint && pnpm test"
40
- },
41
22
  "keywords": [
42
23
  "ai",
43
24
  "agent",
@@ -69,14 +50,13 @@
69
50
  "engines": {
70
51
  "node": ">=22.0.0"
71
52
  },
72
- "packageManager": "pnpm@10.0.0",
73
53
  "dependencies": {
74
54
  "@anthropic-ai/sdk": "^0.74.0",
75
55
  "@clack/prompts": "^1.0.0",
76
56
  "@google/generative-ai": "^0.24.1",
77
57
  "@types/diff": "^8.0.0",
78
- "@typescript-eslint/parser": "^8.54.0",
79
- "@typescript-eslint/typescript-estree": "^8.54.0",
58
+ "@typescript-eslint/parser": "^8.55.0",
59
+ "@typescript-eslint/typescript-estree": "^8.55.0",
80
60
  "ansi-escapes": "^7.3.0",
81
61
  "chalk": "^5.4.0",
82
62
  "commander": "^14.0.3",
@@ -100,12 +80,30 @@
100
80
  "@types/marked-terminal": "^6.1.1",
101
81
  "@types/node": "^25.2.1",
102
82
  "@vitest/coverage-v8": "^3.0.0",
103
- "oxfmt": "^0.28.0",
83
+ "oxfmt": "^0.33.0",
104
84
  "oxlint": "^1.43.0",
105
85
  "tsup": "^8.3.0",
106
86
  "tsx": "^4.19.0",
107
87
  "typedoc": "^0.28.16",
108
88
  "typescript": "^5.7.0",
109
89
  "vitest": "^3.0.0"
90
+ },
91
+ "scripts": {
92
+ "dev": "tsx src/cli/index.ts",
93
+ "build": "tsup",
94
+ "build:watch": "tsup --watch",
95
+ "typecheck": "tsc --noEmit",
96
+ "lint": "oxlint src test",
97
+ "lint:fix": "oxlint src test --fix",
98
+ "format": "oxfmt --check src test",
99
+ "format:fix": "oxfmt --write src test",
100
+ "test": "vitest run",
101
+ "test:watch": "vitest",
102
+ "test:coverage": "vitest run --coverage",
103
+ "test:e2e": "vitest run --config vitest.e2e.config.ts",
104
+ "benchmark": "tsx test/benchmarks/quality-benchmark.ts",
105
+ "docs": "typedoc",
106
+ "docs:watch": "typedoc --watch",
107
+ "check": "pnpm typecheck && pnpm lint && pnpm test"
110
108
  }
111
- }
109
+ }