-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.88 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
64
65
66
67
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-session-elapsed",
"version": "0.1.3",
"description": "OpenCode TUI plugin that shows session elapsed, cumulative work, and response timers in the prompt line.",
"type": "module",
"exports": {
"./tui": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"assets/screenshot.png"
],
"repository": {
"type": "git",
"url": "git+https://github.com/siriscmv/opencode-session-elapsed.git"
},
"homepage": "https://github.com/siriscmv/opencode-session-elapsed#readme",
"bugs": {
"url": "https://github.com/siriscmv/opencode-session-elapsed/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"opencode-tui",
"tui",
"timer",
"elapsed",
"time",
"stopwatch"
],
"license": "MIT",
"author": {
"name": "Siris",
"email": "40269790+siriscmv@users.noreply.github.com",
"url": "https://github.com/siriscmv"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test",
"build": "bun scripts/transform.tsx && bun build .build/index.js --outfile dist/index.js --target bun --external solid-js --external @opentui/core --external @opentui/solid --external @opencode-ai/plugin && tsc -p tsconfig.build.json && rm -rf .build",
"prepublishOnly": "bun run typecheck && bun test && bun run build"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.18.0",
"@opentui/core": ">=0.4.5",
"@opentui/solid": ">=0.4.5",
"solid-js": "^1.9.0"
},
"devDependencies": {
"@opencode-ai/plugin": "1.18.17",
"@opentui/core": ">=0.4.5",
"@opentui/keymap": ">=0.4.5",
"@opentui/solid": ">=0.4.5",
"@types/bun": "^1.3.14",
"@types/node": "^26.2.0",
"solid-js": "^1.9.12",
"typescript": "^5.6.0"
}
}