forked from narumiruna/pi-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 886 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@narumitw/pi-statusline",
"version": "0.5.0",
"description": "Pi extension that replaces the footer with an information-rich statusline.",
"type": "module",
"license": "MIT",
"private": false,
"keywords": [
"pi-package",
"pi-extension",
"pi",
"statusline",
"footer"
],
"files": [
"src",
"presets",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./src/statusline.ts"
]
},
"scripts": {
"check": "biome check . && npm run typecheck",
"format": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@earendil-works/pi-coding-agent": "0.79.8",
"@earendil-works/pi-tui": "0.79.8",
"@types/node": "25.6.0",
"typescript": "6.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/narumiruna/pi-extensions",
"directory": "extensions/pi-statusline"
}
}