-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "a-game-of-ethics",
"version": "1.0.0",
"description": "Scenario-Based Alignment Benchmark for Large Language Models",
"main": "ethi-cli.js",
"type": "module",
"scripts": {
"start": "node ethi-cli.js",
"manual": "node ethi-cli.js manual",
"model": "node ethi-cli.js model",
"analyze": "node src/analyze.js",
"analyze:auto": "node src/analyze.js --auto",
"debug-scenarios": "node src/debug-scenarios.js"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"csv-writer": "^1.6.0",
"dotenv": "^16.4.1",
"figlet": "^1.7.0",
"glob": "^10.3.10",
"inkjs": "^2.2.2",
"inquirer": "^9.2.12",
"lodash": "^4.17.21",
"nanospinner": "^1.1.0",
"node-fetch": "^3.3.2"
},
"bin": {
"ethi": "./ethi-cli.js"
},
"keywords": [
"ethics",
"llm",
"alignment",
"narrative",
"scenarios",
"ink",
"benchmark"
],
"author": "torinvdb",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/torinvdb/a-game-of-ethics.git"
}
}