-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.89 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "cc-codeconductor",
"version": "1.1.0",
"description": "A multi-agent orchestration framework for AI-assisted software engineering workflows.",
"keywords": [
"ai",
"agents",
"orchestration",
"workflow",
"opencode",
"claude",
"codex",
"gemini",
"cursor"
],
"license": "MIT",
"files": [
"dist/index.js",
"dist/library.js",
"dist/**/*.d.ts",
"policy.yml",
"presets/",
"src/presets/"
],
"repository": {
"type": "git",
"url": "https://github.com/lgzarturo/codeconductor"
},
"engines": {
"node": ">=20.11"
},
"type": "module",
"main": "./dist/library.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/library.js"
}
},
"bin": {
"cc-codeconductor": "./dist/index.js",
"codeconductor": "./dist/index.js"
},
"scripts": {
"dev": "bun run src/cli/main.ts",
"build": "bun run scripts/build.ts",
"build:cli": "bun build src/cli/main.ts --target=node --outfile=dist/index.js",
"build:lib": "bun build src/index.ts --target=node --outfile=dist/library.js --packages=external",
"build:types": "tsc -p tsconfig.lib.json --emitDeclarationOnly",
"test": "bun test",
"test:fast": "bun run scripts/test-fast.ts",
"typecheck": "tsc --noEmit",
"lint": "bun run scripts/lint.ts",
"check:coverage": "bun run scripts/check-coverage.ts",
"check:prompt-changelog": "bun run scripts/check-prompt-changelog.ts",
"release:patch": "bash release.sh patch",
"release:minor": "bash release.sh minor",
"release:major": "bash release.sh major",
"release:notes": "git-cliff --config .cliff.toml --output CHANGELOG.md",
"release": "bash release.sh"
},
"dependencies": {
"zod": "^3.23.8",
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/bun": "^1.1.8",
"typescript": "^5.5.3"
}
}