@moberg_hr/work-tree 1.5.0

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.
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>work web — sessions</title>
7
+ <script type="module" crossorigin src="/assets/index-vD0svqIi.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-Quf37ngR.css">
9
+ </head>
10
+ <body>
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
package/package.json ADDED
@@ -0,0 +1,85 @@
1
+ {
2
+ "name": "@moberg_hr/work-tree",
3
+ "version": "1.5.0",
4
+ "description": "Cross-platform Git worktree manager for multiple repositories",
5
+ "type": "module",
6
+ "bin": {
7
+ "work": "./dist/bin.js",
8
+ "wd": "./dist/wd-bin.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "build": "npm run build:server && npm run build:web",
15
+ "build:server": "tsup",
16
+ "build:web": "vite build",
17
+ "typecheck": "tsc --noEmit && tsc --noEmit -p src/web/tsconfig.json",
18
+ "dev": "tsx src/bin.ts",
19
+ "dev:web": "vite",
20
+ "test": "vitest run",
21
+ "test:watch": "vitest",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "keywords": [
25
+ "git",
26
+ "worktree",
27
+ "cli"
28
+ ],
29
+ "license": "MIT",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/moberghr/cli-work-tree-manager.git"
33
+ },
34
+ "homepage": "https://github.com/moberghr/cli-work-tree-manager#readme",
35
+ "bugs": {
36
+ "url": "https://github.com/moberghr/cli-work-tree-manager/issues"
37
+ },
38
+ "engines": {
39
+ "node": ">=18"
40
+ },
41
+ "dependencies": {
42
+ "@hono/node-server": "^1.19.14",
43
+ "@hono/node-ws": "^1.3.1",
44
+ "@hono/zod-validator": "^0.8.0",
45
+ "@types/diff": "^7.0.2",
46
+ "@types/proper-lockfile": "^4.1.4",
47
+ "@xterm/addon-fit": "^0.11.0",
48
+ "@xterm/headless": "^6.0.0",
49
+ "@xterm/xterm": "^6.0.0",
50
+ "chalk": "^5.4.1",
51
+ "chokidar": "^5.0.0",
52
+ "cross-spawn": "^7.0.6",
53
+ "diff": "^9.0.0",
54
+ "dompurify": "^3.4.7",
55
+ "glob": "^11.0.1",
56
+ "highlight.js": "^11.11.1",
57
+ "hono": "^4.12.23",
58
+ "ink": "^6.8.0",
59
+ "inquirer": "^12.3.2",
60
+ "marked": "^18.0.4",
61
+ "node-pty": "^1.1.0",
62
+ "proper-lockfile": "^4.1.2",
63
+ "react": "^19.2.4",
64
+ "react-dom": "^19.2.6",
65
+ "ws": "^8.21.0",
66
+ "yargs": "^17.7.2",
67
+ "zod": "^4.4.3"
68
+ },
69
+ "devDependencies": {
70
+ "@types/cross-spawn": "^6.0.6",
71
+ "@types/dompurify": "^3.0.5",
72
+ "@types/node": "^22.13.4",
73
+ "@types/react": "^19.2.14",
74
+ "@types/react-dom": "^19.2.3",
75
+ "@types/ws": "^8.18.1",
76
+ "@types/yargs": "^17.0.33",
77
+ "@vitejs/plugin-react": "^4.7.0",
78
+ "jsdom": "^29.1.1",
79
+ "tsup": "^8.3.6",
80
+ "tsx": "^4.19.2",
81
+ "typescript": "^5.7.3",
82
+ "vite": "^7.3.3",
83
+ "vitest": "^3.0.5"
84
+ }
85
+ }