-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 945 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 945 Bytes
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
{
"name": "agent-sandbox-policy",
"version": "0.1.1-draft",
"description": "Agent Sandbox Policy (ASP) - A local-first policy engine for guarding AI agent tool calls",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"check:all": "pnpm lint && pnpm typecheck && pnpm test && pnpm build && pnpm compat:node",
"compat:node": "node ./scripts/compat-node.mjs",
"compat:bun": "bun ./scripts/compat-bun.mjs"
},
"keywords": [
"agent",
"policy",
"guardrails",
"security",
"ai",
"llm"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
}
}