-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "opencode-dataset",
"version": "0.1.2",
"description": "OpenCode plugin and OpenTUI review CLI for collecting fine-tuning datasets.",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./server": "./dist/index.js"
},
"bin": {
"opencode-dataset-plugin": "./dist/index.js",
"opencode-dataset": "./dist/index.js"
},
"files": [
"dist",
"src",
"index.ts",
"README.md",
"AGENTS.md"
],
"scripts": {
"prepack": "bun run build",
"build": "bun build ./index.ts --outfile dist/index.js --target bun --packages external",
"typecheck": "tsc --noEmit",
"test": "bun test",
"demo": "bun run index.ts demo",
"review": "bun run index.ts review",
"export:openai": "bun run index.ts export --format openai --include-pending"
},
"dependencies": {
"@opencode-ai/plugin": "^1.17.13",
"@opentui/core": "^0.4.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^6.0.3"
}
}