jev-lens 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "jev-lens",
3
+ "version": "0.5.0",
4
+ "description": "jev picks what a coding agent gets to see of a large tool result: views built from the output's own lines, chosen by TypeSafe's judgment model, full text recallable. Host-independent core used by pi-jev-lens and the Claude Code plugin.",
5
+ "author": "Didrik Rognstad",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/dizk/jev-lens.git",
10
+ "directory": "packages/core"
11
+ },
12
+ "homepage": "https://github.com/dizk/jev-lens#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/dizk/jev-lens/issues"
15
+ },
16
+ "keywords": [
17
+ "typesafe",
18
+ "jev",
19
+ "context",
20
+ "compression",
21
+ "prompt-cache",
22
+ "tool-output",
23
+ "coding-agent"
24
+ ],
25
+ "type": "module",
26
+ "main": "./dist/index.js",
27
+ "types": "./dist/index.d.ts",
28
+ "exports": {
29
+ ".": {
30
+ "types": "./dist/index.d.ts",
31
+ "import": "./dist/index.js"
32
+ }
33
+ },
34
+ "engines": {
35
+ "node": ">=22"
36
+ },
37
+ "files": [
38
+ "dist/",
39
+ "README.md",
40
+ "LICENSE"
41
+ ],
42
+ "scripts": {
43
+ "build": "tsc -p tsconfig.json",
44
+ "prepack": "npm run build"
45
+ },
46
+ "dependencies": {
47
+ "@binclusive/tree-sitter-kotlin-wasm": "^0.1.0",
48
+ "@typesafe-ai/sdk": "^0.6.0",
49
+ "@vscode/tree-sitter-wasm": "^0.3.1",
50
+ "web-tree-sitter": "^0.27.0"
51
+ }
52
+ }