-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 KB
/
package.json
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
{
"name": "ai-ctrf",
"version": "0.0.11",
"description": "Generate AI summaries of test results using a wide range of AI models like OpenAI, Anthropic, Gemini, Mistral, Grok, DeepSeek, Azure, Perplexity, and OpenRouter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts --fix",
"lint-check": "eslint . --ext .ts",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"bin": {
"ai-ctrf": "./dist/index.js"
},
"files": [
"dist/",
"README.md"
],
"keywords": ["ai", "ctrf", "test-reporter", "openai", "anthropic", "google", "mistral", "grok", "deepseek", "azure", "perplexity", "openrouter"],
"author": "Matthew Thomas",
"repository": {
"type": "git",
"url": "https://github.com/ctrf-io/ai-test-reporter.git"
},
"homepage": "https://ctrf.io",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.2",
"@google/generative-ai": "^0.21.0",
"openai": "^4.57.0",
"yargs": "^17.7.2"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}