-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.24 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": "@getpipher/cursor",
"version": "0.2.4",
"description": "Focus-aware, customizable editor cursor for the pi coding agent (truecolor + Ghostty/tmux deep; tmux + cmux + herdr; static fallback).",
"keywords": [
"pi-package",
"pi-extension",
"cursor",
"tmux",
"cmux",
"herdr",
"focus",
"tui",
"truecolor",
"ghostty"
],
"license": "MIT",
"author": "RECTOR <rector@rectorspace.com>",
"homepage": "https://github.com/getpipher/cursor",
"repository": {
"type": "git",
"url": "https://github.com/getpipher/cursor.git"
},
"bugs": {
"url": "https://github.com/getpipher/cursor/issues"
},
"type": "module",
"engines": {
"node": ">=20"
},
"pi": {
"extensions": [
"./extensions/cursor.ts"
]
},
"files": [
"extensions",
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "tsx --test",
"test:run": "tsx --test"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.85.1",
"@earendil-works/pi-tui": "*",
"@types/node": "*",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
}
}