-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 744 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 744 Bytes
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
{
"name": "pharos",
"version": "0.2.5",
"description": "Renders AI coding agents' live session state as statusline fields and a tmux pulse.",
"license": "MIT",
"repository": "github.com/ahokinson/pharos",
"author": "anders@kingsfoil.dev",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "bun build ./src/index.ts --compile --outfile pharos",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"@types/mustache": "^4.2.6"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "^0.5.9",
"bson": "6",
"diff": "^9.0.0",
"mustache": "^4.2.0",
"zod": "^4.4.3"
}
}