-
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.45 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.45 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": "opencode-overclock",
"version": "0.3.0",
"description": "Power-ups for opencode: background tasks, scheduling, sandboxed bash, tool hooks, usage telemetry, checkpoints. Modular, toggleable.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/tomtom103/opencode-overclock.git"
},
"homepage": "https://github.com/tomtom103/opencode-overclock#readme",
"bugs": "https://github.com/tomtom103/opencode-overclock/issues",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./server": "./src/index.ts",
"./tui": "./src/tui.ts"
},
"files": [
"src"
],
"keywords": [
"opencode",
"opencode-plugin",
"opencode-tui-plugin",
"agent",
"cli"
],
"license": "MIT",
"scripts": {
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"check": "tsc --noEmit && prettier --check .",
"verify": "scripts/verify-pack.sh",
"verify:published": "scripts/verify-pack.sh --published",
"prepublishOnly": "tsc --noEmit && bun test"
},
"engines": {
"opencode": ">=1.18.4"
},
"dependencies": {
"@opencode-ai/plugin": "1.18.9",
"croner": "^10.0.1"
},
"peerDependencies": {
"@opentui/solid": ">=0.4.5"
},
"peerDependenciesMeta": {
"@opentui/solid": {
"optional": true
}
},
"devDependencies": {
"@opentui/solid": "0.4.5",
"@types/bun": "latest",
"prettier": "^3.9.6",
"typescript": "^5.7.0"
}
}