-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 861 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
{
"name": "jev-cli",
"version": "0.1.0",
"description": "A Jev-powered judgement layer for Claude Code: semantic permission gating, prompt-injection screening, completion verification, and semantic ranking.",
"type": "module",
"engines": { "node": ">=20" },
"bin": { "jev": "./bin/jev.mjs" },
"files": ["bin", "dist", "hooks", ".claude-plugin", ".mcp.json", "README.md"],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run tests/unit",
"fixtures": "node --enable-source-maps dist/fixtures.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@typesafe-ai/sdk": "^0.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"license": "MIT"
}