-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 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
{
"name": "llm-debugger",
"version": "0.0.0-development",
"description": "Debug and log LLM API requests/responses with streaming support. Works with OpenAI, Anthropic, and compatible APIs.",
"main": "src/index.js",
"bin": {
"llm-debugger": "./src/cli.js",
"llm_debugger": "./src/cli.js"
},
"scripts": {
"start": "node scripts/daemon.js start",
"stop": "node scripts/daemon.js stop",
"restart": "node scripts/daemon.js restart",
"status": "node scripts/daemon.js status",
"start:dev": "node --watch src/cli.js",
"test": "node --test 'tests/**/*.test.js'",
"screenshot_index": "node scripts/screenshot-index.js",
"screenshot_detail": "node scripts/screenshot-detail.js",
"screenshot_compare": "node scripts/screenshot-compare.js",
"screenshot_settings": "node scripts/screenshot-settings.js",
"verify:anthropic": "node scripts/verify-anthropic.js",
"verify:openai": "node scripts/verify-openai.js"
},
"keywords": [
"llm",
"api",
"debugger",
"proxy",
"logger",
"openai",
"anthropic",
"claude",
"gpt",
"streaming",
"chat-completions"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kamilio/llm-debugger.git"
},
"bugs": {
"url": "https://github.com/kamilio/llm-debugger/issues"
},
"homepage": "https://github.com/kamilio/llm-debugger#readme",
"publishConfig": {
"access": "public",
"provenance": "true"
},
"files": [
"src",
"config.yaml"
],
"dependencies": {
"@clack/prompts": "^0.11.0",
"diff": "^8.0.3",
"dotenv": "^16.6.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"playwright": "^1.49.0"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module"
}