-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.39 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.39 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
{
"name": "@codebolt/agent-check",
"version": "0.1.1",
"description": "Progressive testing plan runner for AI agents with provider-neutral execution and optional LLM-guided resolution.",
"type": "module",
"files": [
"dist",
"docs",
"examples",
"skills",
"agent-check.config.yaml",
"README.md",
"LICENSE"
],
"bin": {
"agent-check": "dist/cli/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"dev": "tsx src/cli/index.ts",
"check": "npm run build && npm test"
},
"keywords": [
"ai",
"ai-agents",
"agentic",
"agent-testing",
"llm",
"testing",
"test-runner",
"test-automation",
"approval-testing",
"semantic-testing",
"provider-neutral",
"playwright",
"browser-automation",
"cli",
"typescript"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"ai": "^6.0.191",
"ai-sdk-provider-codex-cli": "^1.2.0",
"commander": "^12.1.0",
"dotenv": "^17.4.2",
"picocolors": "^1.1.1",
"playwright": "^1.54.0",
"uuid": "^11.0.5",
"yaml": "^2.7.0",
"zhipu-ai-provider": "^0.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}