This repository was archived by the owner on Apr 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "agentguard",
"private": true,
"description": "AgentGuard — production-safe autonomy for AI coding agents",
"type": "module",
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"bench": "turbo bench",
"bench:report": "node scripts/bench-report.mjs",
"lint": "turbo lint",
"format": "prettier --check 'packages/*/src/**' 'apps/*/src/**'",
"format:fix": "prettier --write 'packages/*/src/**' 'apps/*/src/**'",
"ts:check": "turbo ts:check",
"clean": "turbo clean"
},
"devDependencies": {
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.1.0",
"esbuild": "^0.27.3",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"turbo": "^2.9.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgentGuardHQ/agent-guard.git"
},
"pnpm": {
"overrides": {
"flatted": ">=3.4.1",
"path-to-regexp": ">=8.4.0",
"brace-expansion": ">=5.0.5"
}
},
"author": "jpleva91",
"license": "Apache-2.0",
"dependencies": {
"better-sqlite3": "^12.8.0"
}
}