@corbat-tech/coco 1.0.2 → 1.2.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.0.2",
3
+ "version": "1.2.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",
@@ -47,16 +28,30 @@
47
28
  "code-generation",
48
29
  "quality",
49
30
  "testing",
50
- "cli"
31
+ "cli",
32
+ "llm",
33
+ "code-review",
34
+ "code-quality",
35
+ "self-review",
36
+ "multi-agent",
37
+ "convergence",
38
+ "typescript"
51
39
  ],
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/corbat/corbat-coco.git"
43
+ },
44
+ "homepage": "https://github.com/corbat/corbat-coco#readme",
45
+ "bugs": {
46
+ "url": "https://github.com/corbat/corbat-coco/issues"
47
+ },
52
48
  "author": "Corbat",
53
49
  "license": "MIT",
54
50
  "engines": {
55
51
  "node": ">=22.0.0"
56
52
  },
57
- "packageManager": "pnpm@10.0.0",
58
53
  "dependencies": {
59
- "@anthropic-ai/sdk": "^0.73.0",
54
+ "@anthropic-ai/sdk": "^0.74.0",
60
55
  "@clack/prompts": "^1.0.0",
61
56
  "@google/generative-ai": "^0.24.1",
62
57
  "@types/diff": "^8.0.0",
@@ -84,11 +79,29 @@
84
79
  "@types/node": "^25.2.1",
85
80
  "@vitest/coverage-v8": "^3.0.0",
86
81
  "oxfmt": "^0.28.0",
87
- "oxlint": "^0.16.0",
82
+ "oxlint": "^1.43.0",
88
83
  "tsup": "^8.3.0",
89
84
  "tsx": "^4.19.0",
90
85
  "typedoc": "^0.28.16",
91
86
  "typescript": "^5.7.0",
92
87
  "vitest": "^3.0.0"
88
+ },
89
+ "scripts": {
90
+ "dev": "tsx src/cli/index.ts",
91
+ "build": "tsup",
92
+ "build:watch": "tsup --watch",
93
+ "typecheck": "tsc --noEmit",
94
+ "lint": "oxlint src test",
95
+ "lint:fix": "oxlint src test --fix",
96
+ "format": "oxfmt --check src test",
97
+ "format:fix": "oxfmt --write src test",
98
+ "test": "vitest run",
99
+ "test:watch": "vitest",
100
+ "test:coverage": "vitest run --coverage",
101
+ "test:e2e": "vitest run --config vitest.e2e.config.ts",
102
+ "benchmark": "tsx test/benchmarks/quality-benchmark.ts",
103
+ "docs": "typedoc",
104
+ "docs:watch": "typedoc --watch",
105
+ "check": "pnpm typecheck && pnpm lint && pnpm test"
93
106
  }
94
- }
107
+ }