-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1019 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
36
37
38
{
"name": "@entropy0/express",
"version": "0.1.8",
"description": "Entropy0 Trust Control Plane middleware for Express.js — gate requests through trust evaluation before your server processes them.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "README.md"],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"express", "middleware", "trust", "security",
"domain-intelligence", "ai-agents", "trust-control-plane"
],
"author": "Entropy0 <dev@entropy0.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/entropy0dev/sdk"
},
"homepage": "https://entropy0.ai/docs",
"bugs": {
"url": "https://github.com/entropy0dev/sdk/issues"
},
"peerDependencies": {
"express": ">=4.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"express": "^4.18.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}