-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.62 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
{
"name": "@microsoft/agent-governance-sdk",
"version": "5.0.0",
"description": "Public Preview — TypeScript SDK for the Agent Governance Toolkit: agent identity, trust scoring, policy evaluation, and audit logging",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"lint": "eslint src/ tests/ --ext .ts",
"clean": "rimraf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"agentmesh",
"agent",
"governance",
"trust",
"identity",
"policy",
"audit"
],
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/agent-governance-toolkit.git",
"directory": "agent-governance-typescript"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "26.1.2",
"@typescript-eslint/eslint-plugin": "8.66.0",
"@typescript-eslint/parser": "8.66.0",
"eslint": "10.8.0",
"jest": "30.4.2",
"rimraf": "6.1.3",
"ts-jest": "29.4.12",
"typescript": "6.0.3"
},
"dependencies": {
"@noble/ciphers": "2.2.0",
"@noble/curves": "2.2.0",
"@noble/ed25519": "3.1.0",
"@noble/hashes": "2.2.0",
"js-yaml": "5.2.3"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"homepage": "https://github.com/microsoft/agent-governance-toolkit/tree/main/agent-governance-typescript"
}