forked from microsoft/agent-governance-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.56 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
{
"name": "@microsoft/agent-governance-copilot-cli",
"version": "5.0.0",
"description": "Public Preview — Copilot CLI governance installer for Agent Governance Toolkit developer protection policies",
"type": "module",
"bin": {
"agt-copilot": "./bin/agt-copilot.mjs"
},
"files": [
"assets/",
"bin/",
"lib/",
"README.md"
],
"scripts": {
"build": "npm run check",
"check": "node --check ./bin/agt-copilot.mjs && node --check ./lib/cli.mjs && node --check ./assets/extensions/agt-global-policy/extension.mjs && node --check ./assets/extensions/agt-global-policy/main.mjs && node --check ./assets/extensions/agt-global-policy/lib/policy.mjs && node --check ./assets/extensions/agt-global-policy/lib/poisoning.mjs && node --check ./assets/extensions/agt-global-policy/lib/sdk-loader.mjs && node --check ./test/policy-engine.test.mjs && node --check ./test/install.test.mjs",
"test": "node --test ./test/policy-engine.test.mjs ./test/install.test.mjs"
},
"keywords": [
"copilot",
"cli",
"agent",
"governance",
"security",
"policy"
],
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/agent-governance-toolkit.git",
"directory": "agent-governance-copilot-cli"
},
"dependencies": {
"@microsoft/agent-governance-sdk": "4.0.0"
},
"overrides": {
"js-yaml": "4.2.0"
},
"engines": {
"node": ">=22.0.0"
},
"homepage": "https://github.com/microsoft/agent-governance-toolkit/tree/main/agent-governance-copilot-cli"
}