-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.39 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.39 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
{
"name": "pure-point-guard",
"version": "0.3.3",
"type": "module",
"description": "Pure Point Guard — local orchestration runtime for parallel CLI coding agents",
"bin": {
"ppg": "./dist/cli.js"
},
"files": [
"dist",
"skills",
".claude-plugin",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"author": "2witstudios",
"repository": {
"type": "git",
"url": "git+https://github.com/2witstudios/ppg-cli.git"
},
"homepage": "https://github.com/2witstudios/ppg-cli#readme",
"bugs": {
"url": "https://github.com/2witstudios/ppg-cli/issues"
},
"keywords": [
"cli",
"agent",
"ai",
"orchestration",
"tmux",
"worktree",
"parallel",
"claude",
"codex",
"coding-agent",
"git-worktree",
"automation",
"conductor"
],
"license": "MIT",
"dependencies": {
"commander": "^14.0.0",
"cron-parser": "^5.5.0",
"execa": "^9.5.2",
"nanoid": "^5.1.5",
"proper-lockfile": "^4.1.2",
"write-file-atomic": "^7.0.0",
"yaml": "^2.7.1"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/proper-lockfile": "^4.1.4",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"engines": {
"node": ">=20"
}
}