-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.97 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
{
"name": "@bodanglin/verdict-node",
"version": "0.1.0",
"description": "Enterprise LLM Criticality Router middleware for Express, Next.js — policy-gated, availability-aware routing control plane",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./middleware": {
"types": "./dist/middleware/index.d.ts",
"default": "./dist/middleware/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrnicholasbcarter-code/verdict-node.git"
},
"homepage": "https://github.com/mrnicholasbcarter-code/verdict-node#readme",
"bugs": {
"url": "https://github.com/mrnicholasbcarter-code/verdict-node/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"scripts/**/*.mjs\" \"*.md\" \"*.json\" \".github/workflows/*.yml\"",
"pack:dry-run": "npm pack --dry-run",
"verify:package": "npm run build && node scripts/verify-package.mjs"
},
"keywords": [
"llm",
"routing",
"ai",
"control-plane",
"safety",
"middleware",
"express",
"openai-compatible",
"zod"
],
"dependencies": {
"@bodanglin/verdict-contracts": "^0.1.0",
"@types/express": "^5.0.6",
"zod": "^3.25.76"
},
"peerDependencies": {
"express": ">=5.0.0 <6"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@types/supertest": "^7.2.1",
"config": "^4.4.2",
"express": "^5.2.1",
"jest": "^30.4.2",
"prettier": "^3.9.5",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"typescript": "~5.9.3"
}
}