-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 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
{
"name": "@getpipher/welcome",
"version": "0.1.9",
"description": "Information-only startup dashboard widget for pi/omp coding agents — branded panel above the live prompt at startup, cleared on the first agent turn. No overlay, no hotkey rebinding.",
"keywords": ["pi-package", "pi-extension", "welcome", "home", "dashboard", "splash", "tui"],
"license": "MIT",
"author": "RECTOR <rector@rectorspace.com>",
"homepage": "https://github.com/getpipher/welcome",
"repository": { "type": "git", "url": "https://github.com/getpipher/welcome.git" },
"bugs": { "url": "https://github.com/getpipher/welcome/issues" },
"type": "module",
"engines": { "node": ">=20" },
"pi": { "extensions": ["./extensions/welcome.ts"] },
"files": ["extensions", "lib", "README.md", "LICENSE"],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "tsx --test",
"test:run": "tsx --test"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"pnpm": {
"overrides": {
"undici": "^8.9.0"
}
}
}