jevprune 0.1.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,67 @@
1
+ {
2
+ "name": "jevprune",
3
+ "version": "0.1.0",
4
+ "description": "Keep only the lines of a command's output that matter for the current task, decided per line by Jev, with the full output saved on disk",
5
+ "license": "MIT",
6
+ "author": "ibrahemid",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/ibrahemid/jevprune.git"
10
+ },
11
+ "homepage": "https://github.com/ibrahemid/jevprune#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/ibrahemid/jevprune/issues"
14
+ },
15
+ "type": "module",
16
+ "engines": {
17
+ "node": ">=22"
18
+ },
19
+ "bin": {
20
+ "jevprune": "dist/cli.js"
21
+ },
22
+ "main": "dist/index.js",
23
+ "types": "dist/index.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "import": "./dist/index.js"
28
+ },
29
+ "./package.json": "./package.json"
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "README.md",
34
+ "LICENSE"
35
+ ],
36
+ "scripts": {
37
+ "build": "tsup",
38
+ "typecheck": "tsc --noEmit",
39
+ "lint": "eslint .",
40
+ "test": "vitest run",
41
+ "gate": "scripts/gate.sh",
42
+ "prepublishOnly": "scripts/gate.sh && tsup"
43
+ },
44
+ "keywords": [
45
+ "claude-code",
46
+ "typesafe",
47
+ "jev",
48
+ "cli",
49
+ "context",
50
+ "tokens",
51
+ "output",
52
+ "pruning"
53
+ ],
54
+ "packageManager": "pnpm@10.13.1",
55
+ "dependencies": {
56
+ "@typesafe-ai/sdk": "0.6.0"
57
+ },
58
+ "devDependencies": {
59
+ "@eslint/js": "^10.0.1",
60
+ "@types/node": "^22.20.3",
61
+ "eslint": "^10.10.0",
62
+ "tsup": "^8.5.1",
63
+ "typescript": "^5.9.3",
64
+ "typescript-eslint": "^8.70.0",
65
+ "vitest": "^5.0.1"
66
+ }
67
+ }