-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (86 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (86 loc) · 1.95 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
{
"name": "traceshield",
"version": "0.1.0",
"description": "Agent reliability and behavior auditing framework - structured policy constraints, auditable traces, and automatic failure attribution for AI agents",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./adapters/openai": {
"types": "./dist/adapters/openai.d.ts",
"import": "./dist/adapters/openai.js"
},
"./adapters/langchain": {
"types": "./dist/adapters/langchain.d.ts",
"import": "./dist/adapters/langchain.js"
},
"./storage/sqlite": {
"types": "./dist/storage/sqlite.d.ts",
"import": "./dist/storage/sqlite.js"
},
"./storage/postgresql": {
"types": "./dist/storage/postgresql.d.ts",
"import": "./dist/storage/postgresql.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"clean": "rimraf dist"
},
"keywords": [
"agent",
"audit",
"trace",
"policy",
"reliability",
"llm",
"ai-safety",
"observability",
"compliance",
"guardrails"
],
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.15",
"@types/pg": "^8.18.0",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@langchain/core": ">=0.2.0",
"better-sqlite3": ">=9.0.0",
"openai": ">=4.0.0",
"pg": ">=8.0.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"pg": {
"optional": true
},
"openai": {
"optional": true
},
"@langchain/core": {
"optional": true
}
}
}