-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.49 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.49 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "clashcode",
"version": "1.3.1",
"description": "Model-agnostic multi-agent coding assistant. Where AI agents clash to build better code.",
"type": "module",
"bin": {
"clashcode": "./dist/cli/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:eval": "vitest run --config vitest.eval.config.ts",
"lint": "tsc --noEmit && tsc -p tsconfig.test.json --noEmit && tsc -p examples/tsconfig.json --noEmit && eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf dist coverage",
"prepare": "husky",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
]
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"multi-agent",
"coding-assistant",
"clash-engine",
"consensus",
"debate",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/entropyvortex/clashcode.git"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.4",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.8.1",
"tsup": "^8.4.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"dependencies": {
"marked": "^15.0.0",
"marked-terminal": "^7.3.0",
"zod": "^3.25.76"
},
"optionalDependencies": {
"@superhq/shuru": "^0.1.0",
"keytar": "^7.9.0"
},
"pnpm": {
"overrides": {
"vite": ">=7.3.2"
}
},
"peerDependenciesMeta": {
"@superhq/shuru": {
"optional": true
},
"keytar": {
"optional": true
}
}
}