-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.11 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "dmux",
"version": "5.4.0",
"description": "Tmux pane manager with AI agent integration for parallel development workflows",
"type": "module",
"author": "Justin Schroeder",
"license": "MIT",
"homepage": "https://github.com/formkit/dmux#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/standardagents/dmux.git"
},
"bugs": {
"url": "https://github.com/formkit/dmux/issues"
},
"keywords": [
"tmux",
"claude",
"ai",
"development",
"worktree",
"git",
"terminal",
"cli"
],
"engines": {
"node": ">=18.0.0"
},
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"dmux",
"README.md",
"LICENSE"
],
"scripts": {
"build": "pnpm run generate:hooks-docs && pnpm run build:frontend && tsc",
"build:frontend": "pnpm --filter dmux-frontend run build",
"build:docs": "pnpm --filter dmux-docs run build",
"generate:hooks-docs": "node scripts/generate-hooks-docs.js",
"hooks:install-local": "bash scripts/install-local-hooks.sh",
"dev:bootstrap": "pnpm run generate:hooks-docs && pnpm run hooks:install-local",
"clean": "rm -rf dist src/utils/generated-agents-doc.ts",
"dev": "pnpm run dev:bootstrap && tsc && DMUX_DEV=true DMUX_DEV_WATCH=false node dist/index.js",
"dev:watch": "pnpm run generate:hooks-docs && run-p --race dev:watch:compile dev:watch:run",
"dev:watch:compile": "tsc --watch --preserveWatchOutput --pretty false > /dev/null 2>&1",
"dev:watch:run": "node scripts/dev-watch-run.js",
"dev:guard-runtime": "node scripts/guard-runtime-parity.js",
"dev:doctor": "node scripts/dev-doctor.js",
"dev:frontend": "pnpm --filter dmux-frontend run dev",
"dev:docs": "pnpm --filter dmux-docs run dev",
"start": "node dist/index.js",
"typecheck": "pnpm run dev:guard-runtime && pnpm run generate:hooks-docs && tsc --noEmit",
"smoke:pack": "node scripts/smoke-pack-install.js",
"test": "vitest --run",
"prepublishOnly": "pnpm run build",
"prerelease": "run-s clean build typecheck smoke:pack",
"release": "bumpp --commit --push --tag",
"release:minor": "bumpp minor --commit --push --tag",
"release:major": "bumpp major --commit --push --tag"
},
"bin": {
"dmux": "./dmux"
},
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^4.0.3",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"p-queue": "^9.0.0",
"qrcode-terminal": "^0.12.0",
"react": "^18.2.0",
"string-width": "^7.2.0",
"vue": "^3.5.22"
},
"devDependencies": {
"@playwright/test": "^1.55.1",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^1.0.0",
"bumpp": "^10.2.3",
"ink-testing-library": "^4.0.0",
"npm-run-all2": "^8.0.4",
"playwright": "^1.55.1",
"strip-ansi": "^7.1.2",
"tsx": "^4.7.0",
"typescript": "^5.9.2",
"vite": "^6.0.7",
"vitest": "^1.6.1"
},
"packageManager": "pnpm@10.14.0"
}