forked from comet-ml/ccsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.03 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
{
"name": "@opik/ccsync",
"version": "0.1.0",
"description": "Sync Claude Code conversations to Opik for observability and analytics",
"main": "dist/index.js",
"bin": {
"@opik/ccsync": "./dist/cli.js",
"ccsync": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"claude-code",
"opik",
"observability",
"llm",
"tracing",
"sync"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"chokidar": "^4.0.3",
"commander": "^11.1.0",
"prompts": "^2.4.2",
"uuid": "^11.1.0",
"uuidv7": "^1.0.2"
},
"devDependencies": {
"@types/chokidar": "^1.7.5",
"@types/node": "^20.10.0",
"@types/prompts": "^2.4.9",
"@types/uuid": "^10.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"README.md"
]
}