-
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.18 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.18 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": "@effectorhq/skill-eval",
"version": "0.1.0",
"description": "Evaluation framework for AI agent skills \u2014 measure whether capabilities actually work",
"type": "module",
"bin": {
"skill-eval": "./scripts/run-eval.js"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"eval": "node scripts/run-eval.js",
"eval:linear": "node scripts/run-eval.js ../linear-skill --static-only",
"test": "node --test tests/*.test.js",
"prepublishOnly": "node --test tests/*.test.js"
},
"keywords": [
"ai-agent",
"quality",
"evaluation",
"skill",
"effector",
"metrics",
"capability",
"testing"
],
"author": "effectorHQ Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/effectorHQ/skill-eval.git"
},
"homepage": "https://github.com/effectorHQ/skill-eval",
"bugs": {
"url": "https://github.com/effectorHQ/skill-eval/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"src/",
"scripts/",
"README.md",
"LICENSE.md"
],
"dependencies": {
"@effectorhq/core": "^1.0.0"
},
"devDependencies": {}
}