forked from mgechev/skillgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.59 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "skillgrade",
"version": "0.1.3",
"description": "The easiest way to evaluate your Agent Skills — test that AI agents correctly discover and use your skills",
"main": "dist/skillgrade.js",
"types": "dist/skillgrade.d.ts",
"bin": {
"skillgrade": "./bin/skillgrade.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/viewer.html",
"!dist/**/*.js.map",
"!dist/**/*.d.ts.map",
"bin/",
"templates/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"dev": "ts-node src/skillgrade.ts",
"build": "tsc -p tsconfig.build.json && cp src/viewer.html dist/viewer.html",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"skills",
"evaluation",
"benchmark",
"gemini",
"claude",
"codex",
"openai",
"llm",
"testing"
],
"author": "Minko Gechev",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/mgechev/skillgrade"
},
"homepage": "https://github.com/mgechev/skillgrade#readme",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/dockerode": "^4.0.1",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.1",
"@types/tar-stream": "^3.1.3",
"@vitest/coverage-v8": "^4.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"dockerode": "^4.0.9",
"fs-extra": "^11.3.3",
"js-yaml": "^4.1.1",
"tar-stream": "^3.1.7"
}
}