forked from ljw1004/opencode-trace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1008 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1008 Bytes
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": "@lucentia/opencode-trace",
"version": "0.1.4",
"description": "OpenCode plugin that saves raw JSON LLM request and response traces as JSONL",
"license": "MIT",
"type": "module",
"exports": "./index.ts",
"main": "./index.ts",
"files": [
"index.ts",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/404MaximWang/opencode-trace.git"
},
"homepage": "https://github.com/404MaximWang/opencode-trace#readme",
"bugs": {
"url": "https://github.com/404MaximWang/opencode-trace/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"trace",
"llm",
"FM-Agent"
],
"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.24.0",
"typescript-eslint": "8.29.0",
"typescript": "5.8.2"
}
}