corbat-coco 0.1.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 ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "corbat-coco",
3
+ "version": "0.1.0",
4
+ "description": "Autonomous Coding Agent with Self-Review, Quality Convergence, and Production-Ready Output",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "coco": "./dist/cli/index.js"
9
+ },
10
+ "exports": {
11
+ ".": "./dist/index.js",
12
+ "./cli": "./dist/cli/index.js"
13
+ },
14
+ "files": [
15
+ "dist/**",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
19
+ "scripts": {
20
+ "dev": "tsx src/cli/index.ts",
21
+ "build": "tsup",
22
+ "build:watch": "tsup --watch",
23
+ "typecheck": "tsc --noEmit",
24
+ "lint": "oxlint src test",
25
+ "lint:fix": "oxlint src test --fix",
26
+ "format": "oxfmt --check src test",
27
+ "format:fix": "oxfmt --write src test",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest",
30
+ "test:coverage": "vitest run --coverage",
31
+ "test:e2e": "vitest run --config vitest.e2e.config.ts",
32
+ "docs": "typedoc",
33
+ "docs:watch": "typedoc --watch",
34
+ "prepublishOnly": "pnpm build",
35
+ "check": "pnpm typecheck && pnpm lint && pnpm test"
36
+ },
37
+ "keywords": [
38
+ "ai",
39
+ "agent",
40
+ "coding",
41
+ "autonomous",
42
+ "development",
43
+ "code-generation",
44
+ "quality",
45
+ "testing",
46
+ "cli"
47
+ ],
48
+ "author": "Corbat",
49
+ "license": "MIT",
50
+ "engines": {
51
+ "node": ">=22.0.0"
52
+ },
53
+ "packageManager": "pnpm@10.0.0",
54
+ "dependencies": {
55
+ "@anthropic-ai/sdk": "^0.39.0",
56
+ "@clack/prompts": "^0.11.0",
57
+ "chalk": "^5.4.0",
58
+ "commander": "^13.0.0",
59
+ "execa": "^9.5.0",
60
+ "glob": "^11.0.0",
61
+ "json5": "^2.2.3",
62
+ "simple-git": "^3.27.0",
63
+ "tslog": "^4.9.3",
64
+ "zod": "^3.24.0"
65
+ },
66
+ "devDependencies": {
67
+ "@types/node": "^22.10.0",
68
+ "@vitest/coverage-v8": "^3.0.0",
69
+ "oxfmt": "^0.26.0",
70
+ "oxlint": "^0.16.0",
71
+ "tsup": "^8.3.0",
72
+ "tsx": "^4.19.0",
73
+ "typedoc": "^0.28.16",
74
+ "typescript": "^5.7.0",
75
+ "vitest": "^3.0.0"
76
+ }
77
+ }