-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "@ljw1004/opencode-trace",
"version": "0.1.4",
"description": "OpenCode plugin that saves raw json LLM request+responses as jsonl in ~/opencode-trace, with built-in HTML interactive viewer",
"license": "MIT",
"type": "module",
"exports": "./index.ts",
"main": "./index.ts",
"files": [
"index.ts",
"viewer.js",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ljw1004/opencode-trace.git"
},
"homepage": "https://github.com/ljw1004/opencode-trace#readme",
"bugs": {
"url": "https://github.com/ljw1004/opencode-trace/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"trace",
"llm"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint index.ts",
"typecheck": "tsc"
},
"devDependencies": {
"@eslint/js": "9.24.0",
"@tsconfig/node22": "22.0.2",
"@types/node": "22.13.9",
"eslint": "^9.39.4",
"typescript": "5.8.2",
"typescript-eslint": "8.29.0"
}
}