-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.44 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
{
"name": "@wienerberliner/pi-footer",
"version": "0.1.3",
"description": "Custom pi footer panels for git status and current agent context tokens.",
"keywords": [
"pi-package",
"pi-extension",
"footer"
],
"license": "MIT",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"verify:fast-mode": "rm -rf /tmp/pi-footer-fast-mode-verify && tsc --ignoreConfig --target ES2022 --module CommonJS --moduleResolution Node --ignoreDeprecations 6.0 --skipLibCheck --esModuleInterop --outDir /tmp/pi-footer-fast-mode-verify scripts/verify-fast-mode.ts extensions/fast-mode.ts && NODE_PATH=$PWD/node_modules node /tmp/pi-footer-fast-mode-verify/scripts/verify-fast-mode.js"
},
"pi": {
"extensions": [
"./extensions"
],
"image": "https://raw.githubusercontent.com/dasomji/pi-footer/main/assets/pi-footer-wide.png"
},
"files": [
"extensions",
"README.md",
"LICENSE"
],
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "latest",
"@earendil-works/pi-tui": "latest",
"typescript": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dasomji/pi-footer.git"
},
"bugs": {
"url": "https://github.com/dasomji/pi-footer/issues"
},
"homepage": "https://github.com/dasomji/pi-footer#readme",
"publishConfig": {
"access": "public"
}
}