-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.66 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.66 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
57
58
59
60
61
62
63
64
65
{
"name": "kmux",
"version": "0.3.9",
"private": true,
"description": "A keyboard-first terminal workspace manager for macOS",
"author": "kmux contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kkd927/kmux.git"
},
"bugs": {
"url": "https://github.com/kkd927/kmux/issues"
},
"homepage": "https://github.com/kkd927/kmux#readme",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "node scripts/dev.mjs",
"clean:desktop": "rm -rf apps/desktop/dist apps/desktop/out apps/desktop/release",
"typecheck": "tsc --noEmit",
"build": "npm run typecheck && npm run build:pty-host && npm run build:cli && npm run build --workspace @kmux/desktop",
"package:mac": "npm run build && npm run rebuild:electron && npm run dist:mac --workspace @kmux/desktop",
"package:mac:clean": "npm run clean:desktop && npm run package:mac",
"build:pty-host": "tsup apps/desktop/src/pty-host/index.ts --platform=node --format=cjs --target=node20 --out-dir apps/desktop/dist/pty-host --clean",
"build:cli": "tsup packages/cli/src/bin.ts --platform=node --format=cjs --target=node20 --out-dir packages/cli/dist --clean",
"rebuild:electron": "electron-rebuild -f -w node-pty",
"postinstall": "node scripts/ensure-node-pty-spawn-helper.mjs",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"smoke:dev": "node scripts/smoke-dev.mjs",
"test:e2e": "npm run smoke:dev && npm run build && playwright test",
"test:e2e:visible": "npm run smoke:dev && KMUX_E2E_WINDOW_MODE=visible npm run build && playwright test",
"profile:smoothness": "npm run smoke:dev && npm run build && KMUX_RUN_SMOOTHNESS_PROFILE=1 playwright test tests/e2e/kmux-smoothness-profile.spec.ts",
"smoke:packaged:mac": "node scripts/smoke-packaged-mac.mjs",
"release:check:mac": "npm run package:mac && npm run smoke:packaged:mac",
"capture:scene": "npm run build && node scripts/capture-reference-scene.mjs",
"format": "prettier --write ."
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@playwright/test": "^1.53.2",
"@types/node": "^22.15.17",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@vitejs/plugin-react": "^4.4.1",
"electron": "39.8.5",
"electron-builder": "^26.8.1",
"electron-vite": "^3.1.0",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"jsdom": "^29.0.2",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}