-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.17 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@agentesting/agentest",
"version": "0.0.22",
"description": "Embedded agent simulation & evaluation framework for Node.js/TypeScript",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"types": "./dist/index.d.cts",
"bin": {
"agentest": "dist/cli.js"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./vitest": {
"import": {
"types": "./dist/vitest.d.ts",
"default": "./dist/vitest.js"
},
"require": {
"types": "./dist/vitest.d.cts",
"default": "./dist/vitest.cjs"
}
}
},
"peerDependencies": {
"vitest": ">=1.0.0"
},
"peerDependenciesMeta": {
"vitest": {
"optional": true
}
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"agent",
"simulation",
"evaluation",
"testing",
"llm",
"ai",
"langchain",
"langgraph",
"crewai",
"vitest",
"agentest"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/r-prem/agentest.git"
},
"bugs": {
"url": "https://github.com/r-prem/agentest/issues"
},
"homepage": "https://r-prem.github.io/agentest/",
"engines": {
"node": ">=20"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@ai-sdk/google": "^3.0.53",
"@ai-sdk/openai": "^3.0.48",
"ai": "^6.0.141",
"commander": "^13.1.0",
"glob": "^13.0.6",
"jiti": "^2.4.0",
"p-limit": "^6.2.0",
"yaml": "^2.8.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"vitepress": "^1.6.4",
"vitest": "^3.1.0"
}
}