-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.49 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
{
"name": "vibetrees",
"version": "1.2.11",
"type": "module",
"description": "Manage multiple git worktrees with AI agents and isolated containers",
"bin": {
"vibe": "./bin/vibe.mjs"
},
"files": [
"bin/",
"scripts/",
"README.md",
"LICENSE"
],
"scripts": {
"web": "node scripts/worktree-web/server.mjs",
"vibe:start": "bash scripts/vibe-start.sh",
"vibe:stop": "bash scripts/vibe-stop.sh",
"vibe:restart": "bash scripts/vibe-restart.sh",
"vibe:status": "bash scripts/vibe-status.sh",
"vibe:logs": "bash scripts/vibe-logs.sh",
"vibe:update": "bash scripts/vibe-update.sh",
"pm2:start": "pm2 start ecosystem.config.cjs",
"pm2:stop": "pm2 stop vibe-worktrees",
"pm2:restart": "pm2 restart vibe-worktrees",
"pm2:reload": "pm2 reload vibe-worktrees",
"pm2:delete": "pm2 delete vibe-worktrees",
"pm2:logs": "pm2 logs vibe-worktrees",
"pm2:monit": "pm2 monit",
"pm2:status": "pm2 status vibe-worktrees",
"pm2:save": "pm2 save",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:security": "vitest run scripts/security/*.test.mjs",
"test:security:watch": "vitest scripts/security/*.test.mjs",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"lint": "eslint scripts/**/*.mjs",
"lint:fix": "eslint scripts/**/*.mjs --fix",
"lint:security": "eslint scripts/**/*.mjs --rule 'no-eval: error' --rule 'no-implied-eval: error'",
"format": "prettier --write \"scripts/**/*.{js,mjs,json,md}\"",
"format:check": "prettier --check \"scripts/**/*.{js,mjs,json,md}\"",
"security:audit": "npm audit && npm audit --production",
"postinstall": "node -e \"console.log('✓ VibeTrees dependencies installed')\""
},
"keywords": [
"git",
"worktree",
"tmux",
"docker",
"ai",
"claude",
"development"
],
"devDependencies": {
"@playwright/test": "^1.56.1",
"@vitest/coverage-v8": "^4.0.4",
"eslint": "^8.56.0",
"playwright": "^1.56.1",
"prettier": "^3.2.0",
"vitest": "^4.0.4"
},
"dependencies": {
"@xterm/addon-serialize": "^0.13.0",
"@xterm/headless": "^5.5.0",
"express": "^4.18.0",
"js-yaml": "^4.1.0",
"multer": "^2.0.2",
"node-pty": "^1.0.0",
"pg": "^8.16.3",
"pm2": "^6.0.14",
"proper-lockfile": "^4.1.2",
"ws": "^8.14.0",
"yaml": "^2.8.1"
}
}