-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "genkitx-promptfoo",
"description": "Genkit AI framework plugin for Promptfoo.",
"keywords": [
"genkit",
"genkit-plugin",
"promptfoo",
"eval",
"ai",
"genai",
"generative-ai"
],
"version": "0.1.13",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/yukinagae/genkitx-promptfoo.git"
},
"author": "Yuki Nagae",
"license": "Apache-2.0",
"scripts": {
"build": "npm run clean && tsup-node",
"clean": "rm -rf ./lib",
"watch": "tsup-node --watch",
"typecheck": "tsc --noEmit",
"check": "biome check ./src ./tests",
"fix": "biome check --write ./src ./tests",
"test": "tsx --test ./tests/*_test.ts"
},
"dependencies": {
"@genkit-ai/ai": "^0.5.14",
"@genkit-ai/core": "^0.5.14",
"promptfoo": "0.91.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/node": "^22.6.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"default": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib"
]
}