-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.47 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
{
"name": "@royalpinto007/evalgate",
"version": "0.1.2",
"description": "Prompt/agent regression CI - the build fails when your prompt gets dumber.",
"keywords": [
"eval",
"evals",
"llm",
"prompt",
"regression",
"ci",
"github-action",
"scorer",
"testing"
],
"license": "MIT",
"author": "royalpinto007",
"type": "module",
"bin": {
"evalgate": "./dist/cli/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"action.yml",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .ts",
"clean": "rm -rf dist"
},
"dependencies": {
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgentPostmortem/Evalgate.git"
},
"bugs": {
"url": "https://github.com/AgentPostmortem/Evalgate/issues"
},
"homepage": "https://github.com/AgentPostmortem/Evalgate#readme"
}