-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.76 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.76 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
70
71
72
73
74
75
76
77
{
"name": "evalops-cli",
"version": "1.0.0",
"description": "CLI tool for evaluating code against Large Language Models using the EvalOps platform",
"main": "dist/cli.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"bin": {
"evalops": "dist/cli.js"
},
"keywords": [
"evalops",
"llm",
"evaluation",
"ai",
"testing",
"code-analysis",
"cli",
"machine-learning",
"language-models",
"typescript",
"javascript"
],
"author": "EvalOps Team",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.2.1",
"jest": "^30.0.5",
"ts-jest": "^29.4.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^14.0.0",
"dotenv": "^17.2.1",
"glob": "^11.0.3",
"inquirer": "^12.9.1",
"js-yaml": "^4.1.0",
"ora": "^8.2.0",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-typescript": "^0.23.2",
"web-tree-sitter": "^0.25.8"
},
"repository": {
"type": "git",
"url": "https://github.com/evalops/evalops_cli.git"
},
"bugs": {
"url": "https://github.com/evalops/evalops_cli/issues"
},
"homepage": "https://github.com/evalops/evalops_cli#readme",
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}