-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.92 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
{
"name": "@agentkitai/agentlens-monorepo",
"version": "0.15.1",
"repository": {
"type": "git",
"url": "https://github.com/agentkitai/agentlens.git"
},
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"dev": "pnpm --filter @agentkitai/agentlens-server --filter @agentkitai/agentlens-dashboard -r --parallel run dev",
"lint": "eslint .",
"typecheck": "pnpm -r run typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.18.2",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^9.39.4",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"prettier": "^3.8.4",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.0",
"vitepress": "^1.6.4",
"vitest": "^4.1.0"
},
"dependencies": {
"postgres": "^3.4.8"
},
"pnpm": {
"overrides": {
"vitest": "$vitest",
"protobufjs": ">=7.5.5",
"minimatch@<3.1.4": ">=3.1.4 <4",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7 <10",
"rollup": ">=4.59.0",
"flatted": ">=3.4.0",
"undici": ">=7.24.0 <8",
"express-rate-limit": ">=8.2.2",
"axios": ">=1.16.0",
"fast-uri": ">=3.1.2 <4",
"form-data": ">=4.0.6",
"lodash": ">=4.18.0",
"path-to-regexp@>=8.0.0 <8.4.0": ">=8.4.0 <9",
"picomatch@<2.3.2": ">=2.3.2 <3",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4 <5",
"react-router": ">=7.15.0 <8",
"vite@<=6.4.2": "6.4.3"
}
}
}