-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 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
{
"name": "skynet-bench",
"version": "0.1.0",
"description": "Self-consistent environment scaffolding for AI behavioral evaluation — measuring authority-gradient effects on model reasoning",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"generate-profile": "tsx scripts/generate-profile.ts",
"run-experiment": "tsx scripts/run-experiment.ts",
"score-responses": "tsx scripts/score-responses.ts",
"embed-responses": "tsx scripts/embed-responses.ts",
"analyze": "tsx scripts/analyze-results.ts",
"stats": "tsx scripts/statistical-analysis.ts",
"awareness": "tsx scripts/awareness-analysis.ts",
"full-pipeline": "tsx scripts/full-pipeline.ts",
"clean": "rm -rf dist results/raw-responses/* results/scored/*"
},
"keywords": [
"ai-safety",
"evaluation",
"authority",
"benchmark",
"openrouter",
"milgram"
],
"author": "Tom Oury & Claude (Anthropic)",
"license": "Apache-2.0",
"dependencies": {
"@nomic-ai/atlas": "^0.12.0",
"dotenv": "^16.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}