-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.16 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
{
"name": "collectivus",
"version": "3.2.2",
"description": "OTLP collector and pass-through LLM proxy",
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
"keywords": [
"opentelemetry",
"otlp",
"collector",
"traces",
"metrics",
"logs",
"anthropic",
"claude",
"llm-proxy",
"claude-code"
],
"license": "MIT",
"type": "module",
"main": "src/index.js",
"bin": {
"ctvs": "bin/cli.js",
"collectivus": "bin/cli.js"
},
"files": [
"src",
"types",
"skills"
],
"sideEffects": false,
"scripts": {
"start": "node bin/cli.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"typecheck": "tsc"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "25.9.1",
"eslint": "9.39.4",
"eslint-plugin-jsdoc": "63.0.0",
"globals": "17.6.0",
"js-yaml": "4.1.1",
"typescript": "6.0.3",
"vitest": "4.1.7"
},
"optionalDependencies": {
"hyparquet-writer": "0.15.1"
},
"dependencies": {
"hyparquet": "1.25.8",
"hyparquet-compressors": "1.1.1",
"icebird": "0.7.0",
"squirreling": "0.12.19"
}
}