snapeval 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.json +55 -0
- package/package.json +2 -1
- package/plugin.json +1 -1
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "snapeval",
|
|
3
|
+
"version": "4.0.1",
|
|
4
|
+
"description": "Harness-agnostic eval runner for agentskills.io skills",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"snapeval": "./dist/bin/snapeval.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "vitest run",
|
|
11
|
+
"test:watch": "vitest",
|
|
12
|
+
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
13
|
+
"build": "rm -rf dist && tsc && cp package.json dist/",
|
|
14
|
+
"dev": "tsx bin/snapeval.ts",
|
|
15
|
+
"prepublishOnly": "npm run build && npm test"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"ai-skills",
|
|
19
|
+
"agentskills",
|
|
20
|
+
"evaluation",
|
|
21
|
+
"harness"
|
|
22
|
+
],
|
|
23
|
+
"author": "Matan Tsach",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/matantsach/snapeval.git"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/matantsach/snapeval",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/matantsach/snapeval/issues"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist/src/",
|
|
35
|
+
"dist/bin/",
|
|
36
|
+
"dist/package.json",
|
|
37
|
+
"bin/",
|
|
38
|
+
"src/",
|
|
39
|
+
"plugin.json",
|
|
40
|
+
"skills/create-evals/SKILL.md",
|
|
41
|
+
"skills/run-evals/SKILL.md",
|
|
42
|
+
"scripts/"
|
|
43
|
+
],
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@github/copilot-sdk": "^0.2.0",
|
|
46
|
+
"chalk": "^5.4.1",
|
|
47
|
+
"commander": "^14.0.3"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^25.5.0",
|
|
51
|
+
"tsx": "^4.19.3",
|
|
52
|
+
"typescript": "^5.8.2",
|
|
53
|
+
"vitest": "^4.1.0"
|
|
54
|
+
}
|
|
55
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snapeval",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Harness-agnostic eval runner for agentskills.io skills",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"files": [
|
|
34
34
|
"dist/src/",
|
|
35
35
|
"dist/bin/",
|
|
36
|
+
"dist/package.json",
|
|
36
37
|
"bin/",
|
|
37
38
|
"src/",
|
|
38
39
|
"plugin.json",
|
package/plugin.json
CHANGED