-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.88 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.88 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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "explorbot",
"version": "1.0.0",
"description": "CLI app built with React Ink, CodeceptJS, and Playwright",
"license": "Elastic-2.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"explorbot": "./bin/explorbot-cli.ts"
},
"scripts": {
"build": "bun run src/index.tsx build && bun run build:bin",
"build:bin": "bun build bin/explorbot-cli.ts --outdir bin --target node --external commander --format esm",
"dev": "bun run src/index.tsx",
"start": "node dist/index.js",
"init": "bun run src/index.tsx init",
"test": "codeceptjs run",
"test:headless": "codeceptjs run --headless",
"test:ui": "bun test tests/ui",
"test:unit": "bun test tests/unit",
"test:unit:coverage": "bun test tests/unit --coverage && find . -name '.lcov.info*.tmp' -type f -delete 2>/dev/null || true",
"test:coverage": "bun test tests/unit --coverage --coverage-reporter=text && find . -name '.lcov.info*.tmp' -type f -delete 2>/dev/null || true",
"test:coverage:html": "echo 'Run: bun test tests/unit --coverage for detailed coverage report'",
"test:coverage:summary": "bun test tests/unit --coverage --coverage-reporter=text | tail -n 20 && find . -name '.lcov.info*.tmp' -type f -delete 2>/dev/null || true",
"test:coverage:clean": "find . -name '.lcov.info*.tmp' -type f -delete 2>/dev/null || true",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"langfuse:export": "bun run .claude/skills/explorbot-debug/langfuse-export.ts"
},
"keywords": ["cli", "react", "ink", "codeceptjs", "playwright"],
"author": "",
"dependencies": {
"@ai-sdk/anthropic": "^3.0",
"@ai-sdk/groq": "^3.0",
"@ai-sdk/openai": "^3.0",
"@axe-core/playwright": "^4.11.0",
"@inkjs/ui": "^2.0.0",
"@langfuse/otel": "^4.5.1",
"@openrouter/ai-sdk-provider": "^2.3.3",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.67.3",
"@opentelemetry/instrumentation": "^0.208.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-node": "^0.208.0",
"@opentelemetry/sdk-trace-base": "^2.2.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@scalar/openapi-parser": "^0.25.6",
"@testomatio/reporter": "2.7.3",
"ai": "^6.0.6",
"axe-core": "^4.11.1",
"bash-tool": "^1.3.15",
"cli-highlight": "^2.1.11",
"codeceptjs": "4.0.0-rc.11",
"commander": "^14.0.1",
"debug": "^4.4.3",
"dedent": "^1.6.0",
"expect": "^30.3.0",
"figures": "^6.1.0",
"gray-matter": "^4.0.3",
"html-minifier-next": "^2.1.5",
"ink": "^6.3.1",
"ink-big-text": "^2.0.0",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"jsdom": "^28.0.0",
"just-bash": "^2.14.0",
"langfuse": "^3.5.0",
"marked": "^16.2.0",
"marked-terminal": "^7.3.0",
"micromatch": "^4.0.8",
"ora-classic": "^5.4.2",
"parse5": "^8.0.0",
"playwright": "^1.40.0",
"react": "^19.1.1",
"strip-ansi": "^7.1.2",
"turndown": "^7.2.1",
"unique-names-generator": "^4.7.1",
"yargs": "^17.7.2",
"zod": "^4.1.8"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@testing-library/react": "^16.3.0",
"@types/debug": "^4.1.12",
"@types/jsdom": "^27.0.0",
"@types/micromatch": "^4.0.9",
"@types/react": "^18.2.0",
"@types/yargs": "^17.0.24",
"bunosh": "^0.4.0",
"ink-testing-library": "^4.0.0",
"langwatch": "^0.10.0",
"msw": "^2.11.3",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=16.0.0"
},
"overrides": {
"has-flag": "4.0.0",
"supports-color": "7.2.0"
},
"resolutions": {
"marked-terminal": {
"supports-hyperlinks": "2.3.0"
},
"has-flag": "4.0.0",
"supports-color": "7.2.0"
}
}