-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.75 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
{
"name": "ghx",
"private": true,
"description": "CLI-first GitHub execution router for agents.",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "nx run-many -t build",
"build:affected": "nx affected -t build",
"lint": "nx run-many -t lint",
"lint:affected": "nx affected -t lint",
"format": "nx run-many -t format",
"format:affected": "nx affected -t format",
"format:check": "nx run-many -t format:check",
"format:check:affected": "nx affected -t format:check",
"test": "nx run-many -t test",
"test:affected": "nx affected -t test",
"test:coverage": "nx run-many -t test:coverage",
"test:coverage:affected": "nx affected -t test:coverage",
"test:e2e": "nx run-many -t test:e2e",
"test:e2e:affected": "nx affected -t test:e2e",
"typecheck": "nx run-many -t typecheck",
"typecheck:affected": "nx affected -t typecheck",
"ci": "nx run-many -t ci",
"ci:affected": "nx affected -t ci",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status",
"changeset:version": "changeset version && pnpm --filter @ghx-dev/core run plugin:sync",
"eval": "pnpm --filter @ghx-dev/eval run eval",
"ghx:gql:verify": "nx run-many -t gql:verify",
"dep-graph": "nx graph",
"cache:clean": "nx reset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aryeko/ghx.git"
},
"keywords": [
"github",
"agent",
"cli",
"routing",
"graphql",
"ai",
"llm",
"agentic",
"skills"
],
"author": "Arye Kogan",
"license": "MIT",
"type": "module",
"pnpm": {
"overrides": {
"immutable@<3.8.3": ">=3.8.3",
"axios@<1.15.0": "1.15.0",
"@babel/core@<=7.29.0": "7.29.6",
"brace-expansion@>=5.0.0 <5.0.6": "5.0.6",
"esbuild@>=0.27.3 <0.28.1": "0.28.1",
"fast-uri@<=3.1.1": "3.1.2",
"form-data@>=4.0.0 <4.0.6": "4.0.6",
"js-yaml@<=4.1.1": "4.2.0",
"read-yaml-file@1.1.0>js-yaml": "3.14.2",
"lodash@<=4.17.23": "4.18.1",
"shell-quote@<=1.8.3": "1.8.4",
"tmp@<0.2.6": "0.2.7",
"vite@<=6.4.2": "8.0.16",
"ws@>=8.0.0 <8.21.0": "8.21.0"
}
},
"bugs": {
"url": "https://github.com/aryeko/ghx/issues"
},
"homepage": "https://github.com/aryeko/ghx#readme",
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^9.35.0",
"@nx/eslint": "22.7.4",
"@nx/js": "22.7.4",
"@types/node": "catalog:",
"@vitest/eslint-plugin": "^1.6.18",
"vite": "^8.0.16",
"eslint": "^9.35.0",
"globals": "^17.6.0",
"lefthook": "^2.1.9",
"nx": "22.7.4",
"typescript": "catalog:",
"typescript-eslint": "^8.56.1"
}
}