-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.53 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
59
60
61
62
63
{
"name": "opencode-cache-timer",
"version": "0.1.2",
"description": "OpenCode TUI sidebar plugin: prompt cache TTL countdown for Claude, GPT, Gemini, DeepSeek, and more",
"keywords": [
"opencode",
"opencode-plugin",
"tui",
"sidebar",
"cache",
"prompt-cache",
"countdown",
"anthropic",
"claude",
"openai"
],
"license": "MIT",
"author": "nerosensei",
"repository": {
"type": "git",
"url": "git+https://github.com/nero-sensei/opencode-cache-timer.git"
},
"bugs": {
"url": "https://github.com/nero-sensei/opencode-cache-timer/issues"
},
"homepage": "https://github.com/nero-sensei/opencode-cache-timer#readme",
"type": "module",
"main": "./dist/index.tsx",
"exports": {
".": "./dist/index.tsx",
"./tui": "./dist/index.tsx"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun scripts/build.ts",
"clean": "rm -rf dist",
"test": "bun test",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run typecheck && bun run test && bun run clean && bun run build"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.3.0",
"@opencode-ai/sdk": ">=1.3.0",
"@opentui/solid": ">=0.1.97",
"solid-js": ">=1.9.0"
},
"devDependencies": {
"@opencode-ai/plugin": "1.4.1",
"@opencode-ai/sdk": "1.4.1",
"@opentui/core": "0.1.97",
"@opentui/solid": "0.1.97",
"@types/bun": "latest",
"solid-js": "^1.9.0",
"typescript": "5.8.2"
},
"publishConfig": {
"access": "public"
}
}