-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.36 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
{
"name": "ctxlens",
"version": "1.2.0",
"description": "Token budget analyzer for AI context windows — like du for tokens",
"bin": {
"ctxlens": "dist/cli/index.js"
},
"scripts": {
"build": "esbuild src/cli/index.ts --bundle --platform=node --target=node18 --outfile=dist/cli/index.js --format=esm --banner:js=\"#!/usr/bin/env node\" --packages=external",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"llm",
"tokens",
"context-window",
"tokenizer",
"dev-tools",
"cli",
"claude",
"gpt",
"gemini"
],
"author": "kVadrum",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/kVadrum/ctxlens.git"
},
"homepage": "https://github.com/kVadrum/ctxlens#readme",
"bugs": {
"url": "https://github.com/kVadrum/ctxlens/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"models",
"README.md",
"LICENSE"
],
"dependencies": {
"@dqbd/tiktoken": "^1.0.18",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"ignore": "^7.0.4"
},
"devDependencies": {
"@types/node": "^22.14.0",
"esbuild": "^0.28.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^4.1.3"
}
}