projax 3.3.59 → 3.3.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/dist/electron/preload.d.ts +1 -0
- package/dist/electron/renderer/assets/index-CmtZriN5.js +66 -0
- package/dist/electron/renderer/index.html +1 -1
- package/dist/index.js +13 -9
- package/dist/prxi.js +150 -117
- package/dist/prxi.tsx +179 -162
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,10 +31,16 @@ A cross-platform project management dashboard for tracking local development pro
|
|
|
31
31
|
## Installation
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
+
# Install globally
|
|
34
35
|
npm install -g projax
|
|
36
|
+
|
|
37
|
+
# Or run directly with npx (no install required)
|
|
38
|
+
npx projax --help
|
|
39
|
+
npx projax list
|
|
40
|
+
npx projax i # Launch Terminal UI
|
|
35
41
|
```
|
|
36
42
|
|
|
37
|
-
After installation, the `prx` command will be available globally.
|
|
43
|
+
After global installation, the `prx` command will be available globally.
|
|
38
44
|
|
|
39
45
|
## VS Code/Cursor/Windsurf Extension
|
|
40
46
|
|
|
@@ -393,9 +399,12 @@ Launch the interactive terminal UI - a full-screen terminal interface for managi
|
|
|
393
399
|
**Features:**
|
|
394
400
|
- Navigate projects with arrow keys or vim bindings (j/k)
|
|
395
401
|
- View project details, tests, ports, and running scripts
|
|
402
|
+
- **npm package detection** - automatically shows if project is published on npm
|
|
403
|
+
- Git branch display with color-coded status
|
|
396
404
|
- Scan projects for tests and ports
|
|
397
405
|
- Stop running scripts
|
|
398
406
|
- Full-height columns with independent scrolling
|
|
407
|
+
- Virtual scrolling for large script/port lists
|
|
399
408
|
|
|
400
409
|
**Keyboard Shortcuts:**
|
|
401
410
|
- `↑/k` - Move up in project list
|
|
@@ -45,6 +45,7 @@ export interface ElectronAPI {
|
|
|
45
45
|
renameProject: (projectId: number, newName: string) => Promise<Project>;
|
|
46
46
|
updateProject: (projectId: number, updates: {
|
|
47
47
|
description?: string | null;
|
|
48
|
+
tags?: string[];
|
|
48
49
|
}) => Promise<Project>;
|
|
49
50
|
getProjectScripts: (projectPath: string) => Promise<ProjectScripts>;
|
|
50
51
|
runScript: (projectPath: string, scriptName: string, args?: string[], background?: boolean) => Promise<{
|