-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.72 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
{
"name": "@agentkitai/agentgate-monorepo",
"repository": {
"type": "git",
"url": "https://github.com/agentkitai/agentgate.git"
},
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"test:coverage": "pnpm -r run test -- --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "pnpm -r run typecheck",
"dev": "pnpm --filter @agentkitai/agentgate-server --filter @agentkitai/agentgate-dashboard -r --parallel run dev",
"demo": "pnpm --filter @agentkitai/agentgate-demo run start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.19.0",
"@types/node": "^22.12.0",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitepress": "^1.6.4",
"vue": "^3.5.27"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20"
},
"pnpm": {
"overrides": {
"axios": ">=1.16.0",
"undici": ">=6.24.0",
"path-to-regexp@>=8.0.0 <8.4.0": ">=8.4.0",
"lodash": ">=4.18.0",
"fast-uri": ">=3.1.2",
"ws@>=8.0.0 <8.21.0": ">=8.21.0",
"form-data": ">=4.0.6",
"shell-quote": ">=1.8.4",
"minimatch@<3.1.4": "3.1.4",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"flatted@<3.4.2": ">=3.4.2",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"vite@>=6.0.0 <6.4.3": "6.4.3",
"vite@<6.0.0": "6.4.3",
"esbuild@<=0.24.2": ">=0.25.0",
"qs@>=6.7.0 <=6.14.1": ">=6.14.2",
"ajv@<6.14.0": ">=6.14.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0",
"qs@>=6.11.1 <=6.15.1": ">=6.15.2",
"js-yaml@<3.15.0": ">=3.15.0 <4",
"js-yaml@>=4.0.0 <=4.1.1": ">=4.2.0",
"@babel/core@<=7.29.0": ">=7.29.6",
"brace-expansion@<1.1.16": ">=1.1.16",
"brace-expansion@>=3.0.0 <5.0.7": ">=5.0.7",
"js-yaml@>=4.0.0 <4.3.0": ">=4.3.0",
"js-yaml@>=3.0.0 <3.15.0": ">=3.15.0 <4",
"shell-quote@<=1.8.4": ">=1.9.0",
"body-parser@>=2.0.0 <2.3.0": ">=2.3.0",
"hono@>=4.3.3 <4.12.27": ">=4.12.27",
"@hono/node-server@<2.0.5": ">=2.0.5",
"hono@>=4.11.8 <4.12.27": ">=4.12.27",
"hono@>=4.0.0 <4.12.27": ">=4.12.27",
"fast-uri@>=4.0.0 <=4.1.0": ">=4.1.1",
"fast-uri@>=4.0.0 <4.0.1": ">=4.0.1",
"brace-expansion@<1.1.17": ">=1.1.17",
"brace-expansion@>=4.0.0 <5.0.8": ">=5.0.8"
}
}
}