-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "opencode-pulse",
"version": "0.2.0",
"description": "Monitor your OpenCode sessions — plugin + TUI sorted by urgency",
"type": "module",
"main": "./plugin/dist/index.js",
"bin": {
"pulse": "bin/pulse.js",
"opencode-pulse": "bin/pulse.js"
},
"files": [
"bin",
"plugin/dist",
"tui-ts/src",
"tui-ts/tsconfig.json",
"schema.sql"
],
"scripts": {
"build": "bun build plugin/src/entry.ts --outfile plugin/dist/index.js --target bun --format esm",
"typecheck": "cd plugin && bunx tsc --noEmit && cd ../tui-ts && bunx tsc --noEmit",
"test": "bun test",
"test:integration": "INTEGRATION=1 bun test test/",
"prepublishOnly": "bun run build"
},
"keywords": [
"opencode",
"plugin",
"pulse",
"monitor",
"tui"
],
"license": "MIT",
"author": "Pete Fritchman",
"repository": {
"type": "git",
"url": "git+https://github.com/fetep/opencode-pulse.git"
},
"homepage": "https://github.com/fetep/opencode-pulse",
"dependencies": {
"@opentui/core": "^0.1.87",
"@opentui/react": "^0.1.87",
"citty": "^0.2.1",
"jsonc-parser": "^3.3.1",
"react": "^19.2.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@copilotkit/llmock": "^1.3.1",
"@opencode-ai/plugin": "^1.2.25",
"@opencode-ai/sdk": "^1.2.25",
"@types/bun": "^1.3.10",
"@types/react": "^19.2.14",
"typescript": "^5.9.3"
}
}