-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.11 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.11 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
48
49
50
51
52
53
54
55
56
{
"name": "tree-buddy",
"version": "0.3.1",
"description": "macOS menubar app for managing git worktrees",
"type": "module",
"main": "dist/main/index.js",
"scripts": {
"build": "npm run build:main && npm run build:renderer",
"build:main": "tsc -p tsconfig.main.json && tsc -p tsconfig.preload.json && cp dist-preload/main/preload.js dist/main/preload.js",
"build:renderer": "vite build",
"build:cli": "bun build --compile --minify src/cli/index.tsx --outfile dist/tb",
"build:cli:darwin-arm64": "bun build --compile --minify --target=bun-darwin-arm64 src/cli/index.tsx --outfile dist/tb-darwin-arm64",
"build:cli:darwin-x64": "bun build --compile --minify --target=bun-darwin-x64 src/cli/index.tsx --outfile dist/tb-darwin-x64",
"build:cli:linux-x64": "bun build --compile --minify --target=bun-linux-x64 src/cli/index.tsx --outfile dist/tb-linux-x64",
"build:cli:linux-arm64": "bun build --compile --minify --target=bun-linux-arm64 src/cli/index.tsx --outfile dist/tb-linux-arm64",
"dev:renderer": "vite",
"cli": "tsx src/cli/index.tsx",
"cli:bun": "exec bun src/cli/index.tsx",
"start": "npm run build && electron .",
"test": "vitest --root . run",
"test:watch": "vitest --root . watch"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.0",
"electron": "^28.0.0",
"jsdom": "^27.0.1",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"@opentui/core": "^0.1.63",
"@opentui/react": "^0.1.63",
"@phosphor-icons/react": "^2.1.0",
"@tanstack/db": "^0.0.6",
"@tanstack/react-db": "^0.0.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"menubar": "^9.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.2.0",
"zod": "^3.22.0"
}
}