-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.56 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
{
"name": "@mstuart/peek",
"version": "0.1.0",
"description": "DevTools for coding agents — historical context composition, compaction analysis, and cost attribution for Claude Code, Codex, and pi",
"keywords": [
"cli",
"devtools",
"claude-code",
"codex",
"ai-agent",
"llm",
"context-window",
"token-usage",
"cost-tracking",
"compaction",
"session-diff",
"observability"
],
"homepage": "https://github.com/mstuart/peek#readme",
"bugs": {
"url": "https://github.com/mstuart/peek/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mstuart/peek.git"
},
"license": "MIT",
"author": "Mark Stuart",
"type": "module",
"bin": {
"peek": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"check": "ultracite check && npm run typecheck && npm test",
"dev": "tsx src/cli.ts",
"fix": "ultracite fix",
"lint": "ultracite check",
"prepare": "npm run build",
"smoke:pack": "npm run build && node test/smoke/pack.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"overrides": {
"esbuild": "^0.28.1"
},
"dependencies": {
"commander": "^14.0.3",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@types/node": "^22.10.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"ultracite": "7.10.2",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}