-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.44 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.44 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
{
"name": "ai-utils",
"version": "1.0.0",
"type": "module",
"scripts": {
"latency-test": "bun run tools/latency-tester/index.ts",
"latency-test:mobilede": "SCENARIO_FILE=scenario-mobilede.json bun run tools/latency-tester/index.ts",
"filler-test": "bun run tools/cai-filler-test-rig/index.ts",
"filler-test:example": "bun run tools/cai-filler-test-rig/index.ts --config tools/cai-filler-test-rig/config/example.yaml",
"stability-build-corpus": "bun run tools/semantic-stability-tester/src/corpus-builder.ts",
"stability-test": "bun run tools/semantic-stability-tester/index.ts",
"stability-test:heuristic": "bun run tools/semantic-stability-tester/index.ts --heuristic-only -v",
"fire-point-test": "bun run tools/semantic-stability-tester/fire-point-test.ts",
"fire-point-test:verbose": "bun run tools/semantic-stability-tester/fire-point-test.ts -v",
"fire-point-report": "bun run tools/semantic-stability-tester/fire-point-report.ts",
"latency-report": "bun run tools/latency-tester/generate-report.ts",
"test": "bun test"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@aws-sdk/client-bedrock-runtime": "^3.701.0",
"@aws-sdk/credential-providers": "^3.701.0",
"@huggingface/transformers": "^3.4.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.5.0",
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}