-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.07 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
{
"name": "tiltgent",
"version": "0.1.2",
"description": "Open-source CLI tool for evaluating AI agent judgment tilt through blind debates",
"type": "module",
"license": "MIT",
"bin": {
"tiltgent": "./dist/bin/tiltgent.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx bin/tiltgent.ts",
"start": "node dist/bin/tiltgent.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selfradiance/tiltgent-cli.git"
},
"bugs": {
"url": "https://github.com/selfradiance/tiltgent-cli/issues"
},
"homepage": "https://github.com/selfradiance/tiltgent-cli#readme",
"files": [
"dist/**/*"
],
"keywords": [
"ai",
"agent",
"evaluation",
"bias",
"judgment",
"tilt",
"cli",
"anthropic",
"claude",
"blind-debate",
"prompt-regression"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"chalk": "^5.6.2",
"commander": "^14.0.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}