-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "thinktank-ai",
"version": "0.1.2",
"description": "Ensemble AI coding — run N parallel Claude Code agents, select the best result via Copeland pairwise scoring",
"type": "module",
"bin": {
"thinktank": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/that-github-user/thinktank.git"
},
"homepage": "https://github.com/that-github-user/thinktank",
"bugs": {
"url": "https://github.com/that-github-user/thinktank/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "tsx --test src/**/*.test.ts",
"prepublishOnly": "npm run build && npm test",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/"
},
"keywords": [
"ai",
"coding",
"ensemble",
"claude",
"claude-code",
"consensus"
],
"author": "",
"license": "MIT",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.test.*",
"README.md",
"LICENSE"
],
"dependencies": {
"commander": "^14.0.3",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}