-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.21 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
94
95
96
97
98
99
{
"type": "module",
"name": "@keelstack/guard",
"version": "0.2.0",
"description": "Framework-agnostic action firewall for AI agents \u2014 intent-bound idempotency, approvals, scoped authority, budget pre-authorization, and audit receipts.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"assets"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"keywords": [
"ai-agents",
"guardrails",
"idempotency",
"typescript",
"llm",
"tool-calling",
"duplicate-tool-calls",
"cost-guard",
"budget-enforcement",
"human-in-the-loop",
"hitl",
"mastra",
"langchain",
"langgraph",
"vercel-ai-sdk",
"openai-agents",
"mcp",
"agent-safety",
"runtime-safety",
"nodejs",
"risk-gate",
"deduplication",
"agentic-ai",
"agent-authorization",
"action-firewall",
"least-privilege",
"circuit-breaker",
"approval-workflow",
"audit-log"
],
"author": "Siddhant Jain <founder@keelstack.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KeelStack-me/guard.git"
},
"homepage": "https://guard.keelstack.me/",
"bugs": {
"url": "https://github.com/KeelStack-me/guard/issues"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"ioredis": ">=5.0.0"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vite": "^8.2.0",
"vitest": "^4.1.10"
}
}