-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.46 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
{
"name": "web-app-completeness",
"version": "0.1.0",
"private": true,
"description": "Portable agent skills for planning, building, auditing, and aligning complete operational web-app workflows.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.22.0"
},
"packageManager": "npm@11.4.1",
"scripts": {
"generate:references": "node scripts/generate-references.mjs",
"check:references": "node scripts/generate-references.mjs --check",
"check:links": "node scripts/check-links.mjs",
"check:eval-env": "node scripts/check-eval-environment.mjs",
"validate:knowledge": "node scripts/validate-knowledge.mjs",
"validate:links": "node scripts/validate-local-links.mjs",
"validate:skills": "node scripts/validate-skills.mjs",
"validate:evals": "node scripts/validate-evals.mjs",
"validate:manifests": "node scripts/validate-manifests.mjs",
"validate:promptfoo": "promptfoo validate config -c evals/promptfoo/promptfooconfig.yaml",
"validate": "npm run check:references && npm run validate:knowledge && npm run validate:skills && npm run validate:links && npm run validate:evals && npm run validate:manifests && npm test",
"test": "node --test",
"blind-ab:create": "node scripts/create-blind-ab.mjs",
"blind-ab:score": "node scripts/score-blind-ab.mjs",
"eval:live": "promptfoo eval -c evals/promptfoo/promptfooconfig.yaml"
},
"devDependencies": {
"promptfoo": "0.122.0",
"yaml": "2.9.0"
}
}