-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "sse-inspector",
"version": "1.0.0",
"description": "vLLM/OpenAI-compatible API proxy with SSE recording and inspection",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"sse-inspector": "bin/sse-inspector.js"
},
"type": "commonjs",
"engines": {
"node": ">=18"
},
"files": [
"bin/",
"dist/",
"frontend/dist/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node bin/sse-inspector.js --dev",
"build": "tsc",
"build:frontend": "npm --prefix frontend run build",
"build:all": "npm run build && npm run build:frontend",
"prepack": "npm run build:all",
"test:sse": "tsx backend/test/sse-merger.test.ts",
"test:decode": "tsx backend/test/body-decode.test.ts"
},
"dependencies": {
"@anthropic-ai/tokenizer": "^0.0.4",
"@lenml/tokenizers": "^3.7.2",
"better-sqlite3": "^12.10.1",
"compression": "^1.8.1",
"eventsource-parser": "^3.1.0",
"express": "^4.21.0",
"gpt-tokenizer": "^2.9.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^1.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/compression": "^1.8.1",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.5.3",
"vite": "^8.0.16",
"vite-express": "^0.22.1"
},
"private": true
}